61 lines
799 B
CSS
61 lines
799 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
background: #bbbbbb;
|
||
|
border: 1px solid white;
|
||
|
border-radius: 0.2rem;
|
||
|
padding: 0.3rem;
|
||
|
display: inline-block;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
background: #cccccc;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Trebuchet MS", sans-serif;
|
||
|
background-color: #aaaaaa;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
display: flex;
|
||
|
width: 90%;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
flex-direction: column;
|
||
|
gap: 1rem;
|
||
|
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
|
||
|
.textarea-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 1rem;
|
||
|
box-shadow: 5px 5px 5px #666666;
|
||
|
border: 2px solid white;
|
||
|
border-radius: 0.25rem;
|
||
|
padding: 1rem;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
border-radius: 0.25rem;
|
||
|
height: 50vh;
|
||
|
}
|
||
|
|
||
|
.error {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
.success {
|
||
|
color: green;
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
border-top: 2px solid black;
|
||
|
border-bottom: none;
|
||
|
}
|