source code for simplicialcomplex's tilde.club page
git clone https://tilde.club/~simplicialcomplex/git/source.git
Log | Files | Refs

style.css (1063B) (plain)


      1 @font-face {
      2     font-family: "k.iosevka";
      3     font-style: normal;
      4     font-weight: normal;
      5     src: url(k.iosevka.woff2) format("woff2");
      6     font-display: swap;
      7 }
      8 
      9 @font-face {
     10     font-family: "k.iosevka";
     11     font-style: normal;
     12     font-weight: bold;
     13     src: url(k.iosevka.bold.woff2) format("woff2");
     14     font-display: swap;
     15 }
     16 
     17 @font-face {
     18     font-family: "k.iosevka";
     19     font-style: italic;
     20     font-weight: italic;
     21     src: url(k.iosevka.italic.woff2) format("woff2");
     22     font-display: swap;
     23 }
     24 
     25 html {
     26     height: 100%;
     27     font-family: "k.iosevka", monospace;
     28     font-size: 16px;
     29 }
     30 
     31 div {
     32   text-align: justify;
     33   max-width: 700px;
     34   margin: 50px;
     35   margin-right: auto;
     36   margin-left: auto;
     37 }
     38 
     39 blockquote {
     40     font-style: italic;
     41     font-size: 14px;
     42     display: flex;
     43     justify-content: flex-end;
     44     margin-right: 0;
     45 }
     46 
     47 /*
     48    hack to disable figure numbering, as orgmode can't do this since 2015 at least
     49    https://emacs.stackexchange.com/questions/17619/how-can-i-turn-off-numbering-for-figures
     50 */
     51 span.figure-number {
     52     display: none;
     53 }