funky-framadate-front/src/styles/partials/_forms.scss

79 lines
834 B
SCSS
Raw Normal View History

2020-04-21 10:50:26 +02:00
@charset "UTF-8";
2020-06-12 19:17:39 +02:00
label {
line-height: 2.5em;
}
2020-06-12 19:17:39 +02:00
.ui-inputswitch {
2020-06-07 13:52:14 +02:00
margin-left: 1ch;
margin-right: 1ch;
}
2020-04-21 10:50:26 +02:00
.input-lg {
display: block;
width: 100%;
}
select {
margin-right: 1ch;
}
input {
margin-right: 1ch;
&[type='date']::after {
content: 'au format JJ/MM/AAAA';
display: inline-block;
position: relative;
}
}
input,
select,
textarea {
2021-10-15 10:37:38 +02:00
width: 100%;
2020-04-21 10:50:26 +02:00
padding: 1rem;
2021-10-15 10:37:38 +02:00
border: 1px solid $border-color;
2020-04-21 10:50:26 +02:00
}
input,
select {
display: inline-block;
margin-bottom: 10px;
margin-left: 5px;
}
.next {
max-width: 200px;
}
input[type='text'],
textarea {
max-width: 350px;
}
li {
list-style-type: none;
}
.next {
margin-bottom: 50px;
}
.nobold {
font-weight: normal;
}
.btn-block {
display: block;
width: 100%;
}
2020-06-07 13:52:14 +02:00
2020-06-12 19:17:39 +02:00
button[type='submit'] {
margin-top: 2em;
2020-06-07 13:52:14 +02:00
}
2021-10-15 10:37:38 +02:00
hr {
margin: 4em 0;
border: solid 3px $primary;
}