Newer
Older
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
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
a {
text-decoration: none;
border-bottom: 2px dotted #ffffff;
color: #ffffff;
}
a:hover {
border-bottom-style: solid;
}
html {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
body {
font-family: "VT323", "Robot", "Open Sans", Arial, Helvetica, sans-serif;
margin: 0px 0px 0px 0px;
background-color: #1b1a17;
color: #ffffff;
padding: 12px 12px 12px 12px;
}
p {
font-size: 18px;
line-height: 22px;
}
.main {
display: flex;
}
.main > .side-right {
flex: 1 0;
text-align: center;
margin-top: 30px;
}
.main > .side-right .canvas {
border: 2px solid #50cb93;
padding: 6px 6px 6px 6px;
}
.main > .side-left {
flex: 0 1;
min-width: 580px;
padding: 0px 12px 0px 12px;
}
.main > .side-left .logo-image {
vertical-align: middle;
width: 32px;
}
.main > .side-left .separator {
height: 2px;
margin: 28px 0px 28px 0px;
}
.main > .side-left .diag {
font-size: 24px;
vertical-align: top;
}
.main > .side-left .diag > dt {
float: left;
clear: both;
margin-top: 12px;
}
.main > .side-left .diag > dd {
margin-top: 12px;
float: right;
}
.main > .side-left .diag::after {
content: '';
display: block;
clear: both;
}
.footer {
position: absolute;
width: 100%;
bottom: 22px;
left: 0px;
padding: 0px 22px 0px 22px;
text-align: center;;
}
.toast {
position: absolute;
left: 50%;
padding: 16px;
top: 32px;
font-size: 22px;
border-radius: 4px 4px 4px 4px;
transform: translate(-50%, 0%);
}
.toast.error {
background-color: #e63946;
}
.overlay {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
opacity: 1;
background-color: rgba(80, 203, 147, 0.95);
z-index: 10;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
opacity: 0.0;
pointer-events: none;
transition: opacity 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.tiny-button {
padding: 0px 8px 0px 8px;
border-radius: 64px 64px 64px 64px;
cursor: pointer;
user-select: none;
}
.tiny-button:hover {
background-color: #50cb93;
}