-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (64 loc) · 1.64 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
76
77
78
79
80
/* -------------------------------------------------------------------------- */
/* General styling */
/* -------------------------------------------------------------------------- */
html, body, #binary, #decimal {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
user-select: none;
user-zoom: none;
}
body {
background: linear-gradient(var(--rotation), var(--color1), var(--color2)) no-repeat;
}
#binary, #decimal {
position: absolute;
}
* {
transition: 0.17s;
}
.transparent {
opacity: 0%;
}
.knobsIframe {
all: unset;
}
/* -------------------------------------------------------------------------- */
/* Binary */
/* -------------------------------------------------------------------------- */
#binary {
font-family: "Martian Mono";
color: var(--font-color-bin);
opacity: var(--font-opacity-bin);
font-size: 35vh;
}
#bin-hours {
position: absolute;
top: 7vh;
left: 7vh;
}
#bin-minutes {
position: absolute;
bottom: 7vh;
right: 7vh;
}
/* -------------------------------------------------------------------------- */
/* Decimal */
/* -------------------------------------------------------------------------- */
#decimal {
display: table;
}
#dec-wrapper {
font-family: "Courier Prime";
color: var(--font-color-dec);
text-align: center;
display: table-cell;
vertical-align: middle;
}
#dec-main {
font-size: 45vh;
}
#dec-seconds {
font-size: 13vh;
}