-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
104 lines (96 loc) · 1.5 KB
/
styles.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
body {
color: #000000;
background-color: #ffffff;
font-family: 'Courier New', Courier, monospace;
line-height: 1.5rem;
min-width: 300px;
}
#navbar {
position: fixed;
min-width: 300px;
width: 350px;
height: 100%;
top: 0px;
left: 0px;
border-right: solid;
border-color: rgba(0, 23, 23, 0.5);
}
#navbar ul {
height: 88%;
padding: 0;
overflow-y: auto;
}
#navbar li {
color: #4d4e53;
border-top: 1px solid;
list-style: none;
position: relative;
width: 100%;
}
#navbar a {
display: block;
padding: 10px 30px;
color: #4d4e53;
text-decoration: none;
cursor: printer;
}
header {
color: black;
margin: 10px;
text-align: center;
font-size: 1.8em;
font-weight: thin;
}
#main-doc {
position: absolute;
margin-left: 360px;
padding: 20px;
margin-bottom: 110px;
}
#main-doc header {
text-align: left;
margin: 0px;
}
section article {
color: #4d4e53;
margin: 15px;
font-size: 0.96em;
}
section li {
margin: 15px 0px 0px 20px;
}
code {
display: block;
text-align: left;
position: relative;
line-height: 2;
background-color: #f7f7f7;
padding: 15px;
margin: 10px;
border-radius: 5px;
white-space: pre-line;
word-break: normal;
word-wrap: normal;
}
@media only screen and (max-width: 815px) {
#navbar {
position: absolute;
top: 0;
padding: 0;
margin: 0;
width: 100%;
max-height: 275px;
border: none;
z-index: 1;
border-bottom: 2px solid;
}
#navbar ul {
border: 1px solid;
height: 207px;
}
#main-doc {
position: relative;
margin-left: 0px;
margin-top: 270px;
}
}