-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (46 loc) · 1.08 KB
/
Copy pathstyle.css
File metadata and controls
58 lines (46 loc) · 1.08 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
html{
height: 2000px;
}
*{
margin: 0;
box-sizing: border-box;
}
header{
/* position: absolute; */
width: 100%;
height: 600px;
background-image: url(header.jpg);
background-attachment: fixed;
background-size: cover;
}
.nav-items{
position: fixed;
background-color: white;
top: 30px;
left: 20px;
right: 20px;
list-style-type: none;
color: grey;
display: flex;
flex-direction: row;
border-radius: 5px;
justify-content: left;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
height: 50px;
}
.nav-item:hover{
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
a{
position: relative;
top: 11px;
color: grey;
text-decoration: none;
padding: 10px;
}
h2{
margin: auto;
width: 200px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}