34 lines
567 B
CSS
34 lines
567 B
CSS
@font-face {
|
|
font-family: "Azeret Mono";
|
|
src: url("./AzeretMono-VariableFont_wght.ttf");
|
|
}
|
|
|
|
.affiche-cafe {
|
|
font-family: "Azeret Mono", monospace;
|
|
line-height: 1.3;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.affiche-cafe > * {
|
|
margin: 0;
|
|
margin-bottom: 0.9rem;
|
|
}
|
|
|
|
.affiche-cafe > *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
@keyframes cursor-blink {
|
|
0% {opacity: 0;}
|
|
65% {opacity: 1;}
|
|
100% {opacity: 1;}
|
|
}
|
|
|
|
.affiche-cafe .cursor {
|
|
animation: cursor-blink 1.5s steps(1) infinite;
|
|
}
|
|
|
|
.affiche-cafe h1 {
|
|
font-weight: normal;
|
|
font-size: 2em;
|
|
} |