-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathcustom.css
More file actions
89 lines (73 loc) · 1.6 KB
/
custom.css
File metadata and controls
89 lines (73 loc) · 1.6 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
/* stylelint-disable docusaurus/copyright-header */
/**
* 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. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=block');
:root {
--ifm-color-primary: #2a62ff;
--ifm-color-primary-dark: #2a62ff;
--ifm-color-primary-darker: #2a62ff;
--ifm-color-primary-darkest: #2a62ff;
--ifm-color-primary-light: #2a62ff;
--ifm-color-primary-lighter: #2a62ff;
--ifm-color-primary-lightest: #2a62ff;
--ifm-code-font-size: 95%;
}
body{
font-family: 'Inter', sans-serif;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
.navbar{
padding-top: 16px;
padding-bottom: 16px;
height: auto;
}
.navbar__logo{
max-width: 200px;
height: auto;
}
.navbar__link{
padding: 4px 8px;
display: block;
margin-right: 10px;
height: auto;
border-radius: 8px;
letter-spacing: -.25px;
font-weight: 600;
}
.navbar__link:hover{
background-color: #eee;
}
.homepage-img{
width: 100px;
height: 100px;
display: block;
margin: 0 auto 10px;
}
.hero{
/* border-bottom: 1px solid #ddd; */
}
.main-container{
padding-top: 48px;
padding-bottom: 48px;
}
footer{
background: #333;
}
.navbar-sidebar{
min-width: 300px;
box-shadow: none;
}
@media (max-width: 425px){
.navbar__items{
margin-bottom: 10px;
}
}