forked from ProjectSegfault/website
I prefer rounded corners.
Signed-off-by: Odyssey346 <odyssey346@disroot.org>
This commit is contained in:
parent
b03e25b001
commit
6b6ede9b94
@ -1,79 +1,84 @@
|
|||||||
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Quicksand:wght@500&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Quicksand:wght@500&display=swap');
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #101010;
|
background-color: #101010;
|
||||||
color: white;
|
color: white;
|
||||||
font-family: 'Comfortaa', sans-serif;
|
font-family: 'Comfortaa', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #ce1818;
|
color: #ce1818;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
a.hover {
|
a.hover {
|
||||||
color: rgb(233, 110, 110);
|
color: rgb(233, 110, 110);
|
||||||
}
|
}
|
||||||
a.visited {
|
a.visited {
|
||||||
color: #5f1919;
|
color: #5f1919;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card > div {
|
.card > div {
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
margin: 50px;
|
margin: 50px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
background-color: #252525;
|
background-color: #252525;
|
||||||
box-shadow: 0 0 5px 5px #252525;
|
box-shadow: 0 0 5px 5px #252525;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
background-color: #3db686;
|
background-color: #00755e; /* Green */
|
||||||
border: none;
|
border: none;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 1% 1%;
|
padding: 16px 32px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin: 4px 2px;
|
margin: 4px 2px;
|
||||||
transition-duration: 0.4s;
|
border-radius: 16px;
|
||||||
cursor: pointer;
|
transition-duration: 0.4s;
|
||||||
}
|
cursor: pointer;
|
||||||
.button:hover {
|
}
|
||||||
background-color: #101010;
|
|
||||||
color: #3db686;
|
.button:hover {
|
||||||
border: #3db686;
|
background-color: #00d4aa;
|
||||||
}
|
color: black;
|
||||||
|
transform: translateY(-0.25em);
|
||||||
.ResponsiveImage {
|
}
|
||||||
max-inline-size: 50%;
|
.button:active {
|
||||||
block-size: auto;
|
background-color: #4beacb;
|
||||||
aspect-ratio: 2/1;
|
}
|
||||||
object-fit: contain;
|
|
||||||
}
|
.ResponsiveImage {
|
||||||
|
max-inline-size: 50%;
|
||||||
.pointyfinger {
|
block-size: auto;
|
||||||
cursor: pointer;
|
aspect-ratio: 2/1;
|
||||||
}
|
object-fit: contain;
|
||||||
|
}
|
||||||
.gameserversCardTitle, .centreofattention {
|
|
||||||
text-align: center;
|
.pointyfinger {
|
||||||
}
|
cursor: pointer;
|
||||||
|
}
|
||||||
#wordwrappedlongthingaaa {
|
|
||||||
word-wrap: break-word;
|
.gameserversCardTitle, .centreofattention {
|
||||||
}
|
text-align: center;
|
||||||
|
}
|
||||||
@media (max-width: 800px) {
|
|
||||||
.card {
|
#wordwrappedlongthingaaa {
|
||||||
flex-direction: column;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
.ResponsiveImage {
|
|
||||||
max-inline-size: 100%;
|
@media (max-width: 800px) {
|
||||||
}
|
.card {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.ResponsiveImage {
|
||||||
|
max-inline-size: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import ProjectSegfaultLogo from "../assets/images/projectsegfault1.png";
|
import ProjectSegfaultLogo from "../assets/images/projectsegfault1.png";
|
||||||
</script>
|
</script>
|
||||||
@ -16,9 +15,7 @@
|
|||||||
<a href="/minecraft" class="button">Minecraft</a>
|
<a href="/minecraft" class="button">Minecraft</a>
|
||||||
|
|
||||||
<a href="/contact" class="button">Contact</a>
|
<a href="/contact" class="button">Contact</a>
|
||||||
|
</section>
|
||||||
<a href="/faq" class="button">FAQ</a>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
@ -31,38 +28,13 @@
|
|||||||
}
|
}
|
||||||
#ProjectSegfaultLogoHeader {
|
#ProjectSegfaultLogoHeader {
|
||||||
/*Here goes anything to do with the header logo*/
|
/*Here goes anything to do with the header logo*/
|
||||||
border-radius: 5px;
|
border-radius: 16px;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
.center {
|
.center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
}
|
}
|
||||||
.button {
|
</style>
|
||||||
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: 10px;
|
|
||||||
transition-duration: 0.4s;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.button:hover {
|
|
||||||
background-color: #00d4aa;
|
|
||||||
color: black;
|
|
||||||
border-radius: 2px;
|
|
||||||
transform: translateY(-0.25em);
|
|
||||||
box-shadow: 0 0.5em 0.5em -0.4em #00755e;
|
|
||||||
}
|
|
||||||
.button:active {
|
|
||||||
background-color: #4beacb;
|
|
||||||
box-shadow: 0 0.51em 0.51em 0.4em #00b591;
|
|
||||||
}
|
|
||||||
</style>
|
|
Loading…
Reference in New Issue
Block a user