/*
  FILE: protocol6.css
  DESC: System Interface Styles
  AUTH: The Administrator
*/

body {
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 18px;
    position: relative;
}

body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.2;
}

h1 {
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 5px 0;
    color: #00FF00;
    text-shadow: 0 0 7px rgba(0, 255, 0, 0.5);
}

h1 > .laindex-typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
    border-right: 3px solid #00FF00;
    animation: 
        typing-and-deleting 10s steps(7, end) infinite,
        blink-cursor 1s step-end infinite;
}

@keyframes typing-and-deleting {
    0%, 90%, 100% {
        width: 0;
    }
    20%, 70% {
        width: 7.2ch;
    }
}

@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: #00FF00; }
}

a {
    text-decoration: none;
    color: #FFB800;
    text-shadow: 0 0 7px rgba(255, 184, 0, 0.4);
}

a:hover {
    background-color: #FFB800;
    color: #000000;
}

hr {
    border: 0;
    height: 1px;
    background-color: #333333;
}

input[type="text"] {
    background-color: #1a1a1a;
    border: 1px solid #444444;
    color: #E0E0E0;
    font-family: 'VT323', 'Courier New', monospace;
    padding: 2px;
}

input[type="text"]:focus {
    outline: none;
    border-color: #666666;
    animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {
  from, to { box-shadow: 2px 0 0 0px transparent; }
  50% { box-shadow: 2px 0 0 0px #E0E0E0; }
}

input[type="submit"] {
    background-color: #333333;
    border: 1px solid #666666;
    color: #FFB800;
    font-family: 'VT323', 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 0 0 7px rgba(255, 184, 0, 0.4);
}

input[type="submit"]:hover {
    background-color: #FFB800;
    color: #000000;
    cursor: pointer;
}

.visitor-count {
    font-size: 20px;
    letter-spacing: 4px;
    color: #00FF00;
    text-shadow: 0 0 7px rgba(0, 255, 0, 0.5);
}

.site-list {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.site-list tr {
    transition: background-color 0.2s ease-in-out;
}

.site-list tr:hover {
    background-color: #222222 !important;
}