Create basic styling

finchie
Oct 24, 2023, 2:18 PM
ALCCL4VKLMFEGMRASD3TRJ3TUT5PC3S7YAWXVKRTTVK35RZOJ7GAC

Dependencies

  • [2] C73UJ7ZY Create simple `xilem_html` demo

Change contents

  • edit in index.html at line 4
    [2.1221]
    [2.1221]
    <style>
    .hoverable {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px dashed black;
    }
    .hoverable .hover_content {
    display: none;
    visibility: hidden;
    position: absolute;
    left: 125%;
    top: 0%;
    }
    .hoverable:hover .hover_content {
    display: block;
    visibility: visible;
    }
    #command_input {
    margin: auto;
    display: block;
    font-size: 200%;
    text-align: center;
    }
    </style>