-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
81 lines (67 loc) · 1.38 KB
/
Copy pathmain.css
File metadata and controls
81 lines (67 loc) · 1.38 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
:root {
--backgroundcolor: #fafafa;
--antibackgroundcolor: #333333;
}
body {
background-color: var(--backgroundcolor);
color: var(--antibackgroundcolor);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
iframe {
border: none;
}
a:not(.button), a:not(.button):hover, a:not(.button):visited, a:not(.button):active {
color: #d3d3d3;
text-decoration: none;
}
.container {
padding: 15px 15px 15px 15px;
}
.border {
border: 1px #fafafa solid;
}
a.button {
cursor: pointer;
color: #333333;
background-color: #d3d3d3;
padding: 5px 5px 5px 5px;
text-decoration: none;
}
.button:hover {
background-color: #333333;
color: #fafafafa;
}
svg {
width: 20px;
height: 20px;
fill: var(--antibackgroundcolor);
}
.nav-social {
display: inline-block;
}
#gr8-logo {
display: inline-block;
width: 20px;
height: 20px;
background-repeat: no-repeat;
background-size: cover;
background-image:url('/gr8brik/logo/simplelogo_lightmode.svg');
}
#img-mecabricks {
display: inline-block;
width: 20px;
height: 20px;
}
@media (prefers-color-scheme: dark) {
:root {
--backgroundcolor: #333333;
--antibackgroundcolor: #fafafa;
}
.button:hover {
background-color: #fafafa;
color: #333333;
}
#gr8-logo {
background-image:url('/gr8brik/logo/simplelogo_darkmode.svg');
}
}