-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (82 loc) · 1.77 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
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
91
92
93
94
95
html,
body {
margin: 0 !important;
height: 100% !important;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body {
height: 100% !important;
}
.flex-container {
display: -webkit-flex !important;
display: flex !important;
min-height: 100% !important;
}
.sidenavv {
border-right: 1px solid grey;
-webkit-flex: 1 !important;
flex: 1 !important;
font-weight: 500;
}
.content {
padding: 4rem !important;
-webkit-flex: 5 !important;
flex: 5 !important;
height: 1400px !important;
}
h1 {
font-size: 3rem !important;
font-weight: 700;
line-height: 1.25;
margin: 0 0 1rem 0;
}
p {
margin: 0 0 calc(1.25 * 1rem) !important;
}
.navbtn > li {
color: #dadde1;
cursor: pointer;
display: flex;
justify-content: space-between;
line-height: 20px;
transition-property: color, background;
transition-duration: 200ms;
transition-timing-function: cubic-bezier(0.08, 0.52, 0.52, 1);
border-radius: 0.25rem;
padding: 0.375rem 1rem;
}
.navbtn > li:hover {
color: var(--ifm-menu-color);
transition-property: color, background;
transition-duration: 200ms;
transition-timing-function: cubic-bezier(0.08, 0.52, 0.52, 1);
text-decoration: none;
background: #ffffff0d;
}
.sidenavv {
padding: 1rem;
}
.box1 {
width: 20px;
height: 20px;
background-color: #6d78ad;
border: 1px solid black;
}
.box2 {
width: 20px;
height: 20px;
background-color: #51cda0;
border: 1px solid black;
}
@media (max-width: 480px) {
.sidenavv {
display: none !important;
}
}
@media (min-width: 481px) and (max-width: 767px) {
.sidenavv {
display: none !important;
}
}