-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextra.css
More file actions
64 lines (55 loc) · 1.03 KB
/
extra.css
File metadata and controls
64 lines (55 loc) · 1.03 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
/* Extra css to customize the look above the settings of the default Oranda theme. */
h1, h2, h3, h4, h5, h6 {
background: linear-gradient(to right, #fc1100 0%, #ffb000 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
/*To make the gradient adapt to length of heading but wrap on mobile*/
width: fit-content;
max-width: 100%;
}
body {
background-image: radial-gradient(#0d0d33, #010111)
}
code {
background-color: #1a1a56;
padding: 0 3px;
color: #d4d4fb;
border-radius: 4px;
}
.title {
display: none;
}
p, li, ul, ol, blockquote, code, pre {
font-size: 1.3rem;
}
li {
list-style: disc;
}
nav li {
font-size: 1.5rem;
list-style: none;
}
footer {
display: none;
}
main {
/*Make margins much slower but leave some space*/
h1 {
margin: 30px 0;
margin-top: 50px;
}
h2 {
margin: 20px 0;
margin-top: 40px;
}
h3, h4 {
margin: 10px 0;
margin-top: 30px;
}
p, blockquote {
margin: 8px 0;
}
img {
margin: 15px 0 !important;
}
}