48 lines
721 B
SCSS
48 lines
721 B
SCSS
fieldset {
|
|
display: flex; flex-wrap: wrap; flex-direction: row; padding: 0; border: none; margin: 0 0 .3rem .5rem;
|
|
}
|
|
|
|
.w100 {
|
|
width: 100%;
|
|
}
|
|
|
|
.column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
#result {
|
|
margin: 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 80%;
|
|
}
|
|
|
|
form {
|
|
width: 90vw;
|
|
max-width: 1920px;
|
|
}
|
|
|
|
.generator {
|
|
.button {
|
|
font-size: .8em;
|
|
border-radius: 0;
|
|
margin: 0;
|
|
background: var(--background);
|
|
padding-right: 2em;
|
|
padding-left: 2em;
|
|
&:hover {
|
|
background: var(--background-alt);
|
|
}
|
|
}
|
|
.textarea {
|
|
margin-top: 0;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
p {
|
|
a {
|
|
text-decoration: underline;
|
|
}
|
|
}
|