2019-02-17 19:46:24 +01:00
|
|
|
@import "style/load-indicator.scss";
|
|
|
|
|
2019-02-23 20:53:17 +01:00
|
|
|
mat-sidenav-container, mat-sidenav-content, mat-sidenav {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
mat-sidenav {
|
|
|
|
width: 250px;
|
|
|
|
}
|
|
|
|
|
2017-05-10 11:04:06 +02:00
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
}
|
|
|
|
|
2017-07-10 19:53:36 +02:00
|
|
|
.scrollable-menu {
|
|
|
|
height: auto;
|
|
|
|
max-height: 200px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
2017-07-23 10:57:46 +02:00
|
|
|
|
2018-03-29 17:01:24 +02:00
|
|
|
#scrollTopBtn {
|
2018-07-20 22:18:50 +02:00
|
|
|
position: fixed;
|
2018-03-29 17:01:24 +02:00
|
|
|
bottom: 20px;
|
|
|
|
right: 30px;
|
|
|
|
z-index: 99;
|
2018-07-20 22:18:50 +02:00
|
|
|
background: rgba(16, 16, 16, 0.8);
|
2018-03-29 17:01:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#scrollTopBtn:hover {
|
2019-02-17 19:46:24 +01:00
|
|
|
background: #101010;
|
2018-03-29 17:01:24 +02:00
|
|
|
}
|
|
|
|
|
2017-07-23 10:57:46 +02:00
|
|
|
.unprocessed {
|
|
|
|
-webkit-animation-name: color-blink; /* Safari 4.0 - 8.0 */
|
|
|
|
-webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
|
|
|
|
animation-name: color-blink;
|
|
|
|
animation-duration: 4s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unprocessed-child {
|
|
|
|
background-color: orange;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Safari 4.0 - 8.0 */
|
|
|
|
@-webkit-keyframes color-blink {
|
2017-09-03 12:49:59 +02:00
|
|
|
from {
|
|
|
|
background-color: #222222;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: orange;
|
|
|
|
}
|
2017-07-23 10:57:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes color-blink {
|
2017-09-03 12:49:59 +02:00
|
|
|
from {
|
|
|
|
background-color: #222222;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: orange;
|
|
|
|
}
|
2017-07-23 10:57:46 +02:00
|
|
|
}
|