-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
87 lines (74 loc) · 1.24 KB
/
styles.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Rubik', sans-serif;
}
body {
/* background-color: #EEEEEE; */
background-color: #FFF1E5;
}
li {
color: #BE3030;
background-color: #DCE1EB;
padding: 1em;
margin: 0.5em;
border-radius: 10px;
list-style-type: none;
}
div {
display: grid;
margin: 30px auto;
max-width: 320px;
}
.container {
padding: 1em;
margin: 0.5em;
border-radius: 10px;
border-style: none;
}
img {
width: 150px;
margin: auto;
}
input {
color: #EEEEEE;
background-color: #222222;
text-align: center;
}
button {
color: #FDFDFD;
background-color: #FF7100;
color: #222222;
}
ul {
margin-top: 30px;
padding-bottom: 60px;
}
footer {
position: absolute;
bottom: 10px;
z-index: -1;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-left: -27px;
}
a {
color: #f5baba;
}
/* ======== dark mode ========= */
@media (prefers-color-scheme: dark) {
body {
color: #e1d9d1;
background-color: #222222;
}
input {
background-color: #EEEEEE;
color: #222222;
}
li {
background-color: #363636;
color: #FDFDFD;
}
}