-
Notifications
You must be signed in to change notification settings - Fork 20
/
style.css
73 lines (64 loc) · 2.5 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
/***
* /$$$$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$$$$$
* |__ $$ |__/| $$| $$ | $$ | $$$ /$$$ /$$$$ /$$$$ /$$$_ $$
* | $$ /$$$$$$ /$$| $$| $$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ | $$ /$$ | $$$$ /$$$$ /$$$$$$ |_ $$ |_ $$ | $$$$\ $$
* | $$ |____ $$| $$| $$| $$__ $$ /$$__ $$ /$$__ $$ |____ $$| $$ /$$/ | $$ $$/$$ $$ /$$__ $$ | $$ | $$ | $$ $$ $$
* /$$ | $$ /$$$$$$$| $$| $$| $$ \ $$| $$ \__/| $$$$$$$$ /$$$$$$$| $$$$$$/ | $$ $$$| $$| $$$$$$$$ | $$ | $$ | $$\ $$$$
* | $$ | $$ /$$__ $$| $$| $$| $$ | $$| $$ | $$_____/ /$$__ $$| $$_ $$ | $$\ $ | $$| $$_____/ | $$ | $$ | $$ \ $$$
* | $$$$$$/| $$$$$$$| $$| $$| $$$$$$$/| $$ | $$$$$$$| $$$$$$$| $$ \ $$ | $$ \/ | $$| $$$$$$$ /$$$$$$ /$$$$$$ /$$| $$$$$$/
* \______/ \_______/|__/|__/|_______/ |__/ \_______/ \_______/|__/ \__/ |__/ |__/ \_______/ |______/|______/|__/ \______/
*
* UI Design by Sem Voigtländer
*
*/
/* Global */
* {
font-family: monospace, Arial, sans-serif;
font-size: 36px;
}
/* View */
body, html {
background: #000000;
margin: 0;
padding: 0;
font-size: 16px;
width: 100%;
height: 100%;
color: white;
}
body {
width: 100%;
height: 100%;
}
header {
padding-top: 25px;
text-align: center;
font-size: 42px;
font-weight: bold;
}
main {
width: 100%;
text-align: center;
padding-top: 25%;
}
.go {
padding-top: 15px;
padding-bottom: 15px;
min-width: 50px;
max-width: 90%;
background: rgba(252, 252, 252, 0.7);
}
.go, .go * {
text-align: center;
text-decoration: none;
font-weight: bold;
font-size: 15px !important;
border-radius: 7px;
color: purple;
display: inline-block;
box-decoration-break: slice;
}
footer {
padding-top: 25%;
text-align: center;
}