32 lines
549 B
Plaintext
32 lines
549 B
Plaintext
#main {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
padding-top: 24px;
|
|
}
|
|
|
|
.card-container {
|
|
background-color: #242424;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.3);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.status-icon {
|
|
position: absolute;
|
|
bottom: -6px;
|
|
right: -6px;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 50%;
|
|
background-color: rgb(0,139,219);
|
|
border: 2px solid #1a1a1a;
|
|
}
|
|
|
|
.status-icon-green {
|
|
background-color: #02b757 !important;
|
|
}
|
|
|
|
.image-container {
|
|
position: relative;
|
|
display: table;
|
|
margin: 0 auto;
|
|
} |