You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.css
+38-26Lines changed: 38 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -33,10 +33,6 @@ body {
33
33
font-weight:300;
34
34
}
35
35
36
-
:focus {
37
-
outline:0;
38
-
}
39
-
40
36
.hidden {
41
37
display: none;
42
38
}
@@ -51,19 +47,19 @@ body {
51
47
52
48
.todoappinput::-webkit-input-placeholder {
53
49
font-style: italic;
54
-
font-weight:300;
50
+
font-weight:400;
55
51
color:rgba(0,0,0,0.4);
56
52
}
57
53
58
54
.todoappinput::-moz-placeholder {
59
55
font-style: italic;
60
-
font-weight:300;
56
+
font-weight:400;
61
57
color:rgba(0,0,0,0.4);
62
58
}
63
59
64
60
.todoappinput::input-placeholder {
65
61
font-style: italic;
66
-
font-weight:300;
62
+
font-weight:400;
67
63
color:rgba(0,0,0,0.4);
68
64
}
69
65
@@ -100,6 +96,7 @@ body {
100
96
101
97
.new-todo {
102
98
padding:16px16px16px60px;
99
+
height:65px;
103
100
border: none;
104
101
background:rgba(0,0,0,0.003);
105
102
box-shadow: inset 0-2px1pxrgba(0,0,0,0.03);
@@ -122,25 +119,29 @@ body {
122
119
}
123
120
124
121
.toggle-all+label {
125
-
width:60px;
126
-
height:34px;
122
+
display: flex;
123
+
align-items: center;
124
+
justify-content: center;
125
+
width:45px;
126
+
height:65px;
127
127
font-size:0;
128
128
position: absolute;
129
-
top:-52px;
130
-
left:-13px;
131
-
-webkit-transform:rotate(90deg);
132
-
transform:rotate(90deg);
129
+
top:-65px;
130
+
left:-0;
133
131
}
134
132
135
133
.toggle-all+label:before {
136
134
content:'❯';
135
+
display: inline-block;
137
136
font-size:22px;
138
-
color:#e6e6e6;
137
+
color:#949494;
139
138
padding:10px27px10px27px;
139
+
-webkit-transform:rotate(90deg);
140
+
transform:rotate(90deg);
140
141
}
141
142
142
143
.toggle-all:checked+label:before {
143
-
color:#737373;
144
+
color:#484848;
144
145
}
145
146
146
147
.todo-list {
@@ -198,13 +199,13 @@ body {
198
199
Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
199
200
IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
0 commit comments