Spaces:
Sleeping
Sleeping
File size: 851 Bytes
a0ee200 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
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%;
}
.qt{
height: 10%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: white;
gap: 2%;
}
.qt{
width: 100%;
height: 100%;
border: none;
background-color: rgb(103, 103, 246);
display: flex;
}
.qt i{
cursor: pointer;
}
.qtdoc{
} |