You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
894 B
CSS

*{
/* Prevent any object from being highlighted upon touch event*/
tap-highlight-color: transparent;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-moz-tap-highlight-color: rgba(0, 0, 0, 0);
outline: none;
}
@font-face {
font-family: "ApfelGrotezk-Regular";
src: url("../../ApfelGrotezk-Regular.ttf");
}
.display-none {
display:none;
}
.display-flex {
display:flex;
}
.display-block{
display:block;
}
body{
font-size: 1.5em;
background-color: black;
color: white;
font-family: "ApfelGrotezk-Regular";
text-align: center;
}
.overlay{
z-index: 2;
position: fixed;
}
#code-input{
left: 1em;
bottom: 1em;
border: none;
position: fixed;
background: transparent;
}
#input{
visibility: hidden;
}
a{
text-decoration: none;
color: white
}
a:hover{
text-decoration: none;
color: blue;
cursor: pointer;
}