28 lines
537 B
CSS
28 lines
537 B
CSS
.message {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 80vw;
|
|
height: 50px;
|
|
background-color: rgb(187, 218, 174);
|
|
}
|
|
|
|
.user-creation {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.clear-users-button {
|
|
background-color: #b62200;
|
|
border: none;
|
|
color: white;
|
|
padding: 5px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
margin: 5px;
|
|
} |