You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
677 B
CSS
54 lines
677 B
CSS
2 years ago
|
main {
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr 1fr 1fr;
|
||
|
gap: 16px;
|
||
|
font-size: 24px;
|
||
|
line-height: 1.4;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
textarea {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
font-size: 24px;
|
||
|
line-height: 1.4;
|
||
|
border: 1px solid currentColor;
|
||
|
padding: 8px;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
form > * + * {
|
||
|
margin-top: 16px;
|
||
|
}
|
||
|
|
||
|
input[type="submit"] {
|
||
|
display: inline-block;
|
||
|
cursor: pointer;
|
||
|
background: none;
|
||
|
width: auto;
|
||
|
}
|
||
|
|
||
|
input[type="submit"]:hover {
|
||
|
background-color: gray;
|
||
|
}
|
||
|
|
||
|
#panel-container {
|
||
|
grid-column: span 2;
|
||
|
border: 1px solid currentColor;
|
||
|
}
|
||
|
|
||
|
.preview {
|
||
|
position: absolute;
|
||
|
top: 8px;
|
||
|
left: 8px;
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
|
||
|
main a {
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
|
||
|
main a:hover {
|
||
|
opacity: 1;
|
||
|
}
|