-
Notifications
You must be signed in to change notification settings - Fork 0
/
technical-documentation.css
137 lines (116 loc) · 2.2 KB
/
technical-documentation.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
box-sizing: border-box;
margin: 0px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body {
background-color: #5e59592f;
}
#parent {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: stretch;
position: relative;
}
#navbar {
flex: 25%;
padding: 10px 0px;
background-color: #5e595931;
height: 100vmax;
position: fixed;
left: 0%;
border-right: 2px solid #5e5959de;
border-left: 2px solid #5e5959de;
}
#main-doc {
flex: 75%;
max-width: 75%;
margin-left: -5%;
padding: 10px 0;
position: absolute;
left: 25%;
}
#navbar a {
display: block;
text-decoration: none;
color: rgb(11, 33, 44);
padding: 10px 0px;
font-weight: 100;
font-size: 1.25rem;
}
.link-border {
border-bottom: 1px solid #000000;
width: inherit;
}
.link-border:first-of-type {
border-top: 1px solid #000000;
width: inherit;
}
.link-border:last-of-type {
border-bottom: none;
}
#navbar a:hover {
background: #413c3c79;
}
.vent>li,
code {
font-style: italic;
font-weight: 100;
font-family: fantasy;
list-style-type: lower-alpha;
}
h1 {
justify-content: center;
text-align: center;
font-weight: normal;
font-size: 1.85em;
color: rgb(4, 126, 4);
}
h2 {
font-weight: 500;
font-size: 1.8rem;
color: rgb(4, 126, 4);
}
p,
ul,
code {
font-size: 1.02rem;
font-style: normal;
font-weight: normal;
line-height: 1.95em;
color: #5e5959ee;
}
.pre {
display: block;
padding: 30px;
background-color: #5e595921;
font-style: oblique;
margin-left: 40px;
word-spacing: 8px;
}
#Data_Types ul {
list-style-type: circle;
}
.list {
margin-left: 60px;
}
@media (max-width: 662px) {
#navbar {
flex-direction: column;
position: absolute;
top: 0;
left: 0;
height: 30vh;
width: 100%;
min-width: 100%;
overflow-y: auto;
overflow-x: hidden;
border: 1px solid #5e5959;
}
#main-doc {
flex-direction: column;
margin: 30vh 0 0 -20%;
width: 100vmax;
}
}