-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentation.css
More file actions
103 lines (87 loc) · 1.66 KB
/
documentation.css
File metadata and controls
103 lines (87 loc) · 1.66 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
91
92
93
94
95
96
97
98
99
100
101
102
103
body:before {
content: ' ';
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0.1;
background-image: url(HP2-01.png);
background-repeat: repeat;
background-position: 0 0;
background-size: cover;
}
.container-documentation {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-right: auto;
margin-left: auto;
color: #eee;
margin-top: 1vh;
padding-top: 1vh;
}
#documentation-navbar{
display:none;
}
@media (min-width: 576px) {
.container-documentation {
max-width:540px
}
#documentation-navbar{
display:none;
}
}
@media (min-width: 768px) {
.container-documentation {
max-width:720px
}
#documentation-navbar{
display:flex;
}
.scrollspy{
height: 90vh;
overflow: auto;
}
}
@media (min-width: 992px) {
.container-documentation {
max-width:960px
}
#documentation-navbar{
display:flex;
}
.scrollspy{
height: 90vh;
overflow: auto;
}
}
@media (min-width: 1200px) {
.container-documentation {
max-width:1140px
}
#documentation-navbar{
display:flex;
}
.scrollspy{
height: 90vh;
overflow: auto;
}
}
@media (min-width: 1400px) {
.container-documentation {
max-width:80%;
margin-right: 10%;
margin-left: 10%;
}
#documentation-navbar{
display:flex;
}
.scrollspy{
height: 90vh;
overflow: auto;
}
}