-
Notifications
You must be signed in to change notification settings - Fork 5
/
hues-ui.css
85 lines (78 loc) · 1.67 KB
/
hues-ui.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
81
82
83
84
85
@font-face {
font-family: 'PetMe64Web';
font-style: normal;
font-weight: normal;
-webkit-font-smoothing: none;
font-smooth: never;
src: local("PetMe64Web");
src: local('Pet Me 64'), local('Pet Me 64'), url("fonts/PetMe64.woff") format('woff');
}
@font-face {
font-family: 'HuesExtraControls';
src: url('fonts/HuesExtraControls.eot');
src: url('fonts/HuesExtraControls.eot#iefix') format('embedded-opentype'),
url('fonts/HuesExtraControls.ttf') format('truetype'),
url('fonts/HuesExtraControls.woff') format('woff'),
url('fonts/HuesExtraControls.svg#HuesExtraControls') format('svg');
font-weight: normal;
font-style: normal;
}
.hues-root {
font-family: 'PetMe64Web', 'HuesExtraControls', monospace;
font-size: 8px;
}
.hues-root a:link, .hues-root a:visited {
color: black;
}
.hues-progress-container, .hues-progress-container-visible, .hues-progress-container-hidden {
position: absolute;
z-index: 1;
display: block;
opacity: 0;
transition: opacity 0.5s;
background: white;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.hues-progress-container-visible {
opacity: 1;
}
.hues-progress-container-hidden {
display: none;
}
.hues-error {
display: none;
}
.hues-error-visible {
position: absolute;
z-index: 2;
display: block;
width: 50%;
margin: 0 auto;
left: 0;
right: 0;
top: 50%;
padding-top: 6em;
text-align: center;
}
.hues-progress {
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: center;
font-size: 600%;
}
.hues-canvas {
position: absolute;
display: block;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}