-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (56 loc) · 864 Bytes
/
style.css
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
body {
font: normal normal 16px/19px 'Open Sans', sans-serif;
background: #dfdfdf;
}
.container {
padding: 20px;
width: 350px;
margin: 0 auto;
margin-top: 40px;
background: white;
border-radius: 5px;
}
form {
display: inline-block;
}
input {
padding: 4px 15px 4px 5px;
}
#button {
display: inline-block;
background-color: #fc999b;
color: #fff;
border-radius: 5px;
text-align: center;
margin-top: 2px;
padding: 5px 15px;
}
#button:hover {
cursor: pointer;
opacity: 0.8;
}
ol {
padding-left: 20px;
}
ol li {
padding: 5px;
color: #000;
}
ol li:nth-child(even) {
background: #e7e6e6;
}
.strike {
text-decoration: line-through;
}
li:hover {
cursor: grab;
}
li > .deleteButton {
background: none;
border: none;
float: right;
color: #000;
font-size: x-small;
font-weight: 600;
cursor: pointer;
}