Commit 32afa01e authored by addyosmani's avatar addyosmani

stylistic changes across a number of examples

parent aa886db7
/*
#todo-app { #todo-app {
margin: 1em; -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
text-align: center; -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
}*/ -o-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
-moz-border-radius: 0 0 5px 5px;
-o-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
}
#todo-list, #todo-list,
#todo-stats { #todo-stats {
margin: 1em auto; margin: 1em auto;
text-align: left; text-align: left;
width: 450px; width: 450px;
} }
#todo-list { #todo-list {
...@@ -74,16 +82,12 @@ ...@@ -74,16 +82,12 @@
} }
.todo-remove-icon { .todo-remove-icon {
/* background: url(../img/destroy.png) no-repeat;
Delete icon courtesy of The Noun Project:
http://thenounproject.com/noun/delete/
*/
background: url(../assets/app/remove.png) no-repeat;
display: block; display: block;
height: 16px; height: 20px;
opacity: 0.6; opacity: 0.6;
visibility: hidden; visibility: hidden;
width: 23px; width: 20px;
} }
.todo-remove:hover .todo-remove-icon { opacity: 1.0; } .todo-remove:hover .todo-remove-icon { opacity: 1.0; }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment