converter/dencode.css

63 lines
1.1 KiB
CSS

body {
}
div.wrapper {
background-color: #fc0;
border-color: #da0;
border-radius: 0.5em;
border-style: solid;
border-width: 1px;
margin-bottom: 0.5em;
margin-left: auto;
margin-right: auto;
padding: 0.5em;
width: 50%;
}
textarea.input {
border-radius: 0.5em;
border-style: solid;
border-width: 1px;
display: block;
font-family: sans-serif;
font-size: 80%;
height: 150px;
padding: 0.1em 0.3em;
resize: none;
width: -moz-available;
width: -webkit-fill-available;
}
textarea.input.error {
background-color: #f88;
border-color: #f00;
}
textarea.input.error:focus, textarea.input.error:hover {
background-color: #faa;
border-color: #f00;
}
select.conversion {
border-radius: 0.2em;
border-style: solid;
border-width: 1px;
margin-top: 0.5em;
}
textarea.input, select.conversion {
background-color: #fdfbf0;
border-color: #fae8e7;
}
textarea.input:focus, textarea.input:hover,
select.conversion:focus, select.conversion:hover {
background-color: #fff;
border-color: #fdfbf0;
}
textarea.input:hover,
select.conversion:hover {
box-shadow: 0 0 6px 4px #c90;
}