funky-framadate-front/src/styles/partials/_form-controls.scss

32 lines
382 B
SCSS
Raw Normal View History

2020-04-21 10:50:26 +02:00
input,
select,
textarea {
@extend .clickable;
margin-bottom: 0.25rem;
padding: 0.5rem;
&:active,
&:focus,
&:hover {
color: $primary_color;
}
}
textarea {
2021-10-15 10:37:38 +02:00
min-height: 3em;
2020-04-21 10:50:26 +02:00
width: 100%;
2021-10-15 10:37:38 +02:00
display: block;
2020-04-21 10:50:26 +02:00
}
.comment {
border-left: 6px solid $primary_color;
margin-top: 25px;
margin-bottom: 25px;
flex-wrap: wrap;
padding-left: 17px;
}
.cname {
font-weight: bold;
}