bot menu
This commit is contained in:
parent
7879c9852e
commit
4e36724ce0
2 changed files with 69 additions and 50 deletions
60
css/index.css
Normal file
60
css/index.css
Normal file
|
@ -0,0 +1,60 @@
|
|||
body, html {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
font: 400 15px/1.8 "Lato", sans-serif;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.bgimg-1, .bgimg-2, .bgimg-3 {
|
||||
position: relative;
|
||||
opacity: 0.65;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
|
||||
}
|
||||
.bgimg-1 {
|
||||
background-image: url("/images/blacklogo.png");
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.caption {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.caption span.border {
|
||||
background-color: #111;
|
||||
color: #fff;
|
||||
padding: 18px;
|
||||
font-size: 25px;
|
||||
letter-spacing: 10px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
letter-spacing: 5px;
|
||||
text-transform: uppercase;
|
||||
font: 20px "Lato", sans-serif;
|
||||
color: #111;
|
||||
}
|
||||
.btn {
|
||||
border: none;
|
||||
background-color: inherit;
|
||||
padding: 14px 28px;
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.btn:hover {background: #eee;}
|
||||
|
||||
.home {color: green;}
|
||||
.login {color: rgb(233, 87, 238);}
|
||||
.music {color: rgb(255, 190, 70);}
|
||||
.blog {color: rgb(0, 217, 255);}
|
||||
.discord {color: black;}
|
||||
.git {color: rgb(230, 68, 68);}
|
59
index.html
59
index.html
|
@ -1,63 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/index.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<style>
|
||||
body, html {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
font: 400 15px/1.8 "Lato", sans-serif;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.bgimg-1, .bgimg-2, .bgimg-3 {
|
||||
position: relative;
|
||||
opacity: 0.65;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
|
||||
}
|
||||
.bgimg-1 {
|
||||
background-image: url("/images/blacklogo.png");
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.caption {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.caption span.border {
|
||||
background-color: #111;
|
||||
color: #fff;
|
||||
padding: 18px;
|
||||
font-size: 25px;
|
||||
letter-spacing: 10px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
letter-spacing: 5px;
|
||||
text-transform: uppercase;
|
||||
font: 20px "Lato", sans-serif;
|
||||
color: #111;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="bgimg-1">
|
||||
<div class="caption">
|
||||
<span class="border">WTFxUS</span><br>
|
||||
<span class="border">Coming Soon</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p style="padding:5px 15px">Bottom Text</p>
|
||||
|
||||
<p style="padding:5px 15px">
|
||||
<button class="btn home"><a href="https://whytheyfight.com/home">Home</a></button>
|
||||
<button class="btn login"><a href="https://login.whytheyfight.com/realms/WTFxUS/account">Log In</a></button>
|
||||
<button class="btn music"><a href="https://open.spotify.com/playlist/1Eu0OT5741DZAkePkyeFYQ?si=adec1a3ea8b244c3">Music</a></button>
|
||||
<button class="btn blog"><a href="https://blog.whytheyfight.com">Blog</a></button>
|
||||
<button class="btn discord"><a href="https://discord.whytheyfight.com">Discord</a></button>
|
||||
<button class="btn git"><a href="https://git.whytheyfight.com">Git</a></button>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue