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
49 lines (45 loc) · 957 Bytes
/
styles.css
File metadata and controls
49 lines (45 loc) · 957 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
html{
font-family: Arial, Helvetica, sans-serif;
font-weight: 300;
}
body {
background: url("/8bf7c1c98c5a2b1121888d215fe0a86c.jpeg");
background-size: 100% 100%;
}
#navigatebar {
height: 100%;
width: 200px;
position: fixed;
background-image: linear-gradient(to right, red , black);
overflow: hidden;
display: block;
left: 0;
top: 0;
}
#main{
margin-left: 200px;
font-size: 18px;
}
.nav-link{
display: block;
color: black;
text-decoration: none;
padding: 20px 30px;
font-weight: 300;
font-size: 20;
background-image: linear-gradient(to right, red , black); border: 2px solid black;
}
.nav-link:hover{
opacity:0.9;
}
.nav-link:visited{
color: black;
}
header{
font-size: 30px;
text-decoration: underline;
}
@media (max-width: 800px) {
body {
background-image: linear-gradient(to right, red , white); }
}