-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathshared.css
More file actions
103 lines (86 loc) · 1.71 KB
/
Copy pathshared.css
File metadata and controls
103 lines (86 loc) · 1.71 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
:root {
--color-bg: #141e24;
--color-hover: #193945;
--color-control: #316d7c;
--color-text: #53a1b3;
--color-text-hover: white;
--color-highlight: #e96c4c;
--color-honey: #f68623;
--color-honey-text: #ff9f4a;
--color-pie: #ad4abb;
--font-family: Open Sans, Helvetica Neue, Segoe UI, Ubuntu, sans-serif;
color-scheme: dark;
}
html,
body {
background-color: var(--color-bg);
color: var(--color-text);
font-family: var(--font-family);
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
h1 {
color: var(--color-highlight);
font-weight: 300;
}
h6 {
font-weight: 400;
}
a {
color: var(--color-text);
outline: none;
transition: color 125ms;
word-break: break-word;
}
a:hover {
color: var(--color-text-hover);
}
li {
/* list-style-type: circle; */
}
::-moz-selection {
background-color: var(--color-highlight);
color: var(--color-text-hover);
}
::selection {
background-color: var(--color-highlight);
color: var(--color-text-hover);
}
article img,
figure img {
box-shadow: 0 0.25rem 2.5rem rgba(0, 0, 0, 0.5);
display: inline-block;
max-width: 100%;
}
a:hover img {
filter: brightness(1.05);
}
figure {
margin-left: 0;
margin-right: 0;
max-width: 100%;
text-align: center;
}
figcaption {
font-size: smaller;
}
video {
cursor: pointer;
}
.no-shadow {
box-shadow: unset;
}
.text-highlight {
color: var(--color-highlight);
}
blockquote {
color: #b599f5;
background: #211921;
border-left: 0.25rem solid var(--color-highlight);
font-style: italic;
margin-left: 0;
padding-left: 2rem;
}
blockquote a:not(:hover) {
color: #baa2f0;
}