54 lines
996 B
CSS
54 lines
996 B
CSS
@font-face {
|
|
font-family: "Blender Pro Book";
|
|
src: url("fonts/BlenderPro-Bold.woff2") format("woff2"),
|
|
url("fonts/BlenderPro-Bold.woff") format("woff");
|
|
}
|
|
|
|
|
|
#info {
|
|
position: absolute;
|
|
bottom: 50px;
|
|
width: 100%;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
z-index: 1; /* TODO Solve this in HTML */
|
|
font-family: 'Blender Pro Book';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
#mabuligheader {
|
|
position: absolute;
|
|
top: 10px;
|
|
width: 100%;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
z-index: 1; /* TODO Solve this in HTML */
|
|
font-family: 'Blender Pro Book';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
h1 {
|
|
margin: 5px;
|
|
}
|
|
h2 {
|
|
margin: 0px;
|
|
}
|
|
h3 {
|
|
margin: 0px;
|
|
} |