Loading Box

No notes defined.

<div class="sds-loadingBox sds-box">
    <div class="row row-sm justify-content-center text-center ">
        <div class="col-10">
            <img src="https://design.spuerkeess.lu/media/illustrations/svg750x560/hero/sdsillu-switchingondata.svg" class="img-fluid" alt="">
        </div>
        <div class="col-12 sds-stackXs">
            <div class="h2">Hang on, our robots are working on it...</div>
            <p class="sds-textBodyLg">Votre espace S-Net Professionnel est désormais activé et prêt à être utilisé, c’est parti !</p>
        </div>
    </div>
</div>
<div class="{{ namespace }}loadingBox {{ namespace }}box{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}">
	<div class="row row-sm justify-content-center text-center ">
		<div class="col-10">
			<img src="{{ ("https://design.spuerkeess.lu/media" + illustrationsSDSPath + svg750xPath + "/hero/sdsillu-switchingondata.svg") }}" class="img-fluid" alt="">
		</div>
		<div class="col-12 {{ namespace }}stackXs">
			<div class="h2">{{ title }}</div>
			<p class="{{ namespace }}textBodyLg">{{ text }}</p>
		</div>
	</div>
</div>
  • Content:
    /* variables specific to current element */
    
    $element-specific-variables: "";
    
    .#{$namespace}loadingBox {
    
    	/* Save root element context for easy access if nesting is needed */
    
    	$self: &;
    
    	/* properties of current element  + media queries */
    
    	@include spacer-component-inset-vert-greater("xl","lg");
    
    	/* 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 */
    
    	// loadingBox__childElement
    	&__childElement {
    
    		// follows same logic as parent
    
    	}
    
    
    	/* modifiers */
    
    	// loadingBox -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/snet-loading-box/_loading-box.scss
  • Filesystem Path: components/snet/organisms/loading-box/_loading-box.scss
  • Size: 1 KB