-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (47 loc) · 827 Bytes
/
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
body {
width: 300px;
margin: 0;
padding: 15px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f9f9f9;
}
.container {
display: flex;
flex-direction: column;
gap: 15px;
}
h1 {
font-size: 18px;
color: #14171a;
margin: 0;
text-align: center;
}
p {
font-size: 14px;
color: #657786;
text-align: center;
margin: 0;
}
.toggle-container {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
cursor: pointer;
}
.toggle-container input {
width: 20px;
height: 20px;
cursor: pointer;
}
.toggle-container span {
font-size: 16px;
}
.info {
text-align: center;
margin-top: 10px;
}
.info small {
font-size: 12px;
color: #667786;
}