qtAnswering / static /app.css
ikram
add resources
3d74941
raw
history blame
1.2 kB
html ,body{
height: 100%;
width: 100%;
box-sizing: border-box;
background-color: white;
}
body{
gap: 20px;
}
header{
width: 100%;
height: 10%;
display: flex;
justify-content: flex-start;
gap : 20px ;
align-items: center;
}
header img {
height: 15vh;
width: 5vw;
object-fit:cover;
}
header span{
font-size: 30px;
}
em{
color:rgb(42, 42, 248);
}
.convo{
height: 75%;
width: 100%;
overflow-y: auto;
padding: 10px;
box-sizing: border-box;
}
.qt{
width: 70%;
height: 50%;
border: none;
background-color: #8d8b8b;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 10px;
margin: 10px;
}
.qt input{
width: 70%;
height: 70%;
border: none;
background-color: #8d8b8b;
color:white;
margin : 10px
}
.qt input::placeholder{
color: white;
}
.qt input:focus{
border: none;
outline: none;
}
.qtdoc{
width: 100%;
height: 10%;
display: flex;
justify-content: center;
align-items: center;
}
.icons{
width: 18%;
display: flex;
gap: 2%;
font-size: large;
cursor: pointer;
justify-content: space-around;
}