2023-02-10 02:43:44 +00:00
|
|
|
/* common variables */
|
|
|
|
:root{
|
|
|
|
--quacs-yellow: #f5b53f;
|
|
|
|
--quacs-midtone: #f5cc81;
|
|
|
|
--quacs-white: #f5e3c2;
|
2023-04-05 22:17:40 +00:00
|
|
|
--quacs-whiter: #fAf1e0;
|
2023-02-10 02:43:44 +00:00
|
|
|
--quacs-whitest: #fdf8f0;
|
|
|
|
|
|
|
|
--deepest-purple: #12121a;
|
|
|
|
--deeper-purple: #191823;
|
|
|
|
--deep-purple: #201f2c;
|
|
|
|
--mid-dark-purple: #2c2b3d;
|
|
|
|
--mid-purple: #37364d;
|
|
|
|
--mid-light-purple: #494766;
|
|
|
|
--light-purple: #5c5980;
|
|
|
|
|
2023-04-05 21:17:23 +00:00
|
|
|
--white: #ffffff;
|
2023-02-10 02:43:44 +00:00
|
|
|
--pink: #f53faa;
|
|
|
|
--red: #f53f6a;
|
|
|
|
--green: #3ff57f;
|
|
|
|
--blue: #3f6ef5;
|
|
|
|
|
|
|
|
font-size: calc(1vmin + 12px);
|
|
|
|
}
|
|
|
|
|
2023-02-11 23:07:49 +00:00
|
|
|
* {
|
|
|
|
font-family: "proxima-nova";
|
|
|
|
/* font-family: "IBM Plex Sans"; */
|
|
|
|
}
|
|
|
|
|
2023-02-11 03:03:41 +00:00
|
|
|
body {
|
2023-03-31 20:23:56 +00:00
|
|
|
background-color: var(--background-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
overflow-x:hidden;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.9rem; /* default font-size. works well for small-ish thing */
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection{
|
2023-03-31 20:23:56 +00:00
|
|
|
background: var(--selection-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden{
|
|
|
|
visibility: hidden;
|
|
|
|
margin: 0;
|
|
|
|
height: 0vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TEXT */
|
|
|
|
h1, h1 a {
|
2023-03-31 20:23:56 +00:00
|
|
|
color: var(--h-text-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
font-family: "proxima-nova";
|
|
|
|
font-weight: 900;
|
|
|
|
margin-top: 0vmin;
|
|
|
|
margin-bottom: 0vmin;
|
|
|
|
padding-bottom: 0;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
font-size: 2.25rem;
|
|
|
|
}
|
|
|
|
|
2023-02-12 05:32:31 +00:00
|
|
|
h2 {
|
2023-02-10 02:43:44 +00:00
|
|
|
font-size: 1.4rem;
|
|
|
|
margin-top: 1vmin;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2023-03-31 20:23:56 +00:00
|
|
|
color: var(--p-text-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
font-family: "proxima-nova";
|
|
|
|
font-size: 1.2rem;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2023-02-11 03:03:41 +00:00
|
|
|
p a, p svg {
|
2023-03-31 20:23:56 +00:00
|
|
|
color: var(--link-text-color);
|
|
|
|
fill: var(--link-text-color);
|
2023-02-11 03:03:41 +00:00
|
|
|
max-height: 4vmin;
|
|
|
|
width: 4vmin;
|
2023-02-10 02:43:44 +00:00
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
p svg {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
p a:hover, p a:hover svg {
|
2023-03-31 20:23:56 +00:00
|
|
|
color: var(--link-hover-color);
|
|
|
|
fill: var(--link-hover-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* HEADER */
|
2023-02-11 03:03:41 +00:00
|
|
|
#qlog-header {
|
2023-03-31 20:23:56 +00:00
|
|
|
border-bottom: 0.2vmin solid var(--header-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
width: 100%;
|
|
|
|
min-height: 5.25vmin;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
position: relative;
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#qlog-wordmark svg {
|
|
|
|
height: 4.5vmin;
|
|
|
|
aspect-ratio: 454/100;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
position: relative;
|
|
|
|
margin: 1vmin;
|
|
|
|
margin-bottom: 0.75vmin;
|
|
|
|
margin-left: 2vmin;
|
|
|
|
}
|
|
|
|
|
2023-02-10 20:50:06 +00:00
|
|
|
.header-search {
|
2023-02-10 02:43:44 +00:00
|
|
|
position: relative;
|
|
|
|
right: 1vmin;
|
|
|
|
width: 12rem;
|
|
|
|
height: 1.8rem;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
padding-left: 0.9rem;
|
|
|
|
padding-right: 0.9rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"] {
|
2023-03-31 20:23:56 +00:00
|
|
|
background: var(--input-background-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
border-radius: 100vw;
|
|
|
|
border: none;
|
|
|
|
outline:none;
|
|
|
|
font-family: "proxima-nova";
|
2023-03-31 20:23:56 +00:00
|
|
|
color: var(--input-text-color);
|
|
|
|
caret-color: var(--input-text-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"]::selection{
|
2023-03-31 20:23:56 +00:00
|
|
|
background: var(--input-selection-color);
|
2023-02-10 02:43:44 +00:00
|
|
|
}
|
|
|
|
|
2023-03-31 20:23:56 +00:00
|
|
|
/* fonts */
|
2023-02-10 02:43:44 +00:00
|
|
|
|
|
|
|
@font-face{
|
|
|
|
font-family: "rivalsans";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/rivalsans-regular.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
}
|
|
|
|
@font-face{
|
|
|
|
font-family: "rivalsans";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/rivalsans-bold.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
@font-face{
|
|
|
|
font-family: "rivalsans";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/rivalsans-extrabold.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
font-weight: 800;
|
|
|
|
}
|
|
|
|
@font-face{
|
|
|
|
font-family: "rivalsans";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/rivalsans-black.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "proxima-nova";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/Proxima-Nova-Black.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "proxima-nova";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/Proxima-Nova-Bold.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "proxima-nova";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/Proxima-Nova-Extrabold.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
font-weight: 800;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "proxima-nova";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/Proxima-Nova-Thin.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
font-weight: 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "proxima-nova";
|
2023-02-10 05:00:59 +00:00
|
|
|
src: url("../fonts/Proxima-Nova-Regular.otf");
|
2023-02-10 02:43:44 +00:00
|
|
|
}
|