-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (72 loc) · 1.32 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
html, body {
height: 100%;
padding: 0;
margin: 0;
text-align: center;
font-family: Arial;
overflow: hidden;
}
::selection {
background: none;
}
main {
position: relative;
top: 50%;
transform: translateY(-50%);
}
main h1 {
font-size: 120px;
padding-bottom: 40px;
cursor: default;
}
main input {
width: 100%;
padding: 20px 0;
border: none;
font-size: 50px;
text-align: center;
outline: none;
}
main p {
padding-top: 40px;
font-size: 20px;
}
main a {
text-decoration: none;
}
main a:hover {
text-decoration: underline;
}
/* Defaults */
html, body {
background: #4169E1;
}
main input::selection {
background: #4169E1;
}
main input::-moz-selection {
background: #4169E1;
}
main input {
color: #4169E1;
}
/* Dark theme */
body.dark, body.dark main a {
color: rgba(255, 255, 255, 0.8);
}
body.dark main input::selection {
color: rgba(255, 255, 255, 0.8);
}
body.dark main input {
background: rgba(255, 255, 255, 0.8);
}
/* Light theme */
body.light, body.light main a {
color: rgba(0, 0, 0, 0.8);
}
body.light main input::selection {
color: rgba(0, 0, 0, 0.8);
}
body.light main input {
background: rgba(0, 0, 0, 0.8);
}