Files
old.xevion.github.io/_scss/partials/_employment-status.scss
Brittany Chiang b05b913105 v3
2017-10-10 22:15:49 -07:00

53 lines
909 B
SCSS

.status {
display: flex;
align-items: center;
font-weight: 700;
font-family: 'Inconsolata', monospace;
margin-top: 50px;
&__light {
width: 20px;
height: 20px;
display: flex;
justify-content: center;
align-items: center;
&__ring {
position: absolute;
width: 18px;
height: 18px;
animation: pulsate 2s ease-out;
animation-iteration-count: infinite;
opacity: .0;
border: 3px solid $green;
border-radius: 30px;
}
@keyframes pulsate {
0% {
transform: scale(0.1, 0.1);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: scale(1.2, 1.2);
opacity: 0;
}
}
&__led {
position: absolute;
width: 10px;
height: 10px;
background: $green;
border-radius: 100%;
}
}
&__message {
margin-left: 10px;
}
}