/*
    A   F   M   .   C   X
    C   S   S   F   I   L   E

    main.css - global CSS for all pages across the site
    a work by doc, part of RIPnet
*/

body {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    margin: 0 0;
    color: white;
    background-color: black;
    font-family: 'Courier New', Courier, monospace;
}

#oldie {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 10%;
    text-align: center;
    transform: translateY(-50%);
    visibility: visible;
    transition: opacity 350ms;
    color: white;
}

#oldie a {
    color: white;
}

.copytext {
    position: absolute;
    bottom: 1em;
    left: 1em;
    opacity: 1;
    transition: opacity 450ms;
}

.backy {
    -webkit-text-stroke: 3px black;
    /*
        might not work on everything; haven't tested firefucks but works on edgeium.
        probably will work on vanilla chrome and other chromium derivatives as well.
        this is very hacky and has artifacting and i hate it.
        w3c please implement text outlines thx.
    */
}

.content {
    background-image: url(/amelism.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
}

.text {
    position: absolute;
    width: 50%;
    right: 0;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
}

p {
    margin: 0 0;
}

a {
    color: white;
}


/* footer stuff */

.ripfoot {
    position: absolute;
    right: 1em;
    bottom: 1em;
}

.ripfoot:hover .jointhost {
    opacity: 1;
    bottom: 2em;
}

.ripfoot:hover .siteslist {
    opacity: 1;
    right: 7em;
}

.jointhost,
.siteslist {
    position: absolute;
    opacity: 0;
    transition: opacity 300ms, bottom 300ms, right 300ms;
}

.siteslist {
    bottom: 0.5em;
    right: 5em;
    width: 26em;
    text-align: right;
}

.jointhost {
    bottom: 1em;
    right: 0;
    width: 41em;
    text-align: right;
    line-height: normal;
}

.jhtext,
.siteslinks {
    font-size: 0.8em;
}

.v3-debug {
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    background-color: #40404040;
    width: 100%;
}

.v3-debug details {
    max-height: 50vh;
    overflow-y: auto;
    pointer-events: auto;
    cursor: pointer;
}

#jsevaldiv {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
}

#jsevaldiv p {
    height: calc(100% - 2em);
    overflow-y: auto;
    vertical-align: bottom;
}

#jsevaldiv input {
    width: 98%;
    background-color: black;
    border: none;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: inherit;
}