74 lines
1.1 KiB
SCSS
74 lines
1.1 KiB
SCSS
@import "style/load-indicator.scss";
|
|
|
|
mat-sidenav-container, mat-sidenav-content, mat-sidenav {
|
|
height: 100%;
|
|
}
|
|
|
|
mat-sidenav {
|
|
width: 250px;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
display: inline;
|
|
}
|
|
|
|
.content {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.scrollable-menu {
|
|
height: auto;
|
|
max-height: 200px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
#scrollTopBtn {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 30px;
|
|
z-index: 99;
|
|
background: rgba(16, 16, 16, 0.8);
|
|
}
|
|
|
|
#scrollTopBtn:hover {
|
|
background: #101010;
|
|
}
|
|
|
|
.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 {
|
|
from {
|
|
background-color: #222222;
|
|
}
|
|
to {
|
|
background-color: orange;
|
|
}
|
|
}
|
|
|
|
@keyframes color-blink {
|
|
from {
|
|
background-color: #222222;
|
|
}
|
|
to {
|
|
background-color: orange;
|
|
}
|
|
}
|