-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (70 loc) · 1.4 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
html,body{
background-color: rgb(255, 255, 255);
}
*{
scroll-behavior:smooth;
}
#navbar{
width: 300px;
height: 100%;
display: flex;
flex-direction: column;
line-height: 50px;
font-size: 16px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding-left: 30px;
position: fixed;
left:0px;
top:0px;
float: left;
border: 2px solid gray;
min-width:290px;
overflow:scroll;
}
#navbar a{
color:black;
text-decoration: none;
width:100%;
border-top:1px solid black;
}
#navbar a:hover{
color:darkgrey
}
#main-doc{
position: absolute;
margin-left:370px;
margin-right: 30px;
}
@media only screen and (max-width: 400px) {
#main-doc {
margin-left: -10px;
}
code {
margin-left: -20px;
width: 100%;
padding: 15px;
padding-left: 10px;
padding-right: 45px;
min-width: 233px;
}
}
header{
font-size: x-large;
font-weight: 600;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
border-bottom: 2px solid gray;
width:fit-content
}
p{
font-family: "Open Sans", Arial, sans-serif;
}
ul li{
font-family: "Open Sans", Arial, sans-serif;
}
code{
color: rgb(77, 78, 83);
background-color: rgba(229, 224, 224, 0.804);
display: block;
padding: 20px;
line-height: 22px;
}