-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
91 lines (90 loc) · 1.28 KB
/
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
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
body {
margin: 35px;
}
header {
font-size: 28px;
margin-top: 20px;
}
li {
line-height: 1.4;
padding: 7px;
margin-left: 40px;
}
.codeCase {
background-color: lightgrey;
font-size: 12px;
padding: 15px;
margin: 20px;
line-height: 1.6;
border-radius: 8px;
}
#main-doc {
margin-left: 300px;
padding: 1px 16px;
height: 1000px;
}
#navbar {
top: 0px;
margin: 0px;
left: 0px;
width: 300px;
background-color: #f1f1f1;
position: fixed;
height: 100%;
overflow: auto;
}
#navbar a {
color: black;
padding: 0px;
text-align: justify;
font-size: 20px;
text-decoration: none;
}
.nav-link li {
border: 1px;
padding: 5px;
padding-left: 30px;
list-style: none;
position: relative;
left: -50px;
width: 100%;
}
P {
font-size: 16px;
text-align: justify;
line-height: 20px;
}
.pic {
width: 50px;
height: 50px;
align-items: baseline;
}
#footer {
height: 40px;
width: 300px;
position: fixed;
left: 20px;
bottom: 40px;
}
#copyright {
text-align: center;
}
@media screen and (max-width: 700px) {
#navbar {
width: 100%;
height: auto;
position: relative;
}
.navbar a {
float: left;
}
div.main-doc {
margin-left: 0;
}
}
@media screen and (max-width: 350px) {
.navbar a {
text-align: center;
float: none;
}
}