50 lines
486 B
SCSS
50 lines
486 B
SCSS
// icone
|
|
.iconemodele {
|
|
|
|
}
|
|
|
|
a {
|
|
&:hover {
|
|
.fab, .fas {
|
|
color:$couleurSecondaire;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.inscriptionliste {
|
|
fieldset {
|
|
margin:0;
|
|
}
|
|
legend {
|
|
font-size:140%;
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// modele bouton
|
|
//
|
|
.btn {
|
|
@include bouton();
|
|
&.right {
|
|
float:right;
|
|
margin-left:$spacer;
|
|
}
|
|
&.left {
|
|
float:left;
|
|
margin-right:$spacer;
|
|
}
|
|
&.center {
|
|
display: block;
|
|
clear:both;
|
|
width: 300px;
|
|
margin:0 auto;
|
|
padding:1.5rem;
|
|
}
|
|
&.bold {
|
|
border-width:2px;
|
|
font-weight:700;
|
|
}
|
|
}
|