mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-08 00:24:21 +02:00
124 lines
1.9 KiB
SCSS
Executable File
124 lines
1.9 KiB
SCSS
Executable File
@import "../../../theme/variables";
|
|
@import "../../../theme/mixins";
|
|
|
|
.title {
|
|
padding: 15px 0;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.inputWrapper {
|
|
margin: 25px 0;
|
|
|
|
@include desktop {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.noTopMargin {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.noBottomMargin {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.leftCol {
|
|
flex: 0 0 220px;
|
|
}
|
|
|
|
.rightCol {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.firstnameTitle,
|
|
.lastnameTitle {
|
|
display: inline-block;
|
|
width: 80px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.firstnameLabel,
|
|
.lastnameLabel {
|
|
text-align: left;
|
|
display: inline-block;
|
|
margin-bottom: 10px;
|
|
width: 120px;
|
|
}
|
|
|
|
.photoTitle {
|
|
display: inline-block;
|
|
width: 180px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.photoLabel {
|
|
text-align: left;
|
|
display: inline-block;
|
|
margin-bottom: 10px;
|
|
width: 120px;
|
|
}
|
|
|
|
.personalInfoTitle {
|
|
display: inline-block;
|
|
width: 320px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.personalInfoList {
|
|
@include clear-ul-style;
|
|
|
|
display: inline-block;
|
|
width: 204px;
|
|
text-align: center;
|
|
}
|
|
|
|
.personalInfoItem {
|
|
display: inline-block;
|
|
margin: 3px;
|
|
}
|
|
|
|
.personalInfoButton {
|
|
margin: 0;
|
|
padding: 7px 2px 6px;
|
|
border: 0;
|
|
border-radius: 0;
|
|
width: 90px;
|
|
text-align: center;
|
|
color: $color-grey-dark;
|
|
background-color: $color-grey-light;
|
|
cursor: pointer;
|
|
|
|
&.active {
|
|
color: $color-yellow;
|
|
background-color: $color-black;
|
|
}
|
|
}
|
|
|
|
.personalInfoCommentWrapper {
|
|
margin: 6px 0 14px;
|
|
|
|
label {
|
|
display: block;
|
|
padding: 6px 0 2px 4px;
|
|
}
|
|
textarea {
|
|
width: 100%;
|
|
height: 50px;
|
|
padding: 5px;
|
|
border: 1px solid $color-grey-light;
|
|
background-color: $color-grey-lighter;
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
.buttonWrapper {
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.yesMembership {
|
|
color: $color-orange;
|
|
}
|