forked from ShaharEli/FirstWeekendTask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (72 loc) · 1.04 KB
/
styles.css
File metadata and controls
75 lines (72 loc) · 1.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
*{
font-family: arial;
}
body{
min-width: 290px;
line-height: 1.5;
}
#mummy{
text-align: left;
width: 33.33%;
padding: 5px;
}
#main-doc > h1{
font-size: 38px;
}
#navbar{
border-right: solid;
cursor: pointer;
position: fixed;
left:0px;
height:100%;
top:0px;
background-color: lightseagreen;
}
#navbar header{
padding-left: 40px;
}
#navbar ul{
box-sizing:border-box;
list-style: none;
padding: 0;
height: 88%;
}
#navbar a{
text-decoration: none;
color:black;
font-size: 18px;
display: block;
padding: 10px 1px;
}
#navbar li{
left:0px;
border: 1px solid;
position: relative;
width: 100%;
}
#main-doc {
position: absolute;
margin-left: 310px;
}
#main-doc{
padding: 0;
left:0px;
}
.main-section{
padding-bottom: 20px;
}
.main-section p,ul{
font-size: 28px;
}
.main-section header{
font-size: 32px;
}
div{
background-color: lightgray;
border-radius:10px;
}
@media(max-width:300px){
body{
background-color: white;
}
}