-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.css
104 lines (90 loc) · 1.76 KB
/
config.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
96
97
98
99
100
101
102
103
104
/* fallback */
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(https://fonts.gstatic.com/s/materialicons/v85/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-moz-font-feature-settings: 'liga';
font-feature-settings: 'liga';
-moz-osx-font-smoothing: grayscale;
}
a.forum_link {
color: black;
}
a.forum_link:hover {
color: darkmagenta;
}
a.forum_link:visited {
color: darkviolet;
}
#wholeWindow {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(128, 128, 128, 0.5);
backdrop-filter: blur(10px);
color: black;
}
#configWindow {
position: absolute;
top: 50%;
left: 50%;
padding: 5px;
transform: translate(-50%, -50%);
background-color: darkgray;
border: solid 1px black;
border-radius: 5px;
}
fieldset {
padding: 2px;
border-radius: 5px;
}
#messages {
padding: 2px;
border: 0.1px solid white;
border-radius: 5px;
margin-top: 2px;
text-align: center;
display: none;
}
.message {
color: darkred;
border: 0.1px solid white;
border-radius: 5px;
}
.buttons {
margin-top: 5px;
width: 100%;
}
.buttons tr td:first-child {
text-align: left;
}
.buttons tr td:last-child {
text-align: right;
}
#configButton {
position: fixed;
top: 5px;
right: 5px;
cursor: pointer;
}
#warning {
display: none;
color: red;
}