113 lines
1.8 KiB
CSS
113 lines
1.8 KiB
CSS
@font-face {
|
|
font-family: 'Signifier';
|
|
src: url('/fonts/signifier/Signifier-Regular.ttf');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Apercu Mono';
|
|
src: url('/fonts/apercu-mono/ApercuMono-Regular.ttf') format('truetype');
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Apercu Mono';
|
|
src: url('/fonts/apercu-mono/ApercuMono-Bold.ttf') format('truetype');
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
pre,
|
|
code,
|
|
pre code,
|
|
.astro-code,
|
|
code[class*='language-'] {
|
|
font-family: 'Apercu Mono', monospace !important;
|
|
font-size: 0.95em;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: "Signifier", serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
header,
|
|
footer {
|
|
padding: 20px;
|
|
}
|
|
|
|
header {
|
|
font-size: 1.5em;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex: 1;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.graph-background {
|
|
background-image:
|
|
linear-gradient(to right, rgba(200, 200, 200, 0.4) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(200, 200, 200, 0.4) 1px, transparent 1px);
|
|
background-size: 3vw 3vw;
|
|
}
|
|
|
|
.terminal-cursor {
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 1em;
|
|
background-color: white;
|
|
border: 1px solid black;
|
|
vertical-align: text-top;
|
|
animation: blink 1s step-start infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
50% {
|
|
background-color: transparent;
|
|
border-color: transparent;
|
|
}
|
|
}
|
|
|
|
.terminal-container {
|
|
font-family: "Courier New", monospace;
|
|
}
|
|
|
|
pre {
|
|
font-feature-settings:
|
|
"liga" 0,
|
|
"calt" 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
header {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
footer {
|
|
font-size: 0.9em;
|
|
}
|
|
}
|