74 lines
1.4 KiB
CSS
74 lines
1.4 KiB
CSS
@font-face {
|
|
font-family: "SF Pro Medium";
|
|
src: url("fonts/SF-Pro.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "SF Pro Medium";
|
|
src: url("fonts/SF-Pro-Italic.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Blender Pro Bold";
|
|
src: url("fonts/BlenderPro-Bold.woff") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
#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: 'SF Pro Medium';
|
|
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 Bold';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
h1 {
|
|
margin: 5px;
|
|
/* font-weight: normal !important; */
|
|
}
|
|
h2 {
|
|
margin: 0px;
|
|
font-weight: normal !important;
|
|
}
|
|
h4 {
|
|
margin: 0px;
|
|
}
|