default.css 1.03 KB
Newer Older
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
/* 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";
}

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

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

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

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

canvas {
    cursor: none;
}