mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-16 05:03:05 +05:30
af0ea2f341
Signed-off-by: Alexander J <odyssey346@disroot.org>
89 lines
1.6 KiB
CSS
89 lines
1.6 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Quicksand:wght@500&display=swap');
|
|
|
|
body {
|
|
background-color: #101010;
|
|
color: white;
|
|
font-family: 'Comfortaa', sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
color: #ce1818;
|
|
text-decoration: none;
|
|
}
|
|
a.hover {
|
|
color: rgb(233, 110, 110);
|
|
}
|
|
a.visited {
|
|
color: #5f1919;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
.card {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.card > div {
|
|
word-wrap: break-word;
|
|
margin: 50px;
|
|
padding: 20px;
|
|
border-radius: 25px;
|
|
background-color: #252525;
|
|
box-shadow: 0 0 5px 5px #252525;
|
|
}
|
|
|
|
.button {
|
|
background-color: #00755e; /* Green */
|
|
border: none;
|
|
color: white;
|
|
padding: 16px 32px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
margin: 4px 2px;
|
|
border-radius: 16px;
|
|
transition-duration: 0.4s;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #00d4aa;
|
|
color: black;
|
|
transform: translateY(-0.25em);
|
|
}
|
|
.button:active {
|
|
background-color: #4beacb;
|
|
}
|
|
|
|
.ResponsiveImage {
|
|
max-inline-size: 50%;
|
|
block-size: auto;
|
|
aspect-ratio: 2/1;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.pointyfinger {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.gameserversCardTitle, .centreofattention {
|
|
text-align: center;
|
|
}
|
|
|
|
#wordwrappedlongthingaaa {
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
.card {
|
|
flex-direction: column;
|
|
}
|
|
.ResponsiveImage {
|
|
max-inline-size: 100%;
|
|
}
|
|
} |