demarches-normaliennes/app/assets/stylesheets/dsfr.scss

39 lines
717 B
SCSS
Raw Normal View History

2022-09-01 16:29:39 +02:00
@import "colors";
// override default transparent background on inputs & font-size to 16px by default
2022-09-01 16:29:39 +02:00
input,
textarea,
select {
background: $white;
font-size: 1em;
}
2022-09-01 16:29:39 +02:00
// with Marianne font, weight of font is less bolder, so bold it up
.button.primary {
font-weight: bold;
}
// fix firefox < 80 not supporting "appearance: auto" on inputs
// scss-lint:disable DuplicateProperty
input[type="checkbox"] {
-moz-appearance: checkbox;
-moz-appearance: auto;
}
input[type="radio"] {
-moz-appearance: radio;
-moz-appearance: auto;
}
// scss-lint:enable DuplicateProperty
// remove pointer cursor on textarea
textarea {
cursor: auto;
}
fieldset {
2022-10-06 17:01:29 +02:00
border: none;
padding-left: 0;
padding-bottom: 0;
}