Added Figma design and initial navbar work
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Arial, sans-serif;
|
||||
background-image: url("../images/Clouds.png");
|
||||
background-size: cover; /* Ensure the image covers the entire viewport */
|
||||
background-position: left; /* Center the image */
|
||||
background-attachment: fixed; /* Make the image fixed during scrolling */
|
||||
}
|
||||
|
||||
.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
color: #fff;
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
color: #fff;
|
||||
margin-right: 1rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 2rem;
|
||||
color: #fff;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
Reference in New Issue
Block a user