-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyle.css
50 lines (42 loc) · 954 Bytes
/
mystyle.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
.blue-color {
color:blue;
}
h2 {
--global-font-size: 30px;
--font-color: #e8e9ed;
}
h3 {
--global-font-size: 20px;
--font-color: #e8e9ed;
}
header {
--global-font-size: 30px;
--font-color: #e8e9ed;
}
.fe-persistent-header {
position: relative;
z-index: 2;
}
.print-pdf .fe-persistent-header { display: none; }
@media print { .fe-persistent-header { display: none; } }
.fe-persistent-header a {
color: #fff;
float: right;
margin: 30px 60px 20px;
}
.fe-persistent-header a:nth-child(2) { float: left; }
.dark-mode {
--global-font-size: 30px;
--background-color: #222225;
--font-color: #e8e9ed;
--invert-font-color: #222225;
--secondary-color: #a3abba;
--tertiary-color: #a3abba;
--primary-color: #62c4ff;
--error-color: #ff3c74;
--progress-bar-background: #3f3f44;
--progress-bar-fill: #62c4ff;
--code-bg-color: #3f3f44;
--input-style: solid;
--display-h1-decoration: none;
}