MediaWiki:Minerva.less/fonts.less

From Brighter Shores Wiki
Jump to navigation Jump to search
/* ==================
        variables
   ================== */

@system-font-stack: system-ui, -apple-system, Roboto, Helvetica, sans-serif;

/* ==================
          body
   ================== */

body {
    font-family: @system-font-stack;
    
    // default is too small
    @media all and (max-width: 320px) {
        font-size: .9em;
    }
}

// bit more space compared to default 1.65
.content {
    line-height: 1.7;
}

/* ==================
        headers
   ================== */

.pre-content h1, // page title
.content h1,
.content h2 {
    font-weight: bold;
}