No notes defined.
<div class="sds-exchangeRateCalculator sds-stackXl">
<div class="sds-box -insetLg -boxSunken d-flex flex-column sds-stackLg">
<div class="btn-group">
<div class="flex-grow-1">
<div class="sds-input -input2xl">
<input id="" class="sds-input form-control" type="text" placeholder="Entrez une communication" value="1">
</div>
</div>
<div class="flex-shrink-0">
<div class="sds-select -select2xl">
<select id="" class="sds-select form-control">
<option value="opt-0">EUR</option>
<option value="opt-1">USD</option>
<option value="opt-2">YEN</option>
</select>
<span class="sds-select__arrow sds-icon sds-icon-chevrondown" aria-hidden="true"></span>
</div>
</div>
</div>
<div class="d-flex justify-content-center">
<div class="sds-exchangeRateCalculator__switchBtn">
<button type="button" class="sds-btn -iconBtn -btnSecondary -btnInverse">
<span class="sds-icon sds-icon-backforth"></span>
</button>
</div>
</div>
<div class="btn-group">
<div class="flex-grow-1">
<div class="sds-input -input2xl">
<input id="" class="sds-input form-control" type="text" placeholder="Entrez une communication" value="0,92">
</div>
</div>
<div class="flex-shrink-0">
<div class="sds-select -select2xl">
<select id="" class="sds-select form-control">
<option value="opt-0">USD</option>
<option value="opt-1">EUR</option>
<option value="opt-2">YEN</option>
</select>
<span class="sds-select__arrow sds-icon sds-icon-chevrondown" aria-hidden="true"></span>
</div>
</div>
</div>
</div>
<p class="sds-formDisclaimer -small -insetHorizLg">
La présente simulation est uniquement fournie à titre indicatif et n'engage nullement Spuerkeess. Pour une proposition concrète, nous vous prions de soumettre votre demande au Service Aides financières.
</p>
</div>
<div class="{{ namespace }}exchangeRateCalculator {{ namespace }}stackXl{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}">
<div class="{{ namespace }}box -insetLg -boxSunken d-flex flex-column {{ namespace }}stackLg">
<div class="btn-group">
<div class="flex-grow-1">
{% render "@input",{
value: "1",
parentClasses: ["-input2xl"]
},true %}
</div>
<div class="flex-shrink-0">
{% render "@select",{
parentModifiers: ["-select2xl"],
options: xchange1SelectOptions
},true %}
</div>
</div>
<div class="d-flex justify-content-center">
<div class="{{ namespace }}exchangeRateCalculator__switchBtn">
{% render "@icon-btn-secondary-inverse",{
icon: "icon-backforth"
},true %}
</div>
</div>
<div class="btn-group">
<div class="flex-grow-1">
{% render "@input",{
value: "0,92",
parentClasses: ["-input2xl"]
},true %}
</div>
<div class="flex-shrink-0">
{% render "@select",{
parentModifiers: ["-select2xl"],
options: xchange2SelectOptions
},true %}
</div>
</div>
</div>
{% render "@form-disclaimer--small",{
classes: ["-insetHorizLg"],
text: "La présente simulation est uniquement fournie à titre indicatif et n'engage nullement Spuerkeess. Pour une proposition concrète, nous vous prions de soumettre votre demande au Service Aides financières."
},true %}
</div>
/* variables specific to current element */
$element-specific-variables: "";
.#{$namespace}exchangeRateCalculator {
/* Save root element context for easy access if nesting is needed */
$self: &;
/* properties of current element + media queries */
/* Pseudo Elements */
&::before {
}
&::after {
}
/*
Include elements that are linked to the current element but have to reside at the root level of the stylesheet
(e.g: keyframes)
*/
@at-root {
}
/* children - write selector in full in comments in order to facilitate search */
// exchangeRateCalculator__switchBtn
&__switchBtn {
// follows same logic as parent
> * {
transform: rotate(-90deg);
transition: transform 0.15s linear;
&:hover {
@media (hover: hover) {
transform: rotate(90deg);
}
}
&:focus {
transform: rotate(90deg);
}
}
}
/* modifiers */
// exchangeRateCalculator -altStyle
&.-altStyle {
// follows same logic as base element
}
/* random parent element */
/*
*
* Syntax : .randomParentElt & {}
*
*/
/* Pseudo Classes */
&:hover {
@media (hover: hover) {
}
}
&:focus {
}
&:active {
}
&:focus,
&:active {
}
}