bin/public/static/main.css

41 lines
790 B
CSS

body {
background-color: antiquewhite;
font-family: monospace;
}
textarea {
background-color: rgb(248, 241, 232);
border: 1px solid #6c6f6c;
border-radius: 4px;
box-shadow: 0 2px 2px #20402030;
transition: 150ms ease;
padding: 4px 8px
}
textarea:hover {
box-shadow: 0 2px 4px #20402040;
}
textarea:disabled {
color: black;
}
textarea:disabled:hover {
color: rgb(61, 61, 61)
}
.data {
width: 400px;
height: 240px
}
input[type=submit] {
background-color: rgb(236, 221, 200);
border: 1px solid #9c9f9c;
border-radius: 4px;
margin-top: 8px;
padding: 4px 8px;
font-family: monospace;
box-shadow: 0 2px 2px #60806020;
transition: 150ms ease;
}
input[type=submit]:hover {
box-shadow: 0 2px 4px #60806040;
}