Files
portal/resources/sass/components/_elements.scss
2020-04-15 18:39:07 +02:00

43 lines
526 B
SCSS
Vendored

// Elements
label {
display: block;
}
textarea,
input {
width: 100%;
border: 1px solid $light;
background-color: $greyLight;
font-size: 1.6rem;
font-family: $fontMain;
padding: 0.5rem 1rem;
border-radius: 0.2rem;
&:focus {
background-color: $white;
border-color: $dark;
}
}
input[type="checkbox"] {
width: unset;
& + label {
display: inline;
}
}
a {
color: $mediumDark;
&:focus,
&:visited {
color: $dark;
}
}
pre {
}