52 lines
962 B
CSS
52 lines
962 B
CSS
#main {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
margin-top: 120px;
|
|
}
|
|
|
|
.status-icon {
|
|
position: absolute;
|
|
bottom : -8px;
|
|
right: -8px;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background-color: rgb(0, 139, 219);
|
|
border: 2px solid rgb(30,30,30);
|
|
}
|
|
|
|
.status-icon-green {
|
|
background-color: rgb(15, 211, 80) !important;
|
|
}
|
|
|
|
.image-container {
|
|
position: relative;
|
|
display: table;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.messagealerts {
|
|
background: rgba(255, 0, 0, 0.2);
|
|
color: rgb(226, 226, 226);
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.dark-container {
|
|
background-color: rgb(30,30,30) !important;
|
|
box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
|
|
border-radius: 5px;
|
|
min-height: 100px;
|
|
overflow-x: scroll;
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.dark-container::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.image-container-friend {
|
|
position: relative;
|
|
display: table;
|
|
margin: 0 auto;
|
|
} |