
/*
    Changes the look of (specific) websites viewed in Firefox.
    Save or add to %appdata%\Mozilla\Firefox\Profiles\***\chrome\userContent.css
    Set toolkit.legacyUserProfileCustomizations.stylesheets enabled or true
    Help with writing CSS: https://www.w3schools.com/css/default.asp
*/

/*  all: initial !important  */

a:link {
    text-decoration: underline !important;
}

a:visited {
    text-decoration: underline !important;
}

a:hover {
    color: green !important;
    /*background-color: antiquewhite !important;*/
    text-decoration: underline !important;
}

/*code {
    color: lawngreen !important;
    background-color: darkolivegreen !important;
}*/

@-moz-document domain(hackaday.com), domain(www.bbc.com) {

    header {
        color: deeppink !important;
    }

    h1 {
        color: deeppink !important;
    }

    h2 {
        color: deeppink !important;
    }

    h3 {
        color: deeppink !important;
    }

    h4 {
        color: deeppink !important;
    }

    h5 {
        color: deeppink !important;
    }

    h6 {
        color: deeppink !important;
    }

    * {
        color: midnightblue !important;
        background-color: whitesmoke !important;
    }

    a:link {
        color: blue !important;
        background-color: antiquewhite !important;
    }

    a:visited {
        color: purple !important;
        background-color: antiquewhite !important;
    }
}

@-moz-document domain(www.youtube.com), (youtube.com) {
    a:link {
        color: blue !important;
        background-color: antiquewhite !important;
    }

    a:visited {
        color: purple !important;
        background-color: antiquewhite !important;
    }
    /*test*/
    body {
        color: midnightblue !important;
        background-color: pink !important;
    }
}
