2018-08-07 12:18:09 +02:00
|
|
|
/* roboto-regular - latin */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: url('../fonts/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
|
|
|
|
src: local('Roboto'), local('Roboto-Regular'),
|
|
|
|
url('../fonts/roboto-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
|
2018-08-07 13:58:47 +02:00
|
|
|
url('../fonts/roboto-v18-latin-regular.woff') format('woff');
|
2018-08-07 12:18:09 +02:00
|
|
|
}
|
|
|
|
|
2018-01-26 13:29:28 +01:00
|
|
|
html, body {
|
|
|
|
overflow: hidden;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2018-08-07 12:18:09 +02:00
|
|
|
body, div, span, h1, h2, h3, h4, h5, h6 {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
cursor: default;
|
2018-01-26 13:29:28 +01:00
|
|
|
}
|
|
|
|
|
2018-08-09 07:21:50 +02:00
|
|
|
pre {
|
|
|
|
-webkit-user-select: text;
|
|
|
|
-moz-user-select: text;
|
|
|
|
-ms-user-select: text;
|
|
|
|
user-select: text;
|
2018-08-09 10:06:16 +02:00
|
|
|
cursor: text;
|
2018-08-09 07:21:50 +02:00
|
|
|
}
|
|
|
|
|
2018-01-26 13:29:28 +01:00
|
|
|
.tile.is-child > .box {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-08-07 12:18:09 +02:00
|
|
|
|
|
|
|
.has-padding {
|
|
|
|
padding: 2rem;
|
2018-09-19 04:22:40 +02:00
|
|
|
position: relative;
|
2018-08-07 12:18:09 +02:00
|
|
|
}
|
2018-09-19 02:51:01 +02:00
|
|
|
|
|
|
|
.clickable-box {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clickable-box label {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2018-09-19 04:22:40 +02:00
|
|
|
|
|
|
|
.is-max-height {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-bottom-floating {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-right-floating {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-padding .is-right-floating {
|
|
|
|
right: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-left-floating {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-padding .is-left-floating {
|
|
|
|
left: 1rem;
|
|
|
|
}
|
2018-12-16 04:27:51 +01:00
|
|
|
|
|
|
|
.fullscreen {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 9999;
|
|
|
|
padding: 20px;
|
|
|
|
background: #fff;
|
|
|
|
}
|