-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (60 loc) · 975 Bytes
/
style.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
body{
margin:10px 20px 0;
font-size: 1.2rem;
font-family: Arial, Helvetica, sans-serif;
}
h2{
text-decoration: underline;
}
p{
margin-bottom: 15px;
margin-top:15px;
}
li{
list-style-type: none;
}
code {
background-color: #000;
color:#fff;
border-radius: 3px;
font-family: courier, monospace;
padding: 2px 5px;
font-size: 0.9rem;
}
.main-section{
margin-bottom: 30px;
}
.code{
background-color: #000;
}
@media screen and (min-width:800px){
body{
display: flex;
padding: 20px 20px 0;
}
#navbar{
display: flex;
flex-direction: column;
position: fixed;
top:30px;
width: 15rem;
min-width: 15%;
border: 2px black solid;
border-radius: 10px;
padding: 10px;
min-height: 40vh;
height: 85%;
}
#navbar header{
font-size: 1.3rem;
}
#navbar a{
text-decoration: none;
padding:10px 0;
font-size: 1.2rem;
}
main#main-doc{
max-width: 80%;
margin-left: 20rem;
}
}