/* variables specific to current element */ $element-specific-variables: ""; .#{$namespace}radioNumberCircle { /* Save root element context for easy access if nesting is needed */ $self: &; /* properties of current element + media queries */ display: flex; align-items: center; @include spacer-component-inline("md"); cursor: pointer; /* 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 */ // radio__childElement &__childElement { // follows same logic as parent } /* modifiers */ // radio -centeredRadiomark &.-centeredRadiomark { // follows same logic as base element #{$self}__shape { top: 50%; transform: translateY(-50%); } } /* random parent element */ /* * * Syntax : .randomParentElt & {} * */ /* Pseudo Classes */ &:hover { @media (hover: hover) { } } &:focus { } &:active { } &:focus, &:active { } }