29 lines
524 B
CSS
29 lines
524 B
CSS
@font-face {
|
|
font-family: "cascadia";
|
|
font-style: normal;
|
|
src:
|
|
local("cascadia"),
|
|
url(./static/fonts/cascadia_code/woff2/CascadiaCode.woff2);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "logic";
|
|
font-style: normal;
|
|
src:
|
|
local("logic"), url(./static/fonts/logic/logicmonoscripttrial-medium.otf);
|
|
}
|
|
|
|
:root {
|
|
--color-amphasys: #d27e99;
|
|
--color-secondary-text: #87a987;
|
|
--color-discreet: #9e9b93;
|
|
--color-main: white;
|
|
--size-card-width: 500px;
|
|
}
|
|
|
|
@media screen and (min-width: 1024) {
|
|
:root {
|
|
--size-card-width: 100%;
|
|
}
|
|
}
|