website

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

typeface.css (1131B)


      1 :root {
      2   font-family: Inter, sans-serif;
      3   font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
      4 }
      5 @supports (font-variation-settings: normal) {
      6   :root { font-family: InterVariable, sans-serif; }
      7 }
      8 
      9 .noto-sans-mono-<uniquifier> {
     10   font-family: "Noto Sans Mono", monospace;
     11   font-optical-sizing: auto;
     12   font-weight: <weight>;
     13   font-style: normal;
     14   font-variation-settings:
     15     "wdth" 100;
     16 }
     17 
     18 * {
     19     font-family: 'Inter', 'Helvetica', sans-serif;
     20     color: #ddd;
     21     overflow: visible;
     22 }
     23 
     24 
     25 a {
     26     text-decoration-style: dotted;
     27 }
     28 .mastodon {
     29     display: none;
     30 }
     31 
     32 code > span > span > * , code > span > * , code > * {
     33   background: #ffffff00;
     34   font-family: 'Noto Sans Mono';
     35   font-size: 14px;
     36 }
     37 
     38 code {
     39   background: #ffffff55;
     40   font-family: 'Noto Sans Mono';
     41   font-size: 14px;
     42 }
     43 
     44 /* body { */
     45 /*   background-color: #111; */
     46 /*   color: #333; */
     47 /*   line-height: 1.5; */
     48 /*   max-width: 45rem; */
     49 /*   padding: 1rem; */
     50 /*   margin: 0 auto; */
     51 /*   overflow: visible; */
     52 /* } */
     53 
     54 /* .content { */
     55 /*   margin-bottom: 2rem; */
     56 /* } */
     57 
     58 img {
     59     width: 100%;
     60 }
     61 img.rss {
     62     width: 16px;
     63     height: 16px;
     64 }