-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
61 lines (52 loc) · 783 Bytes
/
app.css
File metadata and controls
61 lines (52 loc) · 783 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
59
60
61
body {
background: #20262E;
padding: 10px;
font-family: Helvetica;
}
#app {
background: #fff;
border-radius: 4px;
padding: 10px;
transition: all 0.2s;
}
.todolist {
width: 100%;
}
li {
margin: 8px 0;
}
h2 {
font-weight: bold;
margin-bottom: 15px;
}
.done {
color: rgba(0, 0, 0, 0.3);
text-decoration: line-through;
}
input {
margin-right: 5px;
}
.warning {
background-color: orange;
color: white;
border: 1px solid black;
width: auto;
position: relative;
padding: 1em;
margin-right: 2em;
}
.warning span {
color: black;
font-weight: bold;
position: absolute;
top: 1em;
right: 1em;
box-sizing: border-box;
}
@media (max-width: 480px) {
.warning {
max-height: 50vw;
overflow-y: scroll;
font-size: 28px;
}
}