angular/projects/ng-devtools/src/lib/devtools.component.css

46 lines
650 B
CSS
Raw Normal View History

:host,
.devtools-wrapper {
2020-01-27 18:40:18 +00:00
width: 100%;
height: 100%;
display: block;
}
2020-01-27 18:40:18 +00:00
.noselect {
user-select: none;
}
.initializing {
margin: auto;
width: 125px;
height: 100%;
display: flex;
align-items: center;
}
.initializing .loading {
background: url('./images/angular.svg');
border-radius: 50%;
width: 125px;
height: 125px;
float: left;
text-align: center;
animation: pulse 1s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
}
100% {
box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
}
}
.text-message {
font-weight: 500;
font-size: 14px;
padding: 5px;
text-align: center;
}