default.css 2.06 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* 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";
}

18 19 20 21
canvas {
    cursor: none;
}

22 23 24 25 26 27 28
#startScreen {
    width: 100vw;
    height: 100vh;
    background: rgb(0, 0, 0);
}

#startTitle {
29
    width: 60vw;
30
    height: 10vh;
31
    margin: 0 auto;
32
    padding-top: 10vh;
33 34 35 36 37 38 39 40 41 42
    text-align: center;
    line-height: 10vh;
    font-size: 10vh;
    color: #FFF;
    text-shadow: 5px 5px 5px #611894;
}

#startButton {
    width: 30vw;
    height: 10vh;
43
    margin: 10vh auto;
44 45 46
    border-radius: 5px;
    border-width: 5px;
    border-style: solid;
47 48
    background-color: #3f0d76;
    border-color: #d2ccf3;
49 50 51 52 53 54 55
    text-align: center;
    line-height: 10vh;
    font-size: 5vh;
    color: #FFF;
}

#startButton:hover {
56
    cursor: pointer;
57 58 59
    background-color: #d2ccf3;
    border-color: #3f0d76;
    color: #3f0d76;
60 61
}

62 63 64 65 66 67 68 69 70 71
#versionInfo {
  position: absolute;
  bottom: 5vh;
  right: 5vh;
  text-align: right;
  font-size: 3vh;
  color: #fff;
  text-shadow: 5px 5px 5px #611894;
}

72 73
#startMenu {
    width: 30vw;
74
    margin: 5vh auto;
75 76 77 78 79
    color: #FFF;
}

#startMenu h1 {
    text-align: center;
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
    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;
123
}