expalert/frontend/static/css/panic.css
2023-12-04 16:09:40 +01:00

47 lines
858 B
CSS

.panicContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.panic {
background: red;
border: none;
color: white;
padding: 25px;
text-align: center;
text-decoration: none;
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
cursor: pointer;
border-radius: 50%;
width: 250px;
height: 250px;
}
.panic.active {
animation: flash 1s linear infinite;
}
@keyframes flash {
0% {opacity: 1;}
50% {opacity: .1;}
100% {opacity: 1;}
}
#panicTable {
border-top: 50px;
border-top-style: solid;
border-top-color: transparent;
}
#panicTable tr > td:first-child {
text-align: right;
padding-right: 10px;
font-weight: bold;
}