This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
chatless/frontend/src/styles.scss
2021-06-01 15:57:32 +02:00

97 lines
1.7 KiB
SCSS

body {
background-color: #E5E5E5;
}
.container-fluid {
padding-left: 5vh;
padding-right: 5vh;
padding-top: 1vh;
overflow: hidden;
}
.user-list-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
height: calc(100vh - 100px);
padding: 0;
overflow-y: auto;
.user-card {
display: flex;
padding: 10px;
cursor: pointer;
&.active {
background-color: #E5E5E5;
}
.username {
font-size: 20px;
font-weight: 500;
margin-bottom: 0;
display: flex;
margin-left: 5px;
justify-content: center;
align-items: center;
}
}
.user-card:not(:last-child) {
border-bottom: 1px solid #BBBBBB;
}
}
.chat-container {
background-color: white;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
height: calc(100vh - 100px);
position: relative;
overflow: hidden;
.chat-header {
height: 70px;
background-color: steelblue;
display: flex;
justify-content: flex-start;
align-items: center;
.username {
font-size: 20px;
font-weight: 500;
margin-bottom: 0;
display: flex;
margin-left: 5px;
justify-content: center;
align-items: center;
}
}
.chat-body {
background-color: white;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
height: 76vh;
overflow-y: auto;
}
.chat-footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: #EDEDED;
padding: 10px 20px;
width: auto;
#button {
size: auto;
}
}
}
.modal-footer{
display: block;
}