forked from ShaharEli/FirstWeekendTask
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (59 loc) · 1.07 KB
/
styles.css
File metadata and controls
59 lines (59 loc) · 1.07 KB
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
* {
box-sizing: border-box;
}
body{
display: flex;
}
code{
background-color: rgb(204, 211, 224);
}
#navbar {
font-family: 'Times New Roman', Times, serif;
position: fixed;
width: 350px;
border-right: 3px solid black;
height: 100%;
}
#main-doc{
padding-left: 40px;
padding-right: 40px;
margin-left: 350px;
}
#navbar header{
padding: 10px 15px;
font-weight: 400;
font-size: 28px;
text-align: center;
display: block;
}
.nav-link{
display: block;
color: #4d4e53;
font-size: 20px;
padding: 15px 10px;
width: 100%;
margin-left: 0;
border-bottom: 1px solid black;
text-decoration: none;
cursor: pointer;
}
.main-section{
font-size: 20px;
font-weight: 100;
font-family: 'Times New Roman', Times, serif;
line-height: 1.4;
}
@media only screen and (max-width: 1200px) {
body{
display: block;
}
#navbar{
display: block;
width: 200px;
}
#main-doc{
padding-left: 25px;
padding-right: 25px;
margin-left: 200px;
}
}