-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (51 loc) · 820 Bytes
/
style.css
File metadata and controls
58 lines (51 loc) · 820 Bytes
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
body {
font-weight: 300;
font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Segoe UI';
overflow: hidden;
background-color: #eaf4fb;
overflow: scroll;
margin: 0;
padding: 0;
}
header {
padding: 1px 20px;
color: #c5e3fc;
background-color: #0572cc;
}
main {
margin: 10px;
padding: 10px;
}
#root {
width: 400px;
}
input {
width: 400px;
height: 40px;
line-height: 40px;
font-size: 20px;
padding: 0 0 0 10px;
border-radius: 4px;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
height: 35px;
padding-top: 15px;
border-bottom: 1px dotted #ccc;
}
button {
height: 30px;
width: 30px;
padding: 1px;
margin-top: -5px;
background-color: #f34c19;
font-size: 24px;
border: none;
border-radius: 4px;
color: #fff;
float: right;
cursor: pointer;
}