forked from RunnableDemo/node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (91 loc) · 1.45 KB
/
styles.css
File metadata and controls
105 lines (91 loc) · 1.45 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body,
ul,
li,
h1,
p {
margin: 0;
padding: 0;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
background: #222;
color: #fafafa;
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
line-height: 1.4;
}
.container {
margin: 0 auto;
max-width: 450px;
padding: 15px;
}
.h1 {
font-size: 24px;
font-weight: 500;
margin-top: 60px;
padding-left: 48px;
}
.todo-list {
background: #555;
border: 1px solid transparent;
border-radius: 6px;
box-shadow: 0 1px 3px rgba(0,0,0,.1);
margin: 15px 0 150px;
}
.todo-list-item {
display: flex;
font-size: 19px;
padding: 18px;
width: 100%;
+ .new_todo,
+ .todo-list-item {
border-top: 1px solid rgba(0,0,0,.3);
}
}
.button-complete {
background: #555;
border: 3px solid rgba(0,0,0,.3);
border-radius: 6px;
cursor: pointer;
flex: 0 0 auto;
height: 18px;
margin: 4px 12px 0 0;
width: 18px;
}
.button-edit {
color: #888;
font-size: 15px;
margin-left: auto;
position: relative;
top: 4px;
}
.input {
background: none;
border: none;
color: inherit;
line-height: inherit;
outline: none;
padding-left: 48px;
}
.notification {
background: #555;
border: 1px solid transparent;
border-radius: 6px;
border-width: 1px;
box-shadow: 0 1px 3px rgba(0,0,0,.06);
display: flex;
padding: 15px;
}
.emoji {
font-size: 45px;
margin-right: 12px;
}
.weight-strong {
font-weight: 500;
}
.small {
font-size: 13px;
}