50 lines
1.1 KiB
CSS
50 lines
1.1 KiB
CSS
@import 'tailwindcss';
|
|
|
|
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
|
@source '../../storage/framework/views/*.php';
|
|
|
|
@theme {
|
|
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
'Segoe UI Symbol', 'Noto Color Emoji';
|
|
}
|
|
|
|
:root {
|
|
--ui-primary: rgb(255, 0, 0);
|
|
--background-color: rgb(10,10,10);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Trajan Pro Regular';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: local('Trajan Pro Regular'), url('fonts/TrajanPro-Regular.woff') format('woff');
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: 'Trajan Pro Bold';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: local('Trajan Pro Bold'), url('fonts/TrajanPro-Bold.woff') format('woff');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Perpetua Regular';
|
|
src: url('fonts/Perpetua-Regular.woff2');
|
|
font-style: normal;
|
|
}
|
|
|
|
footer {
|
|
width: 100%;
|
|
text-align: center;
|
|
color: grey;
|
|
font-size: medium;
|
|
padding: 2% 0;
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background-color);
|
|
font-family: Perpetua Regular;
|
|
} |