-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (49 loc) · 1.11 KB
/
style.css
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
/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Sora:[email protected]&display=swap');
body {
background-image: url('./background.png');
background-size: cover;
background-repeat: repeat-y;
background-position: center;
background-color: #6805F2;
font-family: "Sora", sans-serif;
}
h1, h2, h3, h4, h5, h6, p, a, span, li {
color: #ffffff!important;
}
blockquote {
border-left: 4px solid var(--theme-color, #6805F2)!important;
}
button.sidebar-toggle {
background: transparent;
}
.sidebar-toggle span {
background-color: var(--theme-color, #fff);
}
aside.sidebar {
background-color: #020659;
border-right: 1px solid #6805F2;
}
.search {
border-bottom: 1px solid #6805F2!important;
}
.input-wrap {
position: relative;
padding: 1rem .4rem;
}
.input-wrap input[type='search'] {
border-radius: 8px;
border: 1px solid #ccc;
padding-left: 2rem;
}
.input-wrap .fa-search {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: #ccc;
pointer-events: none;
}
em {
color: #6805F2!important;
}