mirror of
https://github.com/G2-Games/website.git
synced 2025-04-19 09:52:53 -05:00
52 lines
872 B
CSS
52 lines
872 B
CSS
body {
|
|
background-image: url("poke_2.png");
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
background-position: center;
|
|
background-size: cover;
|
|
z-index: 0;
|
|
}
|
|
.div1 {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 20;
|
|
}
|
|
.img1 {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
object-fit: cover;
|
|
}
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#navbar {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
max-width: 400px;
|
|
max-height: 40px;
|
|
z-index: 50;
|
|
background-color: rgba(122, 122, 122, 0.5);
|
|
border-radius: 0px 15px 0px 0px;
|
|
font-family: "Noto Sans";
|
|
font-size: 1.875em;
|
|
}
|
|
#text {
|
|
opacity: 1;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
@media (max-width: 479px) {
|
|
#navbar {
|
|
font-size: 1.2em;
|
|
}
|
|
}
|