Implement message styling and basic display of text

This commit is contained in:
Dennis Schoepf 2021-07-20 21:17:26 +02:00
parent 84dd40de5d
commit d471600c0f
4 changed files with 96 additions and 4 deletions

View file

@ -5,6 +5,9 @@ body {
height: 100%;
overflow: hidden;
position: relative;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
}
main {
@ -17,6 +20,11 @@ main {
box-sizing: border-box;
}
button {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
}
.ui {
position: absolute;
bottom: 40px;
@ -71,4 +79,60 @@ main {
}
}
}
#message {
position: absolute;
right: 60px;
bottom: 50px;
margin-right: 100px;
padding: 25px;
border-radius: 10px;
background-color: white;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
display: flex;
flex-direction: column;
min-width: 70%;
#message-text {
margin-bottom: 25px;
font-size: 18px;
}
#message-input {
margin-bottom: 25px;
font-size: 16px;
padding: 6px 10px;
border-radius: 5px;
border: 2px solid #b0b7bf;
min-height: 100px;
}
#message-confirm {
align-self: flex-end;
padding: 6px 15px;
background-color: transparent;
border: 2px solid black;
border-radius: 5px;
font-weight: bold;
max-width: 180px;
&:hover {
cursor: pointer;
background-color: black;
color: white;
}
}
&::after {
content: '';
position: absolute;
right: -10px;
bottom: 10px;
width: 0;
height: 0;
border-top: 14px solid transparent;
border-bottom: 14px solid transparent;
border-left: 14px solid white;
}
}
}