49 lines
932 B
CSS
Executable File
49 lines
932 B
CSS
Executable File
.hero-image{
|
|
background-image: url("/img/mc/1920x1080/junglePvp.png");
|
|
height: 250px;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
position: relative;
|
|
}
|
|
|
|
.hero-text{
|
|
text-align: center;
|
|
bottom: 40%;
|
|
left: 50%;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.hero-text-list{
|
|
color: lightgray;
|
|
}
|
|
|
|
.discord-link {
|
|
position: absolute;
|
|
background-image: url("discord_icon.png");
|
|
background-size: cover;
|
|
border: none;
|
|
outline: none;
|
|
width: 36px;
|
|
height: 36px;
|
|
background-color: inherit;
|
|
font-family: inherit;
|
|
-ms-transform: translateY(200%);
|
|
transform: translateY(200%);
|
|
}
|
|
|
|
.reddit-link {
|
|
position: absolute;
|
|
background-image: url("img/redditLogo.png");
|
|
background-size: cover;
|
|
border: none;
|
|
outline: none;
|
|
width: 36px;
|
|
height: 36px;
|
|
background-color: inherit;
|
|
font-family: inherit;
|
|
-ms-transform: translateY(200%);
|
|
transform: translateY(200%);
|
|
left: 40px;
|
|
}
|