/* style001.css */

body
{
    background-color: rgb(50, 50, 50);
}

.nameOfElement
{
    display: inline;
}

.nameOfElement:hover:after
{
    position: absolute;
    left: 5px;
    bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 98;
    background-color: rgba(0, 0, 0, 0.8);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    border-radius: 0px;
    font-size: 15px;
    color: rgb(255, 255, 255);
    content: attr(gloss);
}

/* marker icon, which appears when a person hovers their mouse arrow over a tile */
.nameOfElement:hover:before
{
    position: absolute;
    left: 50%;
    top: 0px;
    border-style: solid;
    border-width: 0 5px 5px 5px transparent;
    border-color: rgb(255, 255, 255);
    content: "";
    z-index: 100;
}

/* ---- */

/* Dedicated to God the Father */
/* All Rights Reserved Christopher Andrew Topalian Copyright 2000-2025 */
/* https://github.com/ChristopherTopalian */
/* https://github.com/ChristopherAndrewTopalian */
/* https://sites.google.com/view/CollegeOfScripting */

