mirror of
https://github.com/G2-Games/website.git
synced 2025-04-19 18:02:54 -05:00
118 lines
1.8 KiB
CSS
Executable file
118 lines
1.8 KiB
CSS
Executable file
@import url('https://g2games.dev/assets/fonts/fonts.css');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background-color: #111114;
|
|
color: mintcream;
|
|
position: relative;
|
|
height: 100vh;
|
|
font-family: "Maple Mono";
|
|
font-size: 16pt;
|
|
width: 100vw;
|
|
padding: 5px;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
from {
|
|
opacity: 0;
|
|
scale: 90%;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
scale: 100%;
|
|
}
|
|
}
|
|
|
|
main {
|
|
animation-name: fade-in;
|
|
animation-duration: 1s;
|
|
animation-timing-function: cubic-bezier(.37,1.08,.83,1.12);
|
|
|
|
width: 400px;
|
|
max-width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
left: 50%;
|
|
top: 50%;
|
|
translate: -50% -50%;
|
|
padding: 30px;
|
|
|
|
gap: 25px;
|
|
|
|
background-color: #26262d;
|
|
box-shadow: 0px 5px 20px black;
|
|
|
|
border-radius: 10px;
|
|
}
|
|
|
|
img {
|
|
width: 90px;
|
|
height: 90px;
|
|
border-radius: 50%;
|
|
margin: auto;
|
|
box-shadow: 4px 5px 2px black;
|
|
}
|
|
|
|
h1 {
|
|
height: fit-content;
|
|
margin: auto;
|
|
font-family: "Montserrat";
|
|
font-weight: 400;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
background: mediumaquamarine;
|
|
height: 2px;
|
|
}
|
|
|
|
p {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
a {
|
|
color: #88eaac;
|
|
}
|
|
|
|
a:visited {
|
|
color: #e8ea7a;
|
|
}
|
|
|
|
a:hover {
|
|
color: #7bc7ea;
|
|
}
|
|
|
|
li {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.left_corner {
|
|
height: 20px;
|
|
width: 20px;
|
|
border-left: 2px solid mediumaquamarine;
|
|
border-top: 2px solid mediumaquamarine;
|
|
margin-bottom: -40px;
|
|
}
|
|
|
|
.right_corner {
|
|
height: 20px;
|
|
width: 20px;
|
|
border-right: 2px solid gold;
|
|
border-bottom: 2px solid gold;
|
|
margin-top: -40px;
|
|
margin-left: auto;
|
|
}
|
|
|
|
header, div {
|
|
padding: 10px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|