git commit -am "Pruned git history"
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / Rebuild Signaller (push) Successful in 21s
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / Rebuild Signaller (push) Successful in 21s
This commit is contained in:
commit
158918c0f5
201 changed files with 24558 additions and 0 deletions
92
static/stylesheets/global.css
Normal file
92
static/stylesheets/global.css
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
/* --- FONTS --- */
|
||||
@font-face {
|
||||
font-family: "CozetteVector";
|
||||
src:
|
||||
local("CozetteVector"),
|
||||
url("/fonts/CozetteVector.ttf") format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "NotoSans";
|
||||
src:
|
||||
local("NotoSans"),
|
||||
url("/fonts/NotoSans.ttf") format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "NotoSans-cn";
|
||||
src:
|
||||
local("NotoSans-cn"),
|
||||
url("/fonts/NotoSerifCJKsc-VF.ttf") format("truetype");
|
||||
}
|
||||
|
||||
.cozette * {
|
||||
font-family: "CozetteVector";
|
||||
}
|
||||
|
||||
.cozette-force * {
|
||||
font-family: "CozetteVector" !important;
|
||||
}
|
||||
|
||||
.NotoSans * {
|
||||
font-family: "NotoSans";
|
||||
}
|
||||
|
||||
.NotoSans-cn * {
|
||||
font-family: "NotoSans-cn";
|
||||
}
|
||||
|
||||
/* fuck it */
|
||||
body * {
|
||||
font-family: "CozetteVector";
|
||||
}
|
||||
|
||||
@media print {
|
||||
.hide-on-print {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media not print {
|
||||
.hide-if-not-print {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.include-in-print {
|
||||
&,
|
||||
& * {
|
||||
-webkit-print-color-adjust: exact !important;
|
||||
print-color-adjust: exact !important;
|
||||
}
|
||||
}
|
||||
|
||||
html {
|
||||
background: var(--background1);
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: NotoSans, var(--main-font);
|
||||
color: var(--text1); /* Default to primary text color. */
|
||||
background-color: var(--background);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a,
|
||||
a:link a:visited {
|
||||
color: var(--text1);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
code {
|
||||
font-weight: 400;
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.3;
|
||||
letter-spacing: 0.32px;
|
||||
border-radius: 0.25rem;
|
||||
padding: 0 0.5rem;
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue