-
Notifications
You must be signed in to change notification settings - Fork 403
/
Copy pathstyles.scss
72 lines (63 loc) · 980 Bytes
/
styles.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
html {
height: 100%;
display: flex;
background: #f5f5f5;
font:
14px 'Helvetica Neue',
Helvetica,
Arial,
sans-serif;
line-height: 1.4em;
color: #4d4d4d;
min-width: 230px;
max-width: 550px;
margin: 0 auto;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
font-weight: 300;
}
body {
width: 100%;
margin: auto;
}
ul,
li {
padding: 0;
margin: 0;
list-style: none;
}
button {
background: none;
}
.add-todo {
position: relative;
padding: 1em;
display: flex;
input {
display: inline-flex;
width: 100%;
margin-right: 5px;
}
}
.todo-list {
background: #fff;
font-size: 20px;
max-width: 30em;
margin: auto;
padding: 0.5em 1em;
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}
.todo {
display: block;
position: relative;
text-align: center;
padding: 1em;
margin: 0 auto;
border-top: solid 1px #ddd;
}
.menu a {
margin-right: 5px;
}
.menu {
margin-bottom: 15px;
}