68 lines
No EOL
1.2 KiB
CSS
68 lines
No EOL
1.2 KiB
CSS
.left-section, .right-section {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.right-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.content-wrapper {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 24px;
|
|
}
|
|
|
|
.left-section, .right-section {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.status-wrapper {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.status-wrapper img {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
border: 2px solid var(--accent-color);
|
|
box-shadow: 0 0 12px var(--accent-color)80;
|
|
display: block;
|
|
}
|
|
|
|
.left-section .status-wrapper .status-online,
|
|
.left-section .status-wrapper .status-idle,
|
|
.left-section .status-wrapper .status-dnd,
|
|
.left-section .status-wrapper .status-offline {
|
|
padding-left: 0;
|
|
margin-right: 187px;
|
|
}
|
|
|
|
#main-card {
|
|
height: 432px;
|
|
transform: translatex(0px) translatey(0px);
|
|
}
|
|
|
|
#home-tab .right-section {
|
|
min-height: 347px;
|
|
transform: translatex(7px) translatey(-6px);
|
|
}
|
|
|
|
@media (min-width: 769px) {
|
|
#home-tab .right-section {
|
|
width: 476px;
|
|
}
|
|
}
|
|
|
|
#home-tab .left-section {
|
|
transform: translatex(34px) translatey(0px);
|
|
} |