@font-face {
	font-family: '8-bit Operator+ 8';
	src: url('8bitOperatorPlus.eot?#iefix') format('embedded-opentype'), 
	     url("Assets/8bitOperatorPlus8.ttf") format("truetype"),
	}


:root {
--text-color: #222222;
--surface: #c0c0c0;
--button-highlight: #ffffff;
--button-face: #dfdfdf;
--button-shadow: #808080;
--window-frame: #0a0a0a;
--dialog-blue: #000080;
--dialog-blue-light: #1084d0;
--dialog-gray: #808080;
--dialog-gray-light: #b5b5b5;
--link-blue: #0000ff;
}



/* ---------------------------------------------------------editing 98.css */

.window {
    max-width: 800px;
    max-height: 600px; 
}


textarea {
    resize: none;
    width: 100%;
}

.title-bar-text {
    vertical-align: middle;
}


table > tbody > tr {
    a {
        text-decoration: none;
        color: var(--text-color) ; 
    }
}

table > tbody > tr.highlighted {
  color: #fff;
  background-color: var(--dialog-blue);

    a {
        text-decoration: none;  
        color: white;
    }
}

table.interactive > tbody > tr {
  cursor: default;
}



/*--------------------------------------------------------------------------*/


/*----------------------------------------------------java script editables-*/

.window.active {
    display:inline;
    position: absolute;
}

.window.inactive {
    display:none;
}


/*--------------------------------------------------------------------------*/

* {
    font-family: "8-bit Operator+ 8", monospace;
    font-weight: bold;

    user-select: none;
}


body {
    margin: 0px;
    padding: 0px;

    
    background-image: url(Assets/windowsxpbg.jpg);
    background-size: cover;

    overflow: hidden;

}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.screen {
    margin-top: 1%;
    margin-bottom: 1%;
    /* background-color: red; */

    width: 90%;
    
    justify-self: center;

    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;

}

.icon-row {
    padding-left: 50px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-content: center;

    gap: 10px;

    a {
        text-decoration: none;
    }

}


.icon {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;

    text-align: center;
    font-size:  1em;
    gap: 3px;


    img {
        width: 48px;
        align-self: center;
    }
    
    tag {
        align-self: center;
        color: white;
        font-weight: normal;
        text-shadow: 2px 2px 2px var(--text-color);
    }


}

.cleft {
    display: flex;
    flex-direction: column;
    align-items: stretch;                    
    justify-content: space-around;

    flex: 1;
}

.cmain {
    display: flex;
    flex: 4;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;                    
    justify-content: flex-start;      
    gap: 10px;

}



.about {
   width: 270px;
}

.small {
    max-height: 570px;
    width: 220px;
    overflow: scroll;
}

.dev-buttons {
    legend {
        color: var(--dialog-blue);
    }

    fieldset {
        padding-top: 0px;
        margin-top: 5px;;
    }
    
} 
    #rectangle {
        max-width: 88px;
    }

    #ribbon {
        width: 180px;
    }

    #stamp {
        width: 88px;
    }

    #blingee {
        width: 180px;
    }


    .small::-webkit-scrollbar:horizontal {
        display: none;
    }



    .blog-button {
        justify-self: flex-end;
        align-self: flex-end;

        padding-top: 5px;
    }

    .blog {
        display: flex;
        overflow: scroll;

        max-height: 500px;
        width: 100%;
    }

    .blog::-webkit-scrollbar:horizontal {
        display: none;
    }

    .blog fieldset {
        padding-top: 0px;
        margin-top: 10px;
    }

    .blog-desc {
        display: flex;
        flex-direction: column;
        margin-top: 15px;
        background-color: white;
        box-shadow: inset -1px -1px #fff, inset 1px 1px grey, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;
        padding: 10px;
    }

        ul.view {
            list-style-type: none;
            padding: 0px;

            display: flex;
            flex-direction: column;
            gap: 1em;
        }

    ul legend {
        color: var(--dialog-blue-light)
    }


    #post-title {
        font-size: 1.3rem;
        color: var(--link-blue);
    }

    #post-content {

        p {
            font-weight: normal;
        }

    }

    .blog-post {
        background-color: white;
        max-width: 350px;
    }


#ids {
    max-width: 100px;
}


.cright {
    display: flex;
    flex-direction: column;
    align-items: stretch;                    
    justify-content: flex-start;            
    flex: 1;

    gap: 10px;
}




.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--dialog-gray-light);
    box-shadow: inset -1px -1px #fff, inset 1px 1px grey, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;

    color: var(--window-frame);
    text-align: center;
    padding: 10px;
    margin-left: 5px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/*---------------------------------------------- start bar css from alex meub, with adjustments for my purposes */
.start-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    padding: 2px;
    box-shadow: inset 1px 0 #fff;
    background-color: silver;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #4e4e4e;
    position: fixed;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
}

    .start-bar-content {
        display: flex;
        justify-content: flex-start;
        gap: 2px;
    }

    .start-button {
        vertical-align: middle;
        width: 45px;
        height: 14px;
        padding: 2px 6px 3px;
        background-color: silver;
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;
        border-right: 1px solid gray;
        border-bottom: 1px solid gray;
        box-shadow: inset 1px 1px #dfdfdf,1px 0 #000,0 1px #000,1px 1px #000;
        min-width: 59px;
        margin-right: 6px;
        color: #000

    }

    .made-by,.start-bar-tab {
        vertical-align: middle;
        height: 22px;
        line-height: 22px;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
        color: var(--text-color)
    }

    .start-bar-tab {
        order: 2;
        padding: 0 10px 0 6px;
        border-top: 1px solid #000;
        border-left: 1px solid #000;
        box-shadow: inset 1px 1px grey;
    }

    .made-by {
        order: 8;

        display: flex;
        align-self: flex-end;
        padding: 0 10px;
        border-top: 1px solid gray;
        border-left: 1px solid gray;

        a {
            text-decoration: none;
            color: var(--text-color);
        }
    }





