mirror of
https://github.com/runyanjake/jakeswestcoast.git
synced 2025-10-04 15:27:29 -07:00
63 lines
843 B
CSS
63 lines
843 B
CSS
body, html {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
height: 100%;
|
|
}
|
|
|
|
nav ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
display: flex;
|
|
gap: 20px;
|
|
background-color: #333;
|
|
margin: 0;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
nav ul li {
|
|
display: inline;
|
|
}
|
|
|
|
nav ul li a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
nav ul li a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.home {
|
|
position: relative;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
color: white;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.home-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.background-video {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
width: auto;
|
|
height: auto;
|
|
z-index: 1;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.page {
|
|
padding: 20px;
|
|
}
|