-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (91 loc) · 1.52 KB
/
styles.css
File metadata and controls
92 lines (91 loc) · 1.52 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
body{
min-width:290px;
color:#4d4e53;
background-color: #ffffff;
font-family: 'Open Sans',Arial,sans-serif;
line-height:1.5;
}
#navbar{
position:fixed;
min-width: 290px;
top:0px;
left:0px;
width:300px;
height:100%;
border-right:solid;
border-color: rgba(0,22,22,0.4);
}
header{
color:black;
margin:10px;
text-align:center;
font-size:1.8em;
}
#navbar ul{
height:88%;
padding:0;
overflow-y:auto;
overflow-x:hidden;
}
#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:pointer;
}
ul{
display:block;
list-style-type: disc;
}
li{
display:list-item;
text-align:-webkit-match-parent;
}
#main-doc{
position:absolute;
margin-left:310px;
padding:20px;
margin-bottom:110px;
}
main{
display:block;
}
section{
display:block;
}
section li{
margin:15px 0 0 20px;
}
#main-doc header{
text-align:left;
margin:0;
}
section article{
color:#4d4e53;
margin:15px;
font-size:0.96em;
}
p{
display:block;
}
code{
display:block;
text-align:left;
white-space:pre-line;
position:relative;
word-break: normal;
word-wrap: normal;
line-height:2;
background-color: #f7f7f7;
padding:15px;
margin:10px;
border-radius: 5px;
}