ft_transcendence/frontend/static/css/search.css

96 lines
1.3 KiB
CSS

#app img
{
max-height: 10vh;
max-width: 10vh;
}
#app ul
{
font-size: 2vh;
margin: 1vh 0 0 0;
padding: 0 0 0 0;
list-style-type: none;
max-height: 80vh;
overflow: auto;
}
#app li
{
margin: 1vh 1vh 0 0;
}
#app #chats {
overflow: hidden;
display: flex;
text-align: left;
}
#app #users {
margin: 0vh 5vh 0vh 0.1vh;
}
#app #chat {
position: relative;
max-height: 80vh;
width: 80vh;
/*border: 2px solid green;*/
overflow: hidden;
}
#app #add_chat_off {
text-decoration: underline;
}
#app #messages {
max-height: 50vh;
overflow: scroll;
overflow-y: scroll;
overflow-x: hidden;
font-size: 2vh;
}
#app #input_user{
color: green;
width: 20vh;
height: 2.5vh;
font-size: 2vh;
border: none;
outline: none;
border-bottom: 0.25vh solid green;
}
#app #input_chat{
position: sticky;
bottom: 0;
/*width: calc(100% - 8px);*/
width: 100%;
border: none;
outline: none;
border-bottom: 0.25vh solid green;
caret-color: green;
color: green;
font-size: 2vh;
}
#app #you {
text-align: left;
position: relative;
max-width: 48%;
left: 2vh;
margin: 1vh 0 0 0;
color: green;
word-wrap: break-word;
}
#app #other {
text-align: right;
position: relative;
max-width: 48%;
margin: 1vh 0 0 auto;
right: 2vh;
color: red;
/* permet le retour à la ligne à la place de dépasser*/
word-wrap: break-word;
}