2022-02-23 22:16:12 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title > The Show< / title >
< meta name = "author" content = "Sarimoko by Travis Reames" >
< meta name = "description" content = "Watch & listen on various platforms!" >
< meta name = "keywords" content = "sarimoko, sari, moko, sariboto, boto, show" >
2022-02-23 22:29:23 +00:00
< style >
:root {
2022-02-23 22:16:12 +00:00
--container-bg-color: #333;
2022-02-23 22:29:23 +00:00
--left-bg-color: rgba(43, 43, 43, 0.8);
--left-button-hover-color: rgba(92, 92, 92, 0.3);
--right-bg-color: rgba(223, 39, 39, 0.7);
--right-button-hover-color: rgba(161, 11, 11, 0.3);
2022-02-23 22:16:12 +00:00
--hover-width: 75%;
--other-width: 25%;
--speed: 1000ms;
}
html, body {
padding:0;
margin:0;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
width: 100%;
height: 100%;
overflow-x: hidden;
}
h1 {
font-size: 4rem;
color: #fff;
position: absolute;
left: 50%;
top: 20%;
transform: translateX(-50%);
white-space: nowrap;
}
.button {
display: block;
position: absolute;
left: 50%;
top: 40%;
height: 2.5rem;
padding-top: 1.3rem;
width: 15rem;
text-align: center;
color: #fff;
border: #fff solid 0.2rem;
font-size: 1rem;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
transform: translateX(-50%);
}
.split.left .button:hover {
background-color: var(--left-button-hover-color);
border-color: var(--left-button-hover-color);
}
.split.right .button:hover {
background-color: var(--right-button-hover-color);
border-color: var(--right-button-hover-color);
}
.container {
position: relative;
width: 100%;
height: 100%;
background: var(--container-bg-color);
}
.split {
position: absolute;
width: 50%;
height: 100%;
overflow: hidden;
}
.split.left {
left:0;
2022-02-23 22:30:32 +00:00
background: url('https://image.ibb.co/m3ZbRb/programmer.png') center center no-repeat;
2022-02-23 22:16:12 +00:00
background-size: cover;
}
.split.left:before {
position:absolute;
content: "";
width: 100%;
height: 100%;
background: var(--left-bg-color);
}
2022-02-23 23:14:30 +00:00
.split.right {
2022-02-23 22:16:12 +00:00
right:0;
2022-02-23 23:14:30 +00:00
background: url('https://media.discordapp.net/attachments/868008876711223356/946183030169542736/267026003_4852385821459217_4392462086019516918_n.jpg') center center no-repeat;
/* background: url('https://image.ibb.co/m56Czw/designer.jpg') center center no-repeat; */
2022-02-23 22:16:12 +00:00
background-size: cover;
}
.split.right:before {
position:absolute;
content: "";
width: 100%;
height: 100%;
background: var(--right-bg-color);
}
.split.left, .split.right, .split.right:before, .split.left:before {
transition: var(--speed) all ease-in-out;
}
.hover-left .left {
width: var(--hover-width);
}
.hover-left .right {
width: var(--other-width);
}
.hover-left .right:before {
z-index: 2;
}
.hover-right .right {
width: var(--hover-width);
}
.hover-right .left {
width: var(--other-width);
}
.hover-right .left:before {
z-index: 2;
}
@media(max-width: 800px) {
h1 {
font-size: 2rem;
}
.button {
width: 12rem;
}
}
@media(max-height: 700px) {
.button {
top: 70%;
}
}
< / style >
< / head >
< body >
< div class = "container" >
< div class = "split left" >
< h1 > Twitch< / h1 >
< a href = "https://twitch.tv/sarimoko" class = "button" > Browse Live Stream< / a >
< / div >
< div class = "split right" >
< h1 > YouTube< / h1 >
< a href = "https://youtube.com/c/sarimoko" class = "button" > View Video Playlist< / a >
< / div >
< / div >
< script >
const left = document.querySelector(".left");
const right = document.querySelector(".right");
const container = document.querySelector(".container");
left.addEventListener("mouseenter", () => {
container.classList.add("hover-left");
});
left.addEventListener("mouseleave", () => {
container.classList.remove("hover-left");
});
right.addEventListener("mouseenter", () => {
container.classList.add("hover-right");
});
right.addEventListener("mouseleave", () => {
container.classList.remove("hover-right");
});
< / script >
< / body >
< / html >