32
src/assets/admin_layout.css
Normal file
@ -0,0 +1,32 @@
|
||||
@import 'tailwindcss';
|
||||
@plugin 'daisyui' {
|
||||
themes:
|
||||
dark --default,
|
||||
lofi;
|
||||
logs: false;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Geist;
|
||||
src: url('fonts/Geist.ttf') format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: GeistMono;
|
||||
src: url('fonts/GeistMono.ttf') format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Minecraft;
|
||||
src: url('./fonts/MinecraftRegular.otf') format('opentype');
|
||||
}
|
||||
|
||||
@theme {
|
||||
--font-geist: 'Geist', sans-serif;
|
||||
--font-geist-mono: 'GeistMono', monospace;
|
||||
--font-minecraft: 'Minecraft', sans-serif;
|
||||
}
|
||||
|
||||
html {
|
||||
@apply font-geist-mono;
|
||||
}
|
BIN
src/assets/fonts/Geist.ttf
Normal file
BIN
src/assets/fonts/GeistMono.ttf
Normal file
BIN
src/assets/fonts/MinecraftRegular.otf
Normal file
BIN
src/assets/img/background.webp
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
src/assets/img/menu-button.webp
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
src/assets/img/menu-faq.webp
Normal file
After Width: | Height: | Size: 252 B |
BIN
src/assets/img/menu-feedback.webp
Normal file
After Width: | Height: | Size: 128 B |
BIN
src/assets/img/menu-home.webp
Normal file
After Width: | Height: | Size: 180 B |
BIN
src/assets/img/menu-inventory-bar.webp
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
src/assets/img/menu-rules.webp
Normal file
After Width: | Height: | Size: 198 B |
BIN
src/assets/img/menu-selected-frame.webp
Normal file
After Width: | Height: | Size: 322 B |
BIN
src/assets/img/menu-signup.webp
Normal file
After Width: | Height: | Size: 216 B |
BIN
src/assets/img/menu-team.webp
Normal file
After Width: | Height: | Size: 156 B |
BIN
src/assets/img/skeleton.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
src/assets/img/steve.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/img/varo.webp
Normal file
After Width: | Height: | Size: 6.4 KiB |
41
src/assets/website_layout.css
Normal file
@ -0,0 +1,41 @@
|
||||
@import 'tailwindcss';
|
||||
@plugin 'daisyui' {
|
||||
themes:
|
||||
dark --default,
|
||||
lofi;
|
||||
logs: false;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Geist;
|
||||
src: url('fonts/Geist.ttf') format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: GeistMono;
|
||||
src: url('fonts/GeistMono.ttf') format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Minecraft;
|
||||
src: url('./fonts/MinecraftRegular.otf') format('opentype');
|
||||
}
|
||||
|
||||
@theme {
|
||||
--font-geist: 'Geist', sans-serif;
|
||||
--font-geist-mono: 'GeistMono', monospace;
|
||||
--font-minecraft: 'Minecraft', sans-serif;
|
||||
}
|
||||
|
||||
html {
|
||||
@apply font-geist;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
@apply font-minecraft;
|
||||
}
|