/* ===================================
   main.css
   made by barry in notepad!!! dont steal
   started this file in 2008 lol still not done
   =================================== */

body {
    margin: 0;
    padding: 0;
    background-color: #001a33;
    background-image: url('../assets/backgrounds/bubbles-tile.gif');
    background-repeat: repeat;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #d6f9ff;
}

a {
    color: #66ffff;
    text-decoration: none;
}
a:hover {
    color: #ff66cc;
    text-decoration: underline;
}
a:visited {
    color: #cc99ff;
}

#pageWrap {
    width: 950px;
    margin: 0 auto;
    background-color: #003366;
    border-left: 4px double #66ffff;
    border-right: 4px double #66ffff;
    padding: 0 0 10px 0;
}

/* TOP MARQUEE BAR */
.topMarqueeBar {
    background-color: #000;
    color: #00ff00;
    font-family: "Courier New", monospace;
    font-size: 13px;
    padding: 3px 0;
    border-bottom: 2px solid #66ffff;
}

/* HEADER */
#siteHeader {
    background: linear-gradient(#0099cc, #003366);
    padding: 10px;
    text-align: center;
    border-bottom: 3px ridge #66ffff;
}
#siteHeader h1 {
    font-family: "Comic Sans MS", cursive;
    font-size: 42px;
    margin: 0;
    color: #ffff00;
    text-shadow: 2px 2px 0 #ff00cc, -1px -1px 0 #00ffff;
    letter-spacing: 2px;
}
#siteHeader .subtag {
    font-family: "Comic Sans MS", cursive;
    color: #ffffff;
    font-size: 14px;
}

/* NAVIGATION */
#navBar {
    background-color: #000033;
    border-top: 2px solid #66ffff;
    border-bottom: 2px solid #66ffff;
    padding: 6px;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
}
#navBar a {
    margin: 0 4px;
    color: #ffff66;
    padding: 2px 5px;
}
#navBar a:hover {
    background-color: #ff00cc;
    color: #ffffff;
}
#navBar .navSep {
    color: #66ffff;
}

/* MAIN CONTENT LAYOUT (old table-like 2 col feel via floats) */
#contentArea {
    padding: 12px;
}
.leftCol {
    float: left;
    width: 230px;
    margin-right: 10px;
}
.rightCol {
    float: left;
    width: 680px;
}
.clearBoth {
    clear: both;
}

/* GENERIC BOX */
.retroBox {
    background-color: #002244;
    border: 2px solid #66ffff;
    margin-bottom: 12px;
    padding: 0;
}
.retroBoxTitle {
    background: linear-gradient(#ff66cc, #990066);
    color: #ffffff;
    font-weight: bold;
    padding: 4px 8px;
    font-size: 12px;
    font-family: "Comic Sans MS", cursive;
    border-bottom: 2px solid #66ffff;
}
.retroBoxBody {
    padding: 8px;
    line-height: 1.5;
}

/* BLINK / MARQUEE STYLE (css approximation since <blink> is dead) */
.blink {
    animation: blinker 1s linear infinite;
    color: #ffff00;
    font-weight: bold;
}
@keyframes blinker {
    50% { opacity: 0; }
}

marquee, .marqueeFallback {
    background-color: #000;
    color: #00ff99;
    padding: 3px;
    font-family: "Courier New", monospace;
}

.sparkle {
    color: #ffff00;
    text-shadow: 0 0 3px #fff, 0 0 6px #ff00ff;
}

/* BUTTONS 88x31 STYLE */
.buttonRow {
    text-align: center;
}
.webButton {
    display: inline-block;
    width: 88px;
    height: 31px;
    background-color: #333;
    border: 1px outset #999;
    color: #fff;
    font-size: 9px;
    text-align: center;
    line-height: 31px;
    margin: 3px;
    font-family: Arial, sans-serif;
    overflow: hidden;
    vertical-align: middle;
}
.webButton.blue { background: linear-gradient(#3399ff,#003366); }
.webButton.pink { background: linear-gradient(#ff66cc,#990033); }
.webButton.green { background: linear-gradient(#66ff66,#006600); }
.webButton.black { background: #000; border-color: #666; }
.webButton.purple { background: linear-gradient(#cc99ff,#4b0082); }

/* WARNING / CONSTRUCTION BOXES */
.warningBox {
    background-color: #ffff00;
    color: #000;
    border: 3px dashed #ff0000;
    padding: 6px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.constructionBox {
    background-color: #ffcc00;
    background-image: repeating-linear-gradient(45deg, #000 0, #000 10px, #ffcc00 10px, #ffcc00 20px);
    color: #000;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border: 3px solid #000;
    margin-bottom: 10px;
}
.constructionBox span {
    background-color: #ffcc00;
    padding: 2px 6px;
}

/* VISITOR COUNTER */
.counterBox {
    font-family: "Courier New", monospace;
    background-color: #000;
    color: #00ff00;
    border: 2px inset #666;
    padding: 4px 6px;
    display: inline-block;
    letter-spacing: 2px;
}

/* GUESTBOOK / COMMENTS */
.gbEntry, .commentEntry {
    background-color: #001a33;
    border: 1px solid #3399cc;
    margin-bottom: 8px;
    padding: 6px;
}
.gbUser, .commentUser {
    color: #ff66cc;
    font-weight: bold;
}
.gbDate, .commentDate {
    color: #999999;
    font-size: 9px;
}
.gbReply {
    margin-left: 20px;
    background-color: #002b4d;
    border-left: 3px solid #66ffff;
    padding: 4px;
    margin-top: 4px;
}

/* TOP FRIENDS TABLE */
.friendsTable {
    width: 100%;
    border-collapse: collapse;
}
.friendsTable td {
    border: 1px solid #3399cc;
    padding: 6px;
    vertical-align: top;
    width: 25%;
}
.friendAvatar {
    width: 70px;
    height: 70px;
    background: repeating-linear-gradient(45deg,#3399cc,#3399cc 5px,#001a33 5px,#001a33 10px);
    border: 2px inset #66ffff;
    margin: 0 auto 4px auto;
    text-align: center;
    line-height: 70px;
    font-size: 22px;
}

/* CHAT WINDOW */
.chatWindow {
    background-color: #000;
    border: 2px inset #999;
    font-family: "Courier New", monospace;
    padding: 6px;
    height: 260px;
    overflow-y: scroll;
    color: #ccffcc;
    font-size: 11px;
}
.chatLine .chatName { color: #66ffff; font-weight: bold; }
.chatLine .chatTime { color: #666; font-size: 9px; }

/* FOOTER */
#siteFooter {
    text-align: center;
    padding: 12px;
    border-top: 3px ridge #66ffff;
    font-size: 10px;
    color: #99ccff;
    background-color: #000022;
}

/* FORM ELEMENTS OLD SCHOOL */
input, textarea, select {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    background-color: #ccffff;
    border: 2px inset #666;
}
button, input[type="submit"] {
    background: linear-gradient(#ff99cc, #cc3399);
    border: 2px outset #ff99cc;
    color: #fff;
    font-weight: bold;
    padding: 3px 8px;
    cursor: pointer;
}

hr.stars {
    border: none;
    height: 14px;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, #ffff00 10px, #ffff00 12px);
}

.tinyNote {
    font-size: 9px;
    color: #6699cc;
}

table.oldTable {
    border-collapse: collapse;
    width: 100%;
}
table.oldTable td, table.oldTable th {
    border: 1px solid #3399cc;
    padding: 5px;
}
table.oldTable th {
    background-color: #003366;
    color: #ffff66;
}
