<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --theme-color: #285685;
    --font-color: rgb(255, 209, 62);

    /*     Color profile for the calculator */
    --body-color: #e7e6e2;
    --c-ca-color: #b0536e;
    --dark-grey: #3d3d3d;
    --tax-color: #5f9ea7;
    --norm-color: #838287;
    --digital-display: #d4e2e3;
    --digital-display-border: #848587;
    --digital-font-color: #030506;
    --button-outline-color: #5f605c;
    --sandy-brown: #ffd13e;

    --shade1: rgba(242, 38, 19, 0.5);
    --shade2: rgba(0, 255, 255, 0.5);

    /*     Font related profile */
    --logo-font: "Jura", sans-serif;
    --digit-font: "cp401regular";
    --digital-display-font: "Orbitron", sans-serif;

    /*     Vision depth shadowing profile */
    --box-vision-shadow: 3px 3px 10px black inset, -3px -3px 6px black inset;
}

.unclickable {
    pointer-events: none;
    filter: grayscale(90%);
}

.calbody {
    margin: auto;
    width: 424px;
    height: 684px;
    background-color: var(--body-color);
    border-radius: 15px;

    border: 5px outset;
}

/* The upper part of the calculator */
.dashboard {
    display: grid;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;

    /*     Border related */
    border: 3px outset;
    border-bottom: none;
    border-radius: 10px;
    padding: 10px;

    /*     box-sizing: border-box; */

    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 3fr;
    background-color: silver;
    height: 220px;
}

#factory {
    font-family: var(--logo-font);
    font-size: 160%;
    font-weight: bold;
    position: relative;
    bottom: 2%;
}

#sunRec &gt; img {
    width: 132px;
}

#desc {
    font-size: 60%;
    text-align: center;
}

.digitBD {
    background-color: var(--digital-display);
    color: var(--digital-font-color);
    width: 364px;
    height: 132px;
    border: 16px solid var(--digital-display-border);
    border-radius: 10px;
    box-shadow: 3px 3px 10px #27363e inset, -3px -3px 6px #27363e inset;

    grid-column: 1/4;

    font-family: var(--digital-display-font);

    /*     Nesting a grid inside the display */
    /*     One div for instant feedback */
    /*     Second/bottom one for memory */
    display: flex;
    flex-direction: column;
    text-align: right;
    /*     justify-content: flex-end;
    justify-items: flex-end;
    align-items: flex-end;
    align-content: flex-end; */
}

#memory {
    padding: 10px;
    height: 75%;
    font-size: 250%;
}
/* End of the upper part of the calculator */

/* Start of the bottom part of the calculator */
.buttons {
    margin: 5px;
    /*     color: white; */

    /*     Alignments */
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;

    /*     Grid */
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(7, 1fr);
    grid-auto-flow: row;
}

.switches {
    grid-column: 1/4;
    grid-row: 1;
    width: 100%;
}

#plus {
    height: 104px;
    grid-row: span 2;
}

/* basic CSS for all button that share the same feature */
/* width */
.bt {
    color: white;
    background-color: #838287;
    font-weight: bold;
    width: 56px;
    font-size: 100%;
    border-radius: 10px/10px;
    box-shadow: 0px 0px 5px black;
}

.functions {
    height: 32px;
}

.big-button {
    height: 44px;
}

.pink {
    background-color: var(--c-ca-color);
}

.dkGrey {
    background: var(--dark-grey);
}

.org {
    color: var(--sandy-brown);
}

/* Individual button style */
.tax {
    background-color: var(--tax-color);
}

.numbers {
    font-family: "cp401regular";
    font-size: 170%;
}

button {
    cursor: pointer;
}

/* Testing playground */

.status-bar {
    visibility: hidden;
    padding: 5px;
    height: 25%;
    font-size: 120%;
    display: grid;
    grid-template-columns: repeat(5, 1fr) repeat(5, 2fr) repeat(5, 1fr);
}
div.st {
    width: 5px;
    height: 15px;
    border-radius: 2px;
    background-color: var(--digital-font-color);
    color: var(--digital-display);
}

.hiding {
    visibility: hidden;
}

footer {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
}

footer &gt; a {
    background-color: var(--theme-color);
    color: var(--font-color);
    font-weight: bold;
    font-family: "Megrim";
    font-size: 110%;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 3px;

    transition: color 0.5s linear, box-shadow 0.5s ease-in;
}

footer &gt; a:hover {
    color: rgba(34, 49, 63, 0.9);
    background-color: white;
    text-shadow: -1px -2px 1px var(--shade1), 2px 2px var(--shade2);
    box-shadow: 0px 5px;
}</pre></body></html>