-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (75 loc) · 1.39 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
html, body, input, button {
font-family: -apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Oxygen,
Ubuntu,
Cantarell,
"Fira Sans",
"Droid Sans",
"Helvetica Neue",
sans-serif;
font-size: 18px;
}
button {
-webkit-appearance: button;
-moz-appearance: button;
}
.todo__container {
display: flex;
margin: 0 -10px;
}
.todo__container > * {
flex: 1;
margin: 10px;
}
.todo__list {
margin: 0;
padding: 10px;
list-style-type: none;
}
.todo__item {
align-items: center;
border-bottom: solid 1px #eee;
display: flex;
margin: 0 -10px;
padding: .5em 0;
}
.todo__item:hover {
background: #f7f7f7;
cursor: pointer;
}
.todo__item > * {
flex: 1;
margin: 0 10px;
}
.todo__entry {
background: #f3f3f3;
border: solid 1px #ccc;
border-radius: .2em;
box-sizing: border-box;
padding: .25em .5em;
width: 100%;
}
.todo__button {
border: 0;
border-radius: .2em;
background-color: #71B7FF;
color: #fff;
cursor: pointer;
flex: 0;
line-height:1.4;
padding: .25em .5em;
text-align: center;
white-space: nowrap;
}
.todo__button:hover {
background: #B2D8FF;
}
.todo__button--danger {
background-color: #c9302c;
}
.todo__button--danger:hover{
background-color: #d9534f;
}