mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-10 01:24:20 +02:00
45 lines
690 B
SCSS
Executable File
45 lines
690 B
SCSS
Executable File
@import "../../theme/variables";
|
|
@import "../../theme/mixins";
|
|
|
|
.registerIntro {
|
|
dt {
|
|
font-weight: bold;
|
|
}
|
|
dd {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
.formLine {
|
|
padding: 5px 0;
|
|
|
|
label {
|
|
display: block;
|
|
margin-left: 5px;
|
|
}
|
|
input,
|
|
textarea {
|
|
width: 100%;
|
|
padding: 4px;
|
|
border: 1px solid #333;
|
|
border-radius: 4px;
|
|
outline: 0;
|
|
}
|
|
textarea {
|
|
height: 80px;
|
|
}
|
|
.inputRadio {
|
|
width: inherit;
|
|
}
|
|
.inputRadio + label {
|
|
display: inline;
|
|
margin: 0 20px 0 5px;
|
|
}
|
|
}
|
|
|
|
.formButtons {
|
|
margin-top: 10px;
|
|
padding: 5px 0;
|
|
text-align: center;
|
|
}
|