-
Notifications
You must be signed in to change notification settings - Fork 2
/
webui.css
95 lines (77 loc) · 1.7 KB
/
webui.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
94
95
#appheading {
font-size: 135%;
margin-bottom: -10;
}
#tabheading {
font-size: 115%;
margin-bottom: -10;
}
:root {
--frame-chooser-action: #008542;
--main-output-highlight: #ee7400;
--feature-output-highlight: #72308A;
--frame-chooser-action-dim: #004d26;
--main-output-highlight-dim: hsl(29, 100%, 30%);
}
#sideimage {
opacity: 0.75;
/*filter: grayscale(100%);*/
}
#mainimage {
filter: drop-shadow(0px 0px 17px var(--frame-chooser-action));
}
#mainoutput {
filter: drop-shadow(0px 0px 17px var(--main-output-highlight));
}
#mainhighlightdim {
background: var(--main-output-highlight-dim);
border: var(--main-output-highlight-dim);
}
#highlightoutput {
filter: drop-shadow(0px 0px 17px var(--feature-output-highlight));
}
#actionbutton {
background: var(--frame-chooser-action);
border: var(--frame-chooser-action);
}
#actionhighlightdim {
background: var(--frame-chooser-action-dim);
border: var(--frame-chooser-action-dim);
}
#highlightbutton {
background: var(--feature-output-highlight);
border: var(--feature-output-highlight);
}
#restartbutton {
background: hsl(250deg 25% 50%);
border: hsl(250deg 25% 50%);
}
#linkcontainer {
background: hsl(200deg 100% 10%) !important;
display: flex;
justify-content: left;
align-items: center;
}
#linkcontainer2 {
background: hsl(150deg 100% 8%) !important;
display: flex;
justify-content: left;
align-items: center;
}
#linkitem {
margin: unset;
font-size: medium;
}
footer {
display: none !important;
}
#footer{
text-align: center;
}
#footer div{
display: inline-block;
}
#footer .versions{
font-size: 85%;
opacity: 0.85;
}