epic_explorer/src/styles.css
2019-08-08 19:51:21 +05:30

52 lines
1.1 KiB
CSS

.background_loading {
-webkit-animation-duration: 1s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: placeHolderShimmer;
-webkit-animation-timing-function: linear;
background: #f6f7f9;
background-image: linear-gradient(
to right,
#f6f7f9 0%,
#e9ebee 20%,
#f6f7f9 40%,
#f6f7f9 100%
);
background-repeat: no-repeat;
background-size: 800px 104px;
position: relative;
}
.para_load {
height: 20px;
}
.graph_load {
height: 384px;
}
.graph.background_loading {
height: 252px;
background-size: cover;
background-image: linear-gradient(
to right,
#f6f7f9 0%,
#ffffff 20%,
#f6f7f9 40%,
#f6f7f9 100%
);
}
@keyframes placeHolderShimmer {
0% {
background-position: -468px 0;
}
100% {
background-position: 468px 0;
}
}
.diff_span{
width: 42px;
overflow: hidden;
/* max-width: 52px; */
display: inline-block;
vertical-align: middle;
text-overflow: ellipsis;
}