/**
 * Core Master v3.0
 * Copyright (C) 2019 Wojciech Smolko.
 * GNU General Public License version 3 or later; see LICENSE.txt
 *
================================================================================
    Graph Page Background Toggle "legacy"
============================================================================= */

.graphPage {
    background-color: #fff;
    color: #333 !important;
    background-size: 1.5em  1.5em;
    background-image: linear-gradient(
            to right, 
            rgba(204, 0, 0, .1) 1px,
            transparent 1px
        ), 
        linear-gradient(
            to bottom, 
            rgba(0, 0, 204, .2) 1px,
            transparent 1px
        );
    background-repeat: repeat;
    /*background-position: 0% 0%;*/
}

.graphPage > * {
    background-color: transparent !important;
    color: #404040 !important;
}

.graphPage > nav {
    background-color: rgba(0, 0, 0, .175) !important;
}

.graphPage > nav a {
    color: #404040 !important;
}

.graphPage > nav a:hover,
.graphPage > nav a:active,
.graphPage > nav a.active {
    background-color: #ccc !important;
    color: #404040 !important;
}