2017-09-26 18:13:00 +02:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
|
2017-09-30 13:48:40 +02:00
|
|
|
body {
|
|
|
|
font-family: Roboto, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
|
|
|
|
}
|
|
|
|
|
2017-09-26 18:13:00 +02:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
cursor: inherit;
|
|
|
|
text-decoration: inherit;
|
|
|
|
}
|
|
|
|
|
2017-09-27 16:24:39 +02:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
2017-09-26 18:13:00 +02:00
|
|
|
}
|
2017-09-27 18:42:11 +02:00
|
|
|
|
2017-09-28 19:13:29 +02:00
|
|
|
button {
|
|
|
|
font-weight: bold !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-form label {
|
|
|
|
font-size: 12px;
|
2017-09-29 13:54:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.subscribe-remote-check .mat-checkbox-label {
|
|
|
|
line-height: 15px !important;
|
|
|
|
}
|
|
|
|
|
2017-10-02 15:18:28 +02:00
|
|
|
.mat-expansion-panel-body {
|
|
|
|
font-size: 9.5px !important;
|
|
|
|
padding: 0 9px 0px !important;
|
2017-10-16 17:16:14 +02:00
|
|
|
margin: 0 2px 0 2px !important;
|
2017-10-02 15:18:28 +02:00
|
|
|
background-color: white;
|
|
|
|
border: 3px solid #e0e0e0;
|
|
|
|
line-height: 13px;
|
|
|
|
padding: 4px 7px 3px 7px !important;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mat-expansion-indicator {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mat-expansion-indicator::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mat-expansion-panel-spacing {
|
|
|
|
margin: 3px 0 !important;
|
|
|
|
}
|
2018-03-01 11:25:25 +01:00
|
|
|
|
2018-03-02 11:36:12 +01:00
|
|
|
#recorder-preview video {
|
2018-03-01 11:25:25 +01:00
|
|
|
width: 500px;
|
|
|
|
height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Rotating animation*/
|
|
|
|
|
|
|
|
@-webkit-keyframes rotating
|
|
|
|
/* Safari and Chrome */
|
|
|
|
|
|
|
|
{
|
|
|
|
from {
|
|
|
|
-ms-transform: rotate(360deg);
|
|
|
|
-moz-transform: rotate(360deg);
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
-o-transform: rotate(360deg);
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotating {
|
|
|
|
from {
|
|
|
|
-ms-transform: rotate(360deg);
|
|
|
|
-moz-transform: rotate(360deg);
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
-o-transform: rotate(360deg);
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotating {
|
|
|
|
-webkit-animation: rotating 1s linear infinite;
|
|
|
|
-moz-animation: rotating 1s linear infinite;
|
|
|
|
-ms-animation: rotating 1s linear infinite;
|
|
|
|
-o-animation: rotating 1s linear infinite;
|
|
|
|
animation: rotating 1s linear infinite;
|
|
|
|
cursor: default !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotating:hover {
|
|
|
|
color: inherit !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*End rotating animation*/
|