Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/4K_8.mp4
Binary file not shown.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@
</head>

<body>
<video autoplay muted loop id="myVideo">
<source src="images/4K_8.mp4" type="video/mp4">
</video>
<nav id="navbar" class="sticky">
<ul class="menu">
<div>
Expand Down
Binary file added pattern_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
}

body {
background-image: linear-gradient(to right top, #06002a, #08164c, #0d2672, #11369a, #1148c4, #0063da, #007eed, #0098ff, #00b7ff, #00d3ff, #00ebf1, #00ffd4);
display: flex;
flex-direction: column;
justify-content: center;
Expand All @@ -21,6 +20,14 @@ body {
padding-bottom: 20px;
}

#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}

nav {
height: 15vh;
background-color: #152932;
Expand Down