-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (37 loc) · 783 Bytes
/
style.css
File metadata and controls
40 lines (37 loc) · 783 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
body {
background-color: #fff;
color: #333;
font-family: 'Rubik', sans-serif;
font-size: 20px;
padding-top: 0; /* Remove any padding */
margin-top: 0; /* Remove any margin */
}
.navbar {
position: fixed;
top: 0;
width: 100%;
z-index: 100; /* Increase z-index */
}
#floating-logo {
position: absolute;
display: block;
width: 275px;
height: 125px;
top: 20%;
left: 50%;
transform: translateX(-50%);
z-index: 50; /* Logo should be on top of skyline but below navbar */
}
.skyline {
background-color: red; /* Keep this for testing */
background-image: url('images/skyline2.jpg');
height: 100vh;
width: 100vw;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
z-index: 1;
margin-top: 0;
display: block;
}