-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (51 loc) · 914 Bytes
/
style.css
File metadata and controls
60 lines (51 loc) · 914 Bytes
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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
@media (prefers-color-scheme: dark) {
:root {
--nc-tx-1: #ffffff !important;
--nc-tx-2: #eeeeee !important;
--nc-bg-1: #0D1117 !important;
--nc-bg-2: #222222 !important;
--nc-bg-3: #333333 !important;
--nc-lk-1: #3291FF !important;
--nc-lk-2: #3291FF !important;
--nc-lk-tx: #FFFFFF !important;
--nc-ac-1: #7928CA !important;
--nc-ac-tx: #FFFFFF !important;
}
}
img:not(.badge) {
width: 345px;
}
img.badge {
margin-left: .6rem;
margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
img:not(.badge) {
width: 50%;
}
}
::selection {
background-color: #003399 !important;
}
a {
text-decoration-line: none;
}
a:hover {
text-decoration-line: underline;
}
blockquote {
background-color: #05070A !important;
border-left: 5px solid #68560C;
color: #9A9A9A;
}
.eu {
color: #003399;
}
.eubadge {
color: #FFCC00;
}