-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (61 loc) · 1017 Bytes
/
styles.css
File metadata and controls
70 lines (61 loc) · 1017 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding-left: 270px;
line-height: 1.5;
}
#navbar {
position: fixed;
top: 0;
left: 0;
width: 250px;
height: 100%;
background-color: #f4f4f4;
border-right: 2px solid #ccc;
overflow-y: auto;
}
#navbar header {
font-size: 1.5em;
font-weight: bold;
padding: 15px;
text-align: center;
}
.nav-link {
display: block;
padding: 10px 15px;
text-decoration: none;
color: #333;
border-top: 1px solid #ccc;
}
.nav-link:hover {
background-color: #ddd;
}
.main-section {
padding: 20px;
margin-bottom: 30px;
}
header {
font-size: 1.8em;
margin-bottom: 10px;
font-weight: bold;
}
code {
background-color: #f0f0f0;
padding: 2px 5px;
border-radius: 4px;
display: block;
white-space: pre-wrap;
margin: 10px 0;
}
@media (max-width: 800px) {
#navbar {
position: relative;
width: 100%;
height: auto;
border-right: none;
border-bottom: 2px solid #ccc;
}
body {
padding-left: 0;
}
}