New Mobile Version

No notes defined.

<div class="sds-newMobileVersion">
    <div class="row flex-md-row-reverse align-items-center">
        <div class="col-12 col-md-7 offset-lg-1">
            <img src="https://design.spuerkeess.lu/media/illustrations/svg750x560/hero/sdsillu-ratingstars.svg" alt="" class="img-fluid">
        </div>
        <div class="col-12 col-md-5 col-lg-4">
            <div class="sds-newMobileVersion__info">
                <div class="sds-newMobileVersion__title h3">S-Net Mobile</div>
                <div class="sds-newMobileVersion__description sds-textBodyLg sds-wysiwyg">
                    <p>Emmenez votre banque avec vous et effectuez vos principales opérations bancaires 24h/24 partout dans le monde :</p>
                    <ul>
                        <li>
                            item
                        </li>
                        <li>
                            item
                        </li>
                        <li>
                            item
                        </li>
                        <li>
                            item
                        </li>
                    </ul>
                </div>
                <ul class="sds-newMobileVersion__platforms sds-btnGroup -small -wrap -hasVerticalSpacing list-unstyled">
                    <li>
                        <img src="../../media/snet/new-mobile-version/app-store-badge-fr.svg" alt="">
                    </li>
                    <li>
                        <img src="../../media/snet/new-mobile-version/google-play-badge-fr.svg" alt="">
                    </li>
                </ul>
                <div class="sds-newMobileVersion__link">

                    <a href="" class="sds-btnLabelOutside">

                        <span class="sds-btn -iconBtn -btnPrimary sds-btnLabelOutside__icon stretched-link" aria-labelledby="btn-label">

                            <span class="sds-icon sds-icon-arrownext"></span>

                        </span>

                        <span class="sds-btnLabelOutside__text" id="btn-label">Prendre rendez-vous</span>
                    </a>
                </div>
            </div>
        </div>
    </div>
</div>
<div class="{{ namespace }}newMobileVersion{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}">
	<div class="row flex-md-row-reverse align-items-center">
		<div class="col-12 col-md-7 offset-lg-1">
			<img src="{{ src }}" alt="" class="img-fluid">
		</div>
		<div class="col-12 col-md-5 col-lg-4">
			<div class="{{ namespace }}newMobileVersion__info">
				<div class="{{ namespace }}newMobileVersion__title h3">{{ title }}</div>
				<div class="{{ namespace }}newMobileVersion__description {{ namespace }}textBodyLg {{ namespace }}wysiwyg">
					<p>{{ description }}</p>
					<ul>
						<li>
							item
						</li>
						<li>
							item
						</li>
						<li>
							item
						</li>
						<li>
							item
						</li>
					</ul>
				</div>
				<ul class="{{ namespace }}newMobileVersion__platforms {{ namespace }}btnGroup -small -wrap -hasVerticalSpacing list-unstyled">
					<li>
						<img src="{{ (mediaPath + "/snet/new-mobile-version/app-store-badge-fr.svg") | path }}" alt="">
					</li>
					<li>
						<img src="{{ (mediaPath + "/snet/new-mobile-version/google-play-badge-fr.svg") | path }}" alt="">
					</li>
				</ul>
				<div class="{{ namespace }}newMobileVersion__link">
					{% render "@btn-label-outside",{
						icon: "icon-arrownext",
						text: linkText
					},true %}
				</div>
			</div>
		</div>
	</div>
</div>
  • Content:
    /* variables specific to current element */
    
    $element-specific-variables: "";
    
    .#{$namespace}newMobileVersion {
    
    	/* 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 */
    
    	// newMobileVersion__description
    	&__description {
    
    		// follows same logic as parent
    
    		> * + * {
    
    			margin-top: map-deep-get($token-spacer-stack-max-map, "md");
    
    			@include media-breakpoint-up("md") {
    				margin-top: map-deep-get($token-spacer-stack-max-map, "xl");
    			}
    
    		}
    
    	}
    
    	&__description,
    	&__platforms,
    	&__link {
    
    		margin-top: map-deep-get($token-spacer-stack-max-map, "xl");
    
    		@include media-breakpoint-up("md") {
    			margin-top: map-deep-get($token-spacer-stack-max-map, "3xl");
    		}
    
    	}
    
    
    	/* modifiers */
    
    	// newMobileVersion -altStyle
    	&.-altStyle {
    
    		// follows same logic as base element
    
    	}
    
    	/* random parent element */
    	/* 
    	*
    	*   Syntax : .randomParentElt & {}
    	*
    	*/
    
    	/* Pseudo Classes */
    
    	&:hover {
    		@media (hover: hover) {
    
    		}
    	}
    
    	&:focus {
    	}
    
    	&:active {
    	}
    
    	&:focus,
    	&:active {
    	}
    
    }
  • URL: /components/raw/spk-new-mobile-version/_new-mobile-version.scss
  • Filesystem Path: components/spuerkeess-site/organisms/new-mobile-version/_new-mobile-version.scss
  • Size: 1.4 KB