This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css.example
101 lines (85 loc) · 1.55 KB
/
main.css.example
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
96
97
98
99
100
101
.navbar {
height: 60px;
width: 100%;
background-color: var(--col_1);
}
.page {
height: calc(100vh - 60px);
width: 100%;
display: flex;
padding: 20px;
display: flex;
justify-content: center;
}
.navigation {
width: 400px;
margin-right: 20px;
}
.content {
flex: 1;
background-color: var(--col_1);
margin: 4px;
max-width: 700px;
padding: 20px;
border-radius: 8px;
}
.docs__pagebutton-inner {
padding: 10px 22px;
}
.docs__pagebutton {
background-color: var(--col_1);
border-radius: 8px;
margin: 4px 0px;
padding-top: 4px;
padding-bottom: 4px;
}
.docs__pagebutton
.docs__pagebutton {
background-color: var(--col_2);
margin: 4px 8px;
}
.docs__pagebutton
.docs__pagebutton
.docs__pagebutton {
background-color: var(--col_3);
margin: 4px 12px;
}
.docs__pagebutton-active {
border: 1px solid #fff2;
border-right: 4px solid var(--accent);
}
.docs__pagebutton-children {
transition: all 0.2s ease;
}
.child-hidden {
opacity: 0;
height: 0px;
pointer-events: none;
transform: translateY(-20px);
transform-origin: top center;
}
.navbar {
display: flex;
}
.navbar_left {
align-items: center;
display: flex;
}
.navbar_logo {
background-color: var(--accent);
height: 100%;
padding: 0px 15px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
}
.navbar_logo img {
height: 40px;
}
.navbar_right {
margin-left: auto;
padding-right: 20px;
display: flex;
align-items: center;
}