Skip to content
Snippets Groups Projects
style.css 1.93 KiB
Newer Older
/*
Justere utseende til nettsiden
*/

.standard {
    font-family: monospace;
    margin: 0;
}

.box {
    font-family: monospace;
    background-color: orange;
    color: white;
    border-color: orangered;
    border-style: solid;
    border-width: 0px;
    border-radius: 20px;
    width: 0;
    height: 0;
    margin-top: 15vh;
    margin-left: 30vw;
    position: fixed;
    z-index: 999;
    overflow-x: hidden;
    text-align: center;
}

.box1 {
    display: flex;
    flex-grow: 7;
    flex-direction: row;
}

.box2 {
    display: flex;
    flex-grow: 3;
    flex-direction: row;
}

.box3 {
    display: flex;
    flex-grow: 2;
    flex-direction: row;
}

.button {
    font-family: monospace;
    font-weight: bolder;
    background-color: orangered;
    color: white;
    border: 0;
    cursor: pointer;
    padding-left: 2vw;
    padding-right: 2vw;
    margin-left: 2vw;
    margin-right: 2vw;
    margin-top: 0.5vh;
    margin-bottom: 0.5vh;
}

.onClick {
    font-family: monospace;
    font-size: larger;
    background-color: orangered;
    color: white;
    text-align: center;
    border-color: white;
    border-style: dotted;
    border-width: 5px;
    border-radius: 10px;
.sidebar {
    font-family: monospace;
    background-color: orangered;
    color: white;
    position: fixed;
    z-index: 999;
    width: 0vw;
    height: 80vh;
    overflow-x: hidden;
    transition: 0.5s;

.sidebarButton {
    font-family: monospace;
    background-color: black;
    text-align: center;
    border-color: white;
    border-style: dotted;
    border-width: 5px;
    border-radius: 10px;
    margin-top: 1vh;
    margin-right: 2vw;
    cursor: pointer;
}

.tutorial {
    margin: 5px;
    padding: 5px;
    color: white;
    height: 26vh;
    width: 39vw;
    text-align: center;
}