47 lines
941 B
CSS
47 lines
941 B
CSS
#main {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
margin-top: 120px;
|
|
}
|
|
|
|
.card-container {
|
|
background-color: var(--card-bg) !important;
|
|
box-shadow: 0 0 10px 0 var(--card-shadow);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.status-icon {
|
|
position: absolute;
|
|
bottom : -8px;
|
|
right: -8px;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background-color: rgb(0, 139, 219);
|
|
border: 2px solid var(--card-bg);
|
|
}
|
|
|
|
.status-icon-green {
|
|
background-color: rgb(15, 211, 80) !important;
|
|
}
|
|
|
|
.image-container {
|
|
position: relative;
|
|
display: table;
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
.friends-scroll {
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
scroll-behavior: smooth;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.friends-scroll a {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.friends-scroll::-webkit-scrollbar { display: none; }
|
|
.friends-scroll { -ms-overflow-style: none; scrollbar-width: none; } |