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
m
m
Line 26: Line 26:
  
 
/* 'Sitka Small' = My TTF */
 
/* 'Sitka Small' = My TTF */
body, .mw-body h1.firstHeading {
+
body, mw-body {
 
     font-family: 'Press Start 2P', 'Sitka Small';
 
     font-family: 'Press Start 2P', 'Sitka Small';
     font-size: small;
+
}
 +
 
 +
.mw-body h1.firstHeading {
 +
    font-family: 'Press Start 2P', 'Sitka Small';
 +
}
 +
 
 +
h1 {
 +
     font-family: inherit !important;
 
}
 
}
  

Revision as of 17:12, 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 {
    font-family: 'Press Start 2P', 'Sitka Small';
}

.mw-body h1.firstHeading {
    font-family: 'Press Start 2P', 'Sitka Small';
}

h1 {
    font-family: inherit !important;
}

a:hover {
    color: var(--LBLUE) !important;
}

a:visited {
    color: var(--LCYAN) !important;
}

a:link {
    color: var(--LCYAN) !important;
}



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