forked from xyield/xrpl-go
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcustom.css
More file actions
90 lines (80 loc) · 2.08 KB
/
custom.css
File metadata and controls
90 lines (80 loc) · 2.08 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
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #ac5cfb;
--ifm-color-primary-dark: #ac5cfb;
--ifm-color-primary-darker: #ac5cfb;
--ifm-color-primary-darkest: #ac5cfb;
--ifm-color-primary-light: #ac5cfb;
--ifm-color-primary-lighter: #ac5cfb;
--ifm-color-primary-lightest: #ac5cfb;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] {
--ifm-color-primary: #ac5cfb;
--ifm-color-primary-dark: #ac5cfb;
--ifm-color-primary-darker: #ac5cfb;
--ifm-color-primary-darkest: #ac5cfb;
--ifm-color-primary-light: #ac5cfb;
--ifm-color-primary-lighter: #ac5cfb;
--ifm-color-primary-lightest: #ac5cfb;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
main {
background-image: url("/img/bg-top.png"), url("/img/bg-bottom.png");
background-position: top left, bottom right;
background-repeat: no-repeat, no-repeat;
background-size: 200px, 200px;
}
.footer {
background-color: transparent;
border-top: 1px solid rgb(68, 73, 80);
}
@media screen and (max-width: 996px) {
main {
background-image: none;
}
}
.hero-section {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
.hero-logo {
max-width: 300px;
margin-bottom: 2rem;
}
.hero-title {
font-size: 3rem;
margin-bottom: 1.5rem;
text-align: center;
}
.hero-description {
font-size: 1.5rem;
max-width: 800px;
text-align: center;
line-height: 1.6;
margin-bottom: 2rem;
}
/* src/theme/sidebar/sidebar.module.css */
.sidebarSectionLabel {
/* no margins */
margin: 0;
/* make it bigger */
font-size: 0.75rem;
text-transform: uppercase;
/* your color */
color: rgb(85, 86, 87);
line-height: 1.5;
/* pull it left of links */
margin-left: -0.5rem;
}