-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (46 loc) · 742 Bytes
/
styles.css
File metadata and controls
46 lines (46 loc) · 742 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
body {
background-color: #f6f6f6;
}
#navbar {
position: fixed;
top: 0;
left: 0;
padding: 30px;
width: 300px;
height: 100vh;
background-color: white;
}
.nav-link {
font-size: 20px;
display: flex;
flex-direction: column;
}
.nav-link {
text-decoration: none;
color: black;
border-bottom: 1px solid grey;
padding: 10px;
}
.nav-link:hover {
background-color: #eee;
font-weight: 700;
transition: background-color 0.1s ease-in-out;
}
#main-doc {
margin-left: 400px;
margin-right: 20px;
}
@media (max-width: 1200px) {
#navbar {
width: 150px;
}
h1 {
font-size: 22px;
}
#main-doc {
margin-left: 250px;
}
}
.main-section {
margin: 50px 0;
}