New landing page

main
Gabe Farrell 2 years ago
parent cf324f676b
commit 7281bf23d4

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

@ -1,21 +1,134 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<link rel="stylesheet" href="style.css">
<body style="background-color:rgb(0, 0, 0);"></body> </head>
<link rel="preconnect" href="https://fonts.googleapis.com"> <body style="background-color: #000;">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <div id="content">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet"> <div id="header">
<h1>THE VELO CLUB</h1>
<link rel="stylesheet" href="style.css"> <h2>(Artist Owned and Operated)</h2>
</head> </div>
<body> <div id="entry">
<h1 style="color: white;">INVITE ONLY</h1> <h2>INVITE ONLY</h2>
<input type="password" id="Name" name="Name" placeholder="password"> <input type="password" id="Name" name="Name" placeholder="password">
</div>
</body> <div class="photobanner">
<img class="first" src="assets/velo.png">
<img src="assets/velo.png">
</html> <img src="assets/velo.png">
<img src="assets/velo.png">
<img src="assets/velo.png">
<img src="assets/velo.png">
<img src="assets/velo.png">
<img src="assets/velo.png">
</div>
</div>
</body>
<style>
:root {
--anim-stop: -1336px;
--anim-time: 18s;
}
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
color: white;
}
#content {
width: 100%;
text-align: center;
margin: 15vh auto;
overflow: hidden;
}
#entry {
margin-top: 10vh;
}
h1 {
font-size: 42px;
margin-bottom: 0px;
}
h2 {
margin-top: 0px;
}
input {
font-size: 14px;
width: 200px;
height: 10px;
padding: 10px;
}
/*keyframe animations*/
.first {
margin-left: 0px;
-webkit-animation: bannermove var(--anim-time) linear infinite;
-moz-animation: bannermove var(--anim-time) linear infinite;
-ms-animation: bannermove var(--anim-time) linear infinite;
-o-animation: bannermove var(--anim-time) linear infinite;
animation: bannermove var(--anim-time) linear infinite;
}
@keyframes bannermove {
0% {
margin-left: 0px;
}
100% {
margin-left: var(--anim-stop);
}
}
@-moz-keyframes bannermove {
0% {
margin-left: 0px;
}
100% {
margin-left: var(--anim-stop);
}
}
@-webkit-keyframes bannermove {
0% {
margin-left: 0px;
}
100% {
margin-left: var(--anim-stop);
}
}
@-ms-keyframes bannermove {
0% {
margin-left: 0px;
}
100% {
margin-left: var(--anim-stop);
}
}
@-o-keyframes bannermove {
0% {
margin-left: 0px;
}
100% {
margin-left: var(--anim-stop);
}
}
.photobanner {
height: 296px;
width: 2770px;
position: absolute;
bottom: 0px;
}
</style>
</html>
Loading…
Cancel
Save