-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdefault.css
More file actions
71 lines (62 loc) · 1.21 KB
/
default.css
File metadata and controls
71 lines (62 loc) · 1.21 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
@font-face {
font-family: "OpenSans";
src: url("./fonts/OpenSans-VariableFont_wdthwght.ttf");
}
@font-face {
font-family: "LiberationMono";
src: url("./fonts/LiberationMono-Regular.ttf");
}
:root {
--color: rgb(235, 235, 235);
--bgcolor: rgb(24, 26, 27);
}
body {
overflow-x: hidden;
color: var(--color);
background-color: var(--bgcolor);
line-height: 1.7;
font-family: "OpenSans";
}
div.mdcontainer {
padding: 3vh;
max-width: 1250px;
margin: 0 auto;
}
img {
max-width: 100%;
background-color: rgba(235, 235, 235, 0.5);
padding: 0.3vw;
}
pre{
background-color: rgb(63, 58, 47);
width: min-content;
max-width: 100%;
width: 850px;
padding: 1.5vh;
max-height: max-content;
border-radius: 15px;
& > code {
max-width: 100%;
white-space: pre-wrap !important;
}
}
a:link {
color: rgb(10, 170, 230);
}
a:visited {
color: rgb(230, 170, 10);
}
li {
/* padding-top: 0.5vh;
padding-bottom: 0.5vh; */
& > code {
background-color: rgb(66, 46, 46);
color: white;
padding: 0.4%;
border-radius: 5px;
}
}
code {
font-family: "LiberationMono";
font-size: small;
}