opt-cc/static/src/app/app.component.scss

81 lines
1.2 KiB
SCSS
Raw Normal View History

@import "style/load-indicator.scss";
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;
}
2019-02-04 13:18:28 +01:00
.navbar-brand mat-icon {
color: #dadada;
width: 135px;
height: 40px;
stroke: #dadada;
}
2017-10-14 18:43:00 +02:00
.version-label {
2018-07-05 21:04:43 +02:00
position: absolute;
2018-07-03 21:51:55 +02:00
top: 27px;
2018-07-05 21:04:43 +02:00
left: 115px;
2017-10-14 18:43:00 +02:00
font-size: 12px;
2018-07-03 21:51:55 +02:00
color: #bebebe;
2017-10-14 18:43:00 +02:00
}
2018-03-29 17:01:24 +02:00
#scrollTopBtn {
position: fixed;
2018-03-29 17:01:24 +02:00
bottom: 20px;
right: 30px;
z-index: 99;
background: rgba(16, 16, 16, 0.8);
2018-03-29 17:01:24 +02:00
}
#scrollTopBtn:hover {
background: #101010;
2018-03-29 17:01:24 +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;
}
}
@keyframes color-blink {
2017-09-03 12:49:59 +02:00
from {
background-color: #222222;
}
to {
background-color: orange;
}
}