1
0
forked from noxious/client

WIP login screen

This commit is contained in:
2024-10-04 20:52:21 +02:00
parent f51cb839bf
commit 8c3a488e7d
7 changed files with 109 additions and 44 deletions

View File

@ -3,7 +3,7 @@
@tailwind utilities;
// Fonts
@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');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&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');
//Globals
@ -26,14 +26,14 @@ h5,
h6,
button,
a {
@apply font-titles text-white font-medium m-0;
@apply font-default text-gray-500 font-medium m-0;
}
p,
span,
li,
label {
@apply font-default text-white;
@apply font-default text-gray-500;
}
button,
@ -87,20 +87,20 @@ button {
@apply text-center;
&.btn-cyan {
@apply bg-cyan/50 border border-solid border-white/25 rounded drop-shadow-20;
@apply bg-cyan drop-shadow-20 text-white;
&.active,
&:hover {
@apply bg-cyan;
@apply bg-cyan/50;
}
}
&.btn-bordeaux {
@apply bg-bordeaux/50 border border-solid border-white/25 rounded drop-shadow-20;
@apply bg-bordeaux drop-shadow-20;
&.active,
&:hover {
@apply bg-bordeaux;
@apply bg-bordeaux/50;
}
}