-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
87 lines (76 loc) · 1.95 KB
/
theme.css
File metadata and controls
87 lines (76 loc) · 1.95 KB
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
:root {
--main-bg-color: rgb(50, 38, 38);
--page-bg-color: rgb(63, 50, 50);
--footer-bg-color: rgb(93, 75, 75);
--header-bg-color: rgb(93, 75, 75);
--main-txt-color: rgb(240, 206, 206);
--footer-txt-color: rgb(240, 206, 206);
--page-title-color: rgb(252, 160, 0);
--main-title-color: rgb(242, 170, 44);
--main-link-color: rgb(85, 171, 246);
--file-info-color: rgb(7, 162, 82);
--table-header-bg-color: rgb(106, 34, 3);
--table-header-txt-color: rgb(255, 162, 0);
--tab-bg-color: rgb(137, 87, 0);
--tab-active-bg-color: rgb(255, 162, 0);
--tab-hover-bg-color: rgb(255, 225, 0);
--watermark-color: rgb(0, 0, 0);
}
body {
background-color: var(--page-bg-color);
color: var(--main-txt-color);
font-family: Lucida Grande, Lucida Sans, Helvetica, Arial, sans-serif;
font-style: normal;
font-size: 100%;
margin: 0;
padding: 0;
text-align: left;
}
.box-shadow {
box-shadow: 4px 4px 4px black;
}
.fgm-bg-light {
background-color: var(--page-bg-color) !important;
}
.fgm-bg-dark {
background-color: var(--main-bg-color) !important;
}
.feature {
border: 1px solid #ffe100;
font-size: 1.2em;
border-radius: 6px 6px 6px 6px;
padding: 16px 16px 16px 16px;
background-color: var(--main-bg-color);
margin: 10;
text-shadow: 3px 3px 3px #333333;
}
.header {
border: 1px solid #ffe100;
font-size: 1.2em;
border-radius: 6px 6px 6px 6px;
padding: 16px 16px 16px 16px;
background-color: var(--footer-bg-color);
margin: 10;
text-shadow: 3px 3px 3px #333333;
}
.notice {
border: 1px solid #ff0000;
font-size: 1.2em;
border-radius: 6px 6px 6px 6px;
padding: 16px 16px 16px 16px;
background-color: var(--tab-active-bg-color);
margin: 10;
color: var(--main-bg-color);
text-shadow: 3px 3px 3px var(--tab-hover-bg-color);
}
iframe {
width: 95%;
height: 55vh;
margin-left: 30px !important;
}
nav {
margin-left: 10px;
}
.header {
margin-left: 30px !important;
}