1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 18:32:22 +00:00

edit app.css

This commit is contained in:
ruanyf 2014-04-21 19:17:18 +08:00
parent 6bfd76c6fa
commit 3a45072f34
3 changed files with 5 additions and 16 deletions

View File

@ -230,12 +230,6 @@ body {
background-color: #AAA;
}
@media (min-width: 40rem) {
#back_to_top {
margin-left: 890px;
}
}
#back_to_top:hover {
background-color: #444;
cursor: pointer;
@ -262,13 +256,6 @@ body {
background-color: #AAA;
}
@media (min-width: 40rem) {
#edit {
margin-left: 890px;
}
}
#edit:hover {
background-color: #444;
cursor: pointer;

View File

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery -->
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
@ -10,6 +11,7 @@
<script src="js/ditto.js"></script>
<link rel="stylesheet" href="app/bower_components/normalize-css/normalize.css">
<link rel="stylesheet" href="css/app.css">
<title>ECMAScript 6入门</title>
</head>
<body>
<!-- essential -->

View File

@ -3,7 +3,7 @@
作者:[阮一峰](http://www.ruanyifeng.com)
## 目录
- [ECMAScript 6简介](#docs/intro)
1. [ECMAScript 6简介](#docs/intro)
## 附录
- [Github Repository](http://github.com/ruanyf/es6tutorial/)
## 其他
- [源码](http://github.com/ruanyf/es6tutorial/)