# Copyright 2024-2025 by AccidentallyTheCable <cableninja@cableninja.net>.
# All rights reserved.
# This file is part of CableNinja.net Site,
# and is released under "PROPRIETARY". Please see the LICENSE
# file that should have been included as part of this package.
#### END COPYRIGHT BLOCK ###
* {
    box-sizing: border-box;
}

html {
    overflow-y:scroll;
    overflow-x:hidden;
}

body {
    font-size: 1vw;
    margin: 0;
    padding: 0;
    background-color: darkgray;
}

h1 {
    font-size: 2vw;
    background-color: greenyellow;
    color: black;
    padding-left: 2vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
}

h2 {
    font-size: 1.8vw;
    background-color: gray;
    color: white;
    padding-left: 2vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    margin-left: 2vw;
    border-bottom: 2px solid greenyellow;
}

h3 {
    font-size: 1.6vw;
    background-color: gray;
    color: white;
    padding-left: 2vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    margin-left: 2.2vw;
    border-bottom: 2px solid greenyellow;
}

h4 {
    font-size: 1.4vw;
    background-color: gray;
    color: white;
    padding-left: 2vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    margin-left: 2.4vw;
    border-bottom: 2px solid black;
}

h5 {
    font-size: 1.2vw;
    background-color: gray;
    color: white;
    padding-left: 2vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    margin-left: 2.5vw;
    border-bottom: 2px solid black;
}

h6 {
    font-size: 1vw;
    background-color: gray;
    color: white;
    padding-left: 2vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    margin-left: 2.6vw;
    border-bottom: 2px solid black;
}

p {
    text-indent: 2vw;
    padding-left: 1vw;
    padding-right: 2vw;
    margin-left: 3vw;
    margin-right: 0.5vw;
}

.codewords {
    font-size: 0.8vw;
    font-family: monospace;
    background-color: azure;
    border: 1px solid lightblue;
    border-radius: 10px;
    color: black;
    font-weight: normal;
    text-decoration: none;
    padding: 0.5px;
    padding-left: 5px;
    padding-right: 5px;
}

.notes {
    border-left: 3px solid black;
}

.icon_container {
    width: 12vw;
    background-color: gray;
    float: left;
    box-shadow: 0.8vw 0.8vw 5px 0px rgba(25,25,25,64);
    padding-bottom:8px;
    margin-bottom: -5px;
}

.icon_container .icon {
    width: 68%;
    height: auto;
    float: left;
    padding-left: 2vw;
    padding-top: 1vw;
    padding-right: 1vw;
}

.menu_top {
    width: 87.115vw;
    float: right;
    border-bottom: 3px solid greenyellow;
    box-shadow: 0.5vw 0.5vw 5px 0px rgba(25,25,25,64);
    background-color: gray;
}

.menu_top a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.menu_top_item {
    height: auto;
    width: 15%;
    float: left;
    padding-top: 3vw;
    padding-bottom: 2.4vw;
}

.menu_side {
    width: 12vw;
    float: left;
    margin-top: 5px;
    padding-left: 1vw;
    padding-top: 1vw;
    border-right: 3px solid greenyellow;
    box-shadow: 0.5vw 0.5vw 5px 0px rgba(25,25,25,64);
    background-color: gray;
    height: 100%;
}

.menu_side ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu_side li {
    padding: 8px;
    /* float: left; */
    margin-bottom: 7px;   
}

.menu_side a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.menu_main {
    width: 86vw;
    float: right;
    border-bottom: 3px solid greenyellow;
    box-shadow: 0.5vw 0.5vw 5px 0px rgba(25,25,25,64);
    background-color: gray;
    padding-top: 1vw;
    padding-bottom: 1vw;
    padding-left: 2vw;
    margin-bottom: 1vw;
}

.menu_main a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.main_top_item {
    height: auto;
    width: 15%;
    float: left;
}

.main {
    width: 85vw;
    float: right;
    padding-left: 1vw;
}

.main a {
    text-decoration: none;
    font-weight: bolder;
    color: black;
}

.main a:hover {
    text-decoration: underline;
}

.main a:visited {
    color: green;
}

.main table {
    width: 80vw;
    padding-left: 10vw;
    padding-right: 10vw;
    text-align: center;
}

.main table thead {
    background-color: gray;
    color: white;
}

.main table thead .colident {
    background-color: greenyellow;
    color: black;
    font-weight: bold;
    text-align: left;
}

.main table tbody .rowident {
    font-weight: bold;
    text-align: left;
}

footer {
    float: left;
    text-align: center;
    border-top: 3px solid greenyellow;
    background-color: gray;
    padding-top: 1vw;
    padding-bottom: 1vw;
    font-weight: bolder;
    width: 100%;
/* 
    position: absolute;
    bottom: 0;
    left: 0; */
}

@media only screen and (max-width: 1080px) {
    body {
        font-size: 1.6vw;
    }
    h1 {
        font-size: 3vw;
    }

    h2 {
        font-size: 2.75vw;
    }

    h3 {
        font-size: 2.5vw;
    }

    h4 {
        font-size: 2.25vw;
    }

    h5 {
        font-size: 2vw;
    }

    h6 {
        font-size: 1.5vw;
    }
    p {
        margin-right: 2vw;
    }
    .codewords {
        font-size: 1.2vw;
    }
    .icon_container {
        padding-bottom: 0px;
        margin-bottom: 2px;
    }
    .icon_container .icon {
        width: 77%;
    }
    .menu_top {
        width: 85.55vw;
    }
    .menu_main {
        width: 84vw;
    }
    .menu_side {
        margin-top: -2px;
    }
}