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

Unified Diff: src/site/docs/tutorials/remove-elements/examples/todo_with_delete/todo_with_delete.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: 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 side-by-side diff with in-line comments
Download patch
Index: src/site/docs/tutorials/remove-elements/examples/todo_with_delete/todo_with_delete.css
diff --git a/src/site/docs/tutorials/remove-elements/examples/todo_with_delete/todo_with_delete.css b/src/site/docs/tutorials/remove-elements/examples/todo_with_delete/todo_with_delete.css
new file mode 100644
index 0000000000000000000000000000000000000000..88f5b95c3d956c3fbc0d89a553bf24eeaa5e6193
--- /dev/null
+++ b/src/site/docs/tutorials/remove-elements/examples/todo_with_delete/todo_with_delete.css
@@ -0,0 +1,43 @@
+body {
+ font-family: 'Open Sans', sans-serif;
+ background-color: WhiteSmoke;
+ margin: 15px;
+}
+
+#to-do-input {
+ font-family: 'Open Sans', sans-serif;
+ font-size: 14px;
+ font-weight: normal;
+ padding: 5px 0px 5px 5px;
+ width: 100%;
+ border: 1px solid Silver;
+ background-color: White;
+}
+
+#to-do-list {
+ padding:0px;
+ margin:0px;
+ list-style-position:inside;
+}
+
+#to-do-list li {
+ padding:5px 0px 5px 5px;
+ border-bottom: 1px dotted Silver;
+}
+
+#to-do-list li:hover {
+ color: red;
+ font-size: 18px;
+ cursor:pointer;
+}
+
+#delete-all {
+ background-color: #F8F8F8;
+ border: 1px dotted #ccc;
+ border-radius: 1em;
+ float: right;
+}
+
+#delete-all:hover {
+ background-color: #ddd;
+}

Powered by Google App Engine
This is Rietveld 408576698