-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (79 loc) · 1.42 KB
/
style.css
File metadata and controls
95 lines (79 loc) · 1.42 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
@media (prefers-color-scheme: dark) {
:root {
--color-bg: #32302f;
--color-text: #ebdbb2;
}
a {
color: #99f296;
}
}
@media (prefers-color-scheme: light) {
:root {
--color-bg: #ebdbb2;
--color-fg: #32302f;
}
a {
color: #68a566;
}
}
@font-face {
font-family: "DM Sans";
src: url("./resource/DMSans-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Charis";
src: url("./resource/Charis-Regular.woff2") format("woff2");
}
:root {
color: var(--color-text);
background-color: var(--color-bg);
font-family: "DM Sans", sans-serif;
}
.ipa {
text-decoration: none;
font-family: "Charis", serif;
}
mark {
background-color: #568b5533;
color: inherit;
}
header {
margin-top: 1.33em;
justify-content: space-between;
display: flex;
align-items: baseline;
flex-wrap: wrap;
flex-flow: row wrap;
}
.title {
display: flex;
align-items: baseline;
flex-wrap: nowrap;
flex-grow: 1;
}
header * {
margin: 0;
white-space: nowrap;
max-width: fit-content;
}
body {
display: flex;
align-items: center;
padding: 0;
}
content {
text-align: justify;
display: inline-block;
max-width: 50em;
min-width: 0em;
margin: 0 auto;
padding: 0.5em;
}
a:visited {
color: #568b55;
opacity: 50%;
}
a:hover {
color: #568b55;
opacity: 50%;
}