HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Velosophe/carparkcannonball.cc/wwwroot/source/styles/base/_base.page.scss
/*----------------------------------------------------------------------------*\
    #BASE PAGE
\*----------------------------------------------------------------------------*/

/**
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from a variables map. The `font-size` is calculated to exist
 *    in %, the `line-height` is calculated to exist unitlessly.
 * 2. `Font-size` is set to `small` size (without mq) for browsers that don't
 *    cut the mustard (aka `no-ctm`).
 * 3. Ensure the page always fills at least the entire height of the viewport.*
 * 4. Prevent horizontal scrollbar when using layout grids!
 */

/* 4 */

body,
html { overflow-x: hidden; }

html {
    @include base-text-sizes(); /* 1, 2 */
    min-height: 100%; /* 3 */
    background-color: $background-color;
    color: $color-black;
    font-family: $primary-font;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.js-block {
    cursor: pointer;
}