-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (83 loc) · 1.89 KB
/
style.css
File metadata and controls
98 lines (83 loc) · 1.89 KB
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
*, :root {
font-family: monospace, sans-serif;
color: white;
padding: 0;
margin: 0;
}
html, body {
background-color: rgb(25, 25, 25);
height: 100%;
display: flex;
flex-direction: column;
/* Taken from internet */
background-image: linear-gradient(rgba(255, 255, 255, 0.007) 2px, transparent 2px),
linear-gradient(90deg, rgba(255,255,255,0.007) 2px, transparent 1px),
linear-gradient(rgba(255,255,255,0.007) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.007) 1px, transparent 1px);
background-size:100px 100px, 100px 100px, 20px 20px, 20px 20px;
background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px;
}
main {
flex: 1;
display: flex;
flex-direction: column;
}
h3 {
margin: 1rem;
}
footer {
text-align: center;
height: 80px;
line-height: 25px;
}
.tp-dfwv {
top: auto !important;
bottom: 90px !important;
left: 20px !important;
width: 30% !important;
overflow: hidden !important;
}
.tp-btnv_b {
background-color: transparent !important;
}
.tp-btnv_t {
background-color: rgba(0, 0, 0, 0.2);
}
.tp-btnv_t:hover {
background-color: rgba(0, 0, 0, 0.5);
}
#webgl-canvas {
width: clamp(0px, 95%, 720px) !important;
image-rendering: crisp-edges;
aspect-ratio: (4 / 3);
align-self: center;
height: 480px;
margin: 20px;
background-color: rgb(25, 25, 25);
border: 2px solid white;
border-radius: 10px;
}
#error {
width: clamp(0px, 95%, 720px);
height: 20%;
margin: 0 auto;
max-width: 1000px;
border: 2px solid white;
overflow-wrap: break-word;
box-sizing: border-box;
text-align: center;
border-radius: 10px;
background-color: rgb(24, 24, 26);
}
#error > p {
padding: 10px;
text-align: left;
}
@media (max-width: 800px) {
* {
font-size: small;
}
h3 {
font-size: medium;
}
}