Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/site/docs/tutorials/add-elements/examples/todo/todo.css

Issue 26542002: edit pass on T3,4,5, updated images (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: merging with master Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 body {
2 font-family: 'Open Sans', sans-serif;
3 background-color: WhiteSmoke;
4 margin: 15px;
5 }
6
7 #to-do-input {
8 font-family: 'Open Sans', sans-serif;
9 font-size: 14px;
10 font-weight: normal;
11 padding: 5px 0px 5px 5px;
12 width: 100%;
13 border: 1px solid Silver;
14 background-color: White;
15 }
16
17 #to-do-list {
18 padding:0px;
19 margin:0px;
20 list-style-position:inside;
21 }
22
23 #to-do-list li {
24 padding:5px 0px 5px 5px;
25 border-bottom: 1px dotted Silver;
26 }
27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698