1
0
forked from noxious/client

Updated styling, little cleaning up

This commit is contained in:
2024-06-09 22:15:10 +02:00
parent 34032e5c2f
commit d7e4da307a
6 changed files with 60 additions and 48 deletions

View File

@ -1,8 +1,6 @@
// Colors
$white: #fff;
$black: #000;
$purple: #4741e6;
$lilac: #7b76ff;
$light-blue: #00c2ff;
$red: #d50000;
$dark-red: #b30000;
@ -12,4 +10,5 @@ $dark-gray: #313638;
$light-gray: #d3d3d3;
$blue-gray: #778899;
$cyan: #368f8b;
$dark-cyan: #376362;
$green: #09ad19;

View File

@ -1,11 +1,6 @@
@import '@/assets/scss/_variables';
// Fonts
@font-face {
font-family: GentiumPlus;
src: url('@/assets/fonts/Gentium_plus.ttf');
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
@ -20,8 +15,8 @@ body {
user-select: none; /* Standard syntax */
}
h1, h2, h3, h4, h5, h6 {
font-family: GentiumPlus, serif;
h1, h2, h3, h4, h5, h6, button, a {
font-family: "Poppins";
color: $white;
}
@ -30,8 +25,6 @@ p, span, li, label {
color: $white;
}
button, a {
font-family: "Poppins";
color: $white;
font-weight: 500;
text-shadow: 0 4px 6px rgba($black, 0.25);
}