blob: b63703a719ed6c3c41fca14b861a5d79a02d79b8 (
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
|
* {
-webkit-box-sizing: border-box;
}
@font-face {
font-family: 'FixedsysExcelsior301Regular';
src: url('../fonts/fsex300-webfont.eot');
src: url('../fonts/fsex300-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/fsex300-webfont.woff') format('woff'),
url('../fonts/fsex300-webfont.ttf') format('truetype'),
url('../fonts/fsex300-webfont.svg#FixedsysExcelsior301Regular') format('svg');
font-weight: normal;
font-style: normal;
}
html,body {
margin: 0;
padding: 0;
font-family: FixedsysExcelsior301Regular;
background: #000;
color: #888;
}
#header {
position: fixed;
top: 0; right: 0;
background: #333438;
padding: 5px;
}
#header img {
display: inline-block;
}
/* form inputs */
.btns {
margin: 10px;
}
.btn {
-webkit-user-select: none;
overflow: hidden;
display: inline-block;
position: relative;
}
.btn img {
line-height: 0;
}
.btn input[type="file"] {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
opacity: 0;
}
label {
display: block;
width: 100%;
padding: 0 10px;
}
input[type=range] {
width: calc(100% - 20px);
margin: 0 10px;
}
select {
margin: 10px;
}
select + label,
input[type=checkbox] + label {
display: inline-block;
width: 70%;
}
/* modals */
#photo {
position: fixed;
top: 0; left: 0;
display: none;
width: 100%; height: 100%;
}
body.photo {
overflow: hidden;
}
.photo #photo {
display: block;
background: #000;
overflow: auto;
}
#photo canvas {
max-width: 100%;
}
/* links */
a {
color: #38f;
}
#links div a {
display: block;
}
#links div img {
display: block;
width: 100vw;
max-height: 100vh;
}
#links .link-link a {
display: inline;
}
|