103 lines
1.8 KiB
SCSS
103 lines
1.8 KiB
SCSS
|
@import "mat_bs";
|
||
|
@import "style";
|
||
|
.error_card {
|
||
|
color: $error;
|
||
|
padding: 1rem;
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
.bg-primary {
|
||
|
background-color: $primary !important;
|
||
|
}
|
||
|
|
||
|
.spinner {
|
||
|
-webkit-animation: rotation 1.35s linear infinite;
|
||
|
animation: rotation 1.35s linear infinite;
|
||
|
stroke: $primary;
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes rotation {
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
100% {
|
||
|
-webkit-transform: rotate(270deg);
|
||
|
transform: rotate(270deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes rotation {
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
100% {
|
||
|
-webkit-transform: rotate(270deg);
|
||
|
transform: rotate(270deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.circle {
|
||
|
stroke-dasharray: 180;
|
||
|
stroke-dashoffset: 0;
|
||
|
-webkit-transform-origin: center;
|
||
|
-ms-transform-origin: center;
|
||
|
transform-origin: center;
|
||
|
-webkit-animation: turn 1.35s ease-in-out infinite;
|
||
|
animation: turn 1.35s ease-in-out infinite;
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes turn {
|
||
|
0% {
|
||
|
stroke-dashoffset: 180;
|
||
|
}
|
||
|
50% {
|
||
|
stroke-dashoffset: 45;
|
||
|
-webkit-transform: rotate(135deg);
|
||
|
transform: rotate(135deg);
|
||
|
}
|
||
|
100% {
|
||
|
stroke-dashoffset: 180;
|
||
|
-webkit-transform: rotate(450deg);
|
||
|
transform: rotate(450deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes turn {
|
||
|
0% {
|
||
|
stroke-dashoffset: 180;
|
||
|
}
|
||
|
50% {
|
||
|
stroke-dashoffset: 45;
|
||
|
-webkit-transform: rotate(135deg);
|
||
|
transform: rotate(135deg);
|
||
|
}
|
||
|
100% {
|
||
|
stroke-dashoffset: 180;
|
||
|
-webkit-transform: rotate(450deg);
|
||
|
transform: rotate(450deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
/* height: 60px; */
|
||
|
margin-bottom: 8px;
|
||
|
padding: 8px 16px;
|
||
|
padding-bottom: 0;
|
||
|
}
|
||
|
|
||
|
table {
|
||
|
word-wrap: break-word;
|
||
|
table-layout: fixed;
|
||
|
}
|
||
|
|
||
|
table td {
|
||
|
vertical-align: inherit !important;
|
||
|
width: auto;
|
||
|
}
|
||
|
|
||
|
.col.form-group {
|
||
|
padding-left: 0 !important;
|
||
|
margin-left: 5px !important;
|
||
|
}
|