v50 Steam/Premium information for editors
  • v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
  • Use this page to report any issues related to the migration.
This notice may be cached—the current version can be found here.

Difference between revisions of "User:Alef/ vector.css"

From Dwarf Fortress Wiki
Jump to navigation Jump to search
 
Line 28: Line 28:
 
body, .mw-body h1.firstHeading {
 
body, .mw-body h1.firstHeading {
 
     font-family: 'Press Start 2P', 'Sitka Small';
 
     font-family: 'Press Start 2P', 'Sitka Small';
     font-size: xx-small;
+
     font-size: small;
 
}
 
}
  

Revision as of 16:35, 21 February 2020

@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
/* 'Press Start 2P' = similar to game */

/* my colors.txt */
:root {
    --BLACK: rgba(0,0,0,1);
    --BLUE: rgba(45,90,160,1);
    --GREEN: rgba(80,135,20,1);
    --CYAN: rgba(25,140,140,1);
    --RED: rgba(160,20,10,1);
    --MAGENTA: rgba(135,60,130,1);
    --BROWN: rgba(150,75,55,1);
    --LGRAY: rgba(178,175,172,1);
    --DGRAY: rgba(116,110,113,1);
    --LBLUE: rgba(105,135,225,1);
    --LGREEN: rgba(125,185,55,1);
    --LCYAN: rgba(60,205,190,1);
    --LRED: rgba(220,50,20,1);
    --LMAGENTA: rgba(190,110,185,1);
    --YELLOW: rgba(230,170,30,1);
    --WHITE: rgba(232,227,232,1);

    --background-color: var(--BLACK);
    --color: var(--LGRAY);
}

/* 'Sitka Small' = My TTF */
body, .mw-body h1.firstHeading {
    font-family: 'Press Start 2P', 'Sitka Small';
    font-size: small;
}

* {
    background: var(--background-color) !important;
    color: var(--color) !important;
}