-
Notifications
You must be signed in to change notification settings - Fork 0
/
tech_doc.css
72 lines (69 loc) · 1.28 KB
/
tech_doc.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
#main-doc > .main-section >p,ul{
font-family:sans-serif;
word-spacing:4;
}
#main-doc > .main-section >code{
background-color:#eee;
color:green;
font-size:110%;
display:block;
height:auto;
padding:30px;
}
#navbar{
border-right:3px solid grey;
width:270px;
min-width:270px;
position:fixed;
height:100vh;
top:0px;
left:0px;
background-color:#eee;
padding-left:7px;
}
#navbar > header{
font-weight:bold;
font-size:200%;
}
#main-doc{
position:absolute;
top:10px;
left:290px;
}
#navbar > p > a{
color:black;
text-decoration:none;
font-weight:500;
font-size:120%;
}
#navbar > p{
left:5px;
border-width:1px 0px 0px 1px;
border-color:black;
margin-top:18px;
width:100%;
}
@media(max-width:768px)
{
#navbar{
border:3px solid grey;
position:relative;
width:100%;
height:250px;
overflow:hidden scroll;
}
#main-doc{
position:relative;
top:20px;
left:0;
}
#navbar > *{
margin-left:20px;
}
}
#main-doc > .main-section > header{
font-weight:bold;
font-size:30px;
text-align:center;
}
** end of undefined **