feat(landing-page): add welcome bonus and game carousel
This commit is contained in:
parent
b2f4d9d0d8
commit
8e986727ec
5 changed files with 208 additions and 12 deletions
|
@ -1,14 +1,37 @@
|
|||
@import 'tailwindcss';
|
||||
|
||||
@theme {
|
||||
--color-deep-blue: #0f212e;
|
||||
--color-deep-blue-light: #1a2c38;
|
||||
--color-deep-blue-contrast: #1b2c3b;
|
||||
--color-light-blue: #1475e1;
|
||||
--color-deep-blue: #0a1219;
|
||||
--color-deep-blue-light: #121e27;
|
||||
--color-deep-blue-contrast: #1a2835;
|
||||
|
||||
--color-emerald: #10b981;
|
||||
--color-emerald-dark: #059669;
|
||||
--color-emerald-light: #34d399;
|
||||
|
||||
--color-text-primary: #ffffff;
|
||||
--color-text-secondary: #94a3b8;
|
||||
--color-text-tertiary: #64748b;
|
||||
|
||||
--color-accent-yellow: #fbbf24;
|
||||
--color-accent-red: #ef4444;
|
||||
--color-accent-purple: #8b5cf6;
|
||||
}
|
||||
|
||||
body {
|
||||
@apply bg-deep-blue text-gray-100;
|
||||
@apply bg-deep-blue text-text-primary;
|
||||
}
|
||||
|
||||
button, a {
|
||||
@apply cursor-pointer active:scale-95 transition-all duration-200;
|
||||
}
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Roboto, 'Helvetica Neue', sans-serif;
|
||||
}
|
||||
|
||||
.mat-mdc-dialog-container {
|
||||
|
|
Reference in a new issue