-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentation.css
127 lines (125 loc) · 1.95 KB
/
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
@import url('https://fonts.googleapis.com/css?family=Lato');
html,body{
font-family: 'Lato', Arial, sans-serif;
background-color: rgb(71, 196, 146);
}
#navbar{
position: fixed;
top: 0px;
left: 0px;
height: 100%;
border:2px solid rgb(23, 131, 249);
}
header{
font-size: 31px;
margin: 7px;
text-align: center;
}
.nav-link{
padding: 3px;
text-decoration: none;
cursor: pointer;
}
#navbar li {
font-color: rgb(23, 131, 249);
border: 2px solid blue;
padding: 7px;
list-style: none;
position: relative;
right: 17px;
}
#main-doc {
position: absolute;
margin-left: 311px;
margin-bottom: 109px;
padding: 23px;
}
#main-doc header{
text-align: left;
margin: auto;
margin-top: 37px;
}
#main-doc a {
font-weight: bold;
color: red;
}
.main-section {
margin: 17px;
}
p {
margin-left: 23px;
width: 80%;
max-width: 100%;
}
h1 {
font-size: 2em;
}
code{
display: block;
background-color: #eeeeee;
color: black;
text-align: left;
white-space: pre-wrap;
position: relative;
word-break: normal;
width: 79%;
max-width: 100%;
line-height: 2;
padding: 13px;
margin: 11px;
margin-left: 23px;
border-radius: 7px;
}
footer {
position: fixed;
right: 0;
bottom: 0;
left: 0;
text-align: right;
padding: 3px;
}
@media only screen and (max-width: 736px) {
#navbar ul {
height: 207px;
}
#navbar {
position: absolute;
left: 0;
right: 0;
top: 0;
padding: 0;
margin: 0;
width: 100%;
max-height: 275px;
border: none;
z-index: 1;
}
#main-doc {
position: relative;
margin-left: 0px;
margin-top: 370px;
}
footer {
position: relative;
bottom: 0;
left: 0;
right: 0;
padding: 3px;
}
}
@media only screen
and (max-device-width: 400px) {
#main-doc {
margin-left: -10px;
}
code {
font-size: .75em;
margin-left: -20px;
max-width: 100%;
padding: 15px 45px 15px 10px;
min-width: 233px;
}
footer {
padding: 3px;
}
}