-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
121 lines (115 loc) · 1.7 KB
/
app.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
background-color: #82d4f3;
}
[v-cloak] {
display: none;
}
header {
display: flex;
justify-content: space-between;
background-color: white;
padding: 1em;
}
header h1 {
word-wrap: none;
font-weight: bold;
}
section.back-button {
background-color: #fff;
/* border-top: 1px solid #000; */
margin-top: 2px;
padding: 5px 10px;
}
section.back-button a {
color: #000;
}
main.home {
margin: 1em;
}
#big-buttons {
display: flex;
}
#big-buttons a.park {
background-color: #f6eb13;
margin: 20px;
}
#big-buttons a.nature {
background-color: #35b449;
margin: 20px;
}
#big-buttons a {
width: 100%;
padding: 5px;
border-radius: 10px;
color: #000;
font-size: 25pt;
text-decoration: none;
text-align: center;
}
main {
margin: 1em 0.5em;
}
.item {
display: flex;
height: 60px;
cursor: pointer;
line-height: 44px;
padding: 0.5rem;
}
.item > * {
margin-right: 0.3em;
}
.item span {
white-space: nowrap;
min-width: 100px;
}
.item img,
.item span.no-image {
width: 4x;
height: 45px;
}
.item.complete {
background-color: #eee;
}
span.complete {
text-decoration: line-through;
}
input.complete {
border-color: green;
}
input[type="checkbox"] {
width: 45px;
height: 45px;
}
footer {
margin: 2em;
text-align: center;
}
/* Try making the header responsive */
@media (max-width: 1200px) {
header img {
height: 80px;
}
}
@media (max-width: 960px) {
header img {
height: 70px;
}
}
@media (max-width: 680px) {
header img {
height: 60px;
}
}
@media (max-width: 550px) {
h1.display-1 {
font-size: 20pt;
line-height: 40pt;
}
header img:first-of-type {
margin-left: -10px;
}
header img:last-of-type {
margin-right: -10px;
}
}