101 lines
1.5 KiB
CSS
101 lines
1.5 KiB
CSS
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
display: inline;
|
|
}
|
|
|
|
.sidebar-toggle-btn {
|
|
background: linear-gradient(-90deg, #e8e5e5, #ffffff);
|
|
filter: drop-shadow(2px 1px 1px #666);
|
|
margin-left: -12px;
|
|
z-index: 500;
|
|
}
|
|
|
|
.sidebar-toggle-btn mat-icon {
|
|
color: #666666;
|
|
}
|
|
|
|
.content {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
width: 300px;
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
width: calc(100% - 400px);
|
|
}
|
|
|
|
.scrollable-menu {
|
|
height: auto;
|
|
max-height: 200px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.version-label {
|
|
position: absolute;
|
|
top: 27px;
|
|
left: 115px;
|
|
font-size: 12px;
|
|
color: #bebebe;
|
|
}
|
|
|
|
#scrollTopBtn {
|
|
position: fixed; /* Fixed/sticky position */
|
|
bottom: 20px;
|
|
right: 30px;
|
|
z-index: 99;
|
|
border: none;
|
|
outline: none;
|
|
background-color: #101010;
|
|
color: white;
|
|
font-weight: bolder;
|
|
cursor: pointer;
|
|
padding: 7px 25px 10px 25px;
|
|
border-radius: 20px;
|
|
font-size: 22px;
|
|
}
|
|
|
|
#scrollTopBtn:hover {
|
|
background-color: rgba(25, 142, 25, 1);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|