blob: b2676b461e93d277e7362ecd6dc30f724c43dd1b (
plain)
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
|
:root {
--bgdark: #232836;
--bglight: #282e3f;
--bglighter: #2f364a;
--fgdark: #8686a4;
--fglight: #ccccfa;
--accent: #d39ceb;
--border: #2f364a;
--disabled: #696969;
--hover: #ffffff;
}
* {
font-family: "t kiwi Wide";
font-size: 20px;
}
html {
background: var(--bgdark);
background-position: top -24px left 0;
margin-top: -26px;
}
html, body {
width: 100vw;
height: 100vh;
padding: 0;
margin: 0;
}
main {
display: flex;
justify-content: center;;
overflow-y: auto;
flex-flow: row wrap;
position: relative;
top: 50%;
transform: translateY(-50%);
}
#clock {
position: relative;
top: -30px;
display: flex;
text-align: center;
}
#time, #date {
color: var(--fglight);
display: inline-block;
margin: 0 5px;
flex-grow: 1;
width: 0;
}
#time {
text-align: left;
}
#date {
text-align: right;
}
.links {
padding: 5px 15px;
width: auto;
display: block;
text-align: center;
}
a:visited, a {
color: var(--fgdark);
text-decoration: none;
outline: none;
}
a:not(.tablinks):visited, a:not(.tablinks) { transition: all 00ms ease 0s; }
a:hover { color: var(--fglight); }
.slash {
color: var(--fgdark);
}
main section {
box-sizing: border-box;
min-width: 300px;
}
.title {
display: none;
}
section {
margin: 12px;
padding: 12px;
/*border: 8px solid var(--fgdark);*/
box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.13);
}
section {
background-color: var(--bglight);
border-radius: 4px;
}
section:hover {
background-color: var(--bglighter);
}
|