mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
34 lines
499 B
CSS
34 lines
499 B
CSS
/*
|
|
* Once upon a time...
|
|
*/
|
|
|
|
:root {
|
|
--birthDate: 1428px;
|
|
--deathDate: 1476px;
|
|
}
|
|
|
|
body {
|
|
background: #000;
|
|
}
|
|
|
|
/* ...there was a guy named Vlad */
|
|
|
|
#dracula {
|
|
opacity: 0;
|
|
display: none;
|
|
visibility: hidden;
|
|
font-family: "Transylvania";
|
|
height: calc(var(--deathDate) - var(--birthDate));
|
|
}
|
|
|
|
.cape {
|
|
background: #ff0000 !important;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Transylvania";
|
|
src: url("/location/Transylvania.woff2") format("woff2");
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|