mirror of
https://github.com/TheRealOwenRees/chess-scribe-website.git
synced 2026-07-23 01:46:57 +00:00
144 lines
2.7 KiB
CSS
144 lines
2.7 KiB
CSS
@import "tailwindcss";
|
|
@import "styles/_accordion.css";
|
|
@import "./styles/_input.css";
|
|
@import "./styles/_button.css";
|
|
@import "./styles/_file-input.css";
|
|
@import './styles/_pgn-viewer.css';
|
|
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
/* inter-latin-wght-normal */
|
|
@font-face {
|
|
font-family: 'Inter Variable';
|
|
font-style: normal;
|
|
font-display: swap;
|
|
font-weight: 100 900;
|
|
src: url('@fontsource-variable/inter/files/inter-latin-wght-normal.woff2') format('woff2-variations');
|
|
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
|
|
}
|
|
|
|
@theme {
|
|
--font-sans: "Inter Variable", sans-serif;
|
|
}
|
|
|
|
:root {
|
|
--base-content: #1f2937;
|
|
--neutral-content: #4b5563;
|
|
--accent: #6f884d;
|
|
--bg-base: #e7f3ec;
|
|
--header-bg: rgba(251, 255, 248, 0.84);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
min-height: 100%;
|
|
background-color: var(--bg-base);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: var(--font-sans), sans-serif;
|
|
background-color: var(--bg-base);
|
|
overflow-x: hidden;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.nav-container {
|
|
background-color: var(--header-bg);
|
|
}
|
|
|
|
.nav-title {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.nav-item {
|
|
color: var(--neutral-content);
|
|
|
|
&:hover {
|
|
color: var(--accent);
|
|
text-decoration: underline;
|
|
text-decoration-thickness: 2px;
|
|
text-underline-offset: 8px;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
padding: 1rem 4rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--accent);
|
|
color: var(--bg-base);
|
|
transition: filter 0.3s ease;
|
|
|
|
&:hover {
|
|
filter: brightness(0.85);
|
|
}
|
|
}
|
|
|
|
.example-pdfs {
|
|
max-width: 450px;
|
|
position: relative;
|
|
justify-self: center;
|
|
transform: translate(-10%, 10%);
|
|
img {
|
|
width: 300px;
|
|
box-shadow: -1px 1px 62px -18px black;
|
|
&:nth-child(2) {
|
|
position: absolute;
|
|
top: -10%;
|
|
right: -20%;
|
|
}
|
|
}
|
|
}
|
|
|
|
#loading-bar-spinner.spinner {
|
|
left: 50%;
|
|
margin-left: -20px;
|
|
top: 40%;
|
|
margin-top: -20px;
|
|
position: absolute;
|
|
z-index: 19 !important;
|
|
animation: loading-bar-spinner 400ms linear infinite;
|
|
}
|
|
|
|
#loading-bar-spinner.spinner .spinner-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
border: solid 4px transparent;
|
|
border-top-color: var(--accent) !important;
|
|
border-left-color: var(--neutral-content) !important;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.rise-in {
|
|
animation: rise-in 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
|
|
}
|
|
|
|
@keyframes loading-bar-spinner {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes rise-in {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(12px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|