-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.css
93 lines (93 loc) · 1.82 KB
/
index.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
86
87
88
89
90
91
92
93
canvas {
image-rendering: pixelated;
}
body {
overflow-y: scroll;
}
button[disabled], button.disabled {
cursor: not-allowed;
}
#template-output-accordian-btn {
scroll-margin-top: 1em;
}
#important-accordion-button {
filter: hue-rotate(60deg);
}
.emote {
display: inline-block;
position: relative;
overflow: hidden;
margin-bottom: -22px;
}
.dggL.emote {
background-image: url('res/dggL.png');
width: 28px;
height: 28px;
}
.PepoTurkey.emote {
background-image: url('res/PepoTurkey.png');
width: 34px;
height: 28px;
}
.sodaSmile.emote {
background-image: url('res/sodaSmile.png');
width: 28px;
height: 28px;
}
.progress {
position: relative;
}
#generate-progress {
height: 30px;
}
#generate-progress .progress-bar {
transition: unset;
}
.progress-bar-label {
position: absolute;
left: 50%;
transform: translateX(-50%);
user-select: none;
}
#generate-progress .progress-bar-label {
font-size: 20px;
font-weight: 600;
}
.black-outlined {
color: white;
text-shadow: 0.05em 0 black, 0 0.05em black, -0.05em 0 black, 0 -0.05em black, -0.05em -0.05em black, -0.05em 0.05em black, 0.05em -0.05em black, 0.05em 0.05em black;
}
#random-pixel-color {
display: inline-block;
width: 20px;
height: 20px;
border: 1px solid white;
box-shadow: 0px 0px 0px 1px black;
margin-bottom: -4px;
}
.hidden {
visibility: hidden;
}
#version {
z-index: 100;
}
.theme-toggle {
z-index: 100;
}
.theme-toggle .bi {
width: 1em;
height: 1em;
vertical-align: -0.125em;
fill: currentcolor;
}
.theme-toggle .dropdown-menu .active .bi {
display: block !important;
}
.flat-top {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.flat-bottom {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}