default.css 2.42 KB
Newer Older
Alexander Bazo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
/* colors: https://lospec.com/palette-list/spf-80 */

@font-face {
    font-family: "ShareTech";
    src: url("../fonts/ShareTechMono/ShareTechMono-Regular.ttf");
}

.hidden {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: "ShareTech";
    background: rgb(0, 0, 0);
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    cursor: none;
}

#task {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 98%;
    margin: 0;
    padding: 1%;
    background-color: rgba(30, 30, 30, 0.5);
}

#task .task-description {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 2em;
    color: #FFF;
}

#task .task-source {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: right;
    font-size: 1em;
    color: #FFF;
}


#startScreen {
    width: 60vw;
    height: 100vh;
    margin: 0 auto;
    background: rgb(0, 0, 0);
}

#startTitle {
    width: 60vw;
    height: 10vh;
    margin: 0 auto;
    padding-top: 10vh;
    text-align: center;
    line-height: 10vh;
    font-size: 5vh;
    color: #FFF;
    text-shadow: 5px 5px 5px #611894;
}

.startButton {
    display: block;
    width: 20vw;
    height: 5vh;
    margin: 0 auto;
    border-radius: 5px;
    border-width: 5px;
    border-style: solid;
    background-color: #3f0d76;
    border-color: #d2ccf3;
    text-align: center;
    line-height: 5vh;
    font-size: 2.5vh;
    color: #FFF;
}

.startButton:hover {
    cursor: pointer;
    background-color: #d2ccf3;
    border-color: #3f0d76;
    color: #3f0d76;
}

#startMenu {
    width: 30vw;
    margin: 5vh auto;
    color: #FFF;
}

#startMenu h1 {
    text-align: center;
    padding-bottom: 1vh;
    border-style: solid;
    border-width: 0 0 1px 0;
    text-shadow: 3px 3px 3px #611894;
}

#startMenu .option {
    display: block;
    margin-top: 2vh;
}

#startMenu input[type="checkbox"] {
    display: none;
}

#startMenu input[type="checkbox"]+label::before {
    width: 3vh;
    height: 3vh;
    border-radius: 5px;
    border: 0.25vh solid #a2bcc5;
    background-color: #fff;
    display: block;
    content: "";
    float: left;
    margin-right: 5px;
    color: #3f0d76;
}

#startMenu input[type="checkbox"]+label:hover {
    cursor: pointer;
}

#startMenu label {
    margin-left: 0.5vw;
    line-height: 3.5vh;
    font-size: 2.5vh;
}

#startMenu input[type="checkbox"]:checked+label::before {
    content: "\2A2F";
    text-align: center;
    line-height: 3vh;
    font-size: 3vh;
}