Elevator Level Selector
0 viewshard
Background:
1
2
3
4
5
6
7
8
9
10
11
12
<div class="elevator-container">
<input type="checkbox" id="elevator" class="hidden" />
<label for="elevator" class="elevator-wrapper">
<div class="elevator-shaft">
<div class="floor-indicator ground-floor">G</div>
<div class="floor-indicator first-floor">1</div>
<div class="floor-indicator second-floor">2</div>
<div class="elevator-car"></div>
</div>
<span class="elevator-text">Elevator</span>
</label>
</div>Elevator Level Selector
0 viewshard
Background:
Elevator Level Selector
1
2
3
4
5
6
7
8
9
10
11
12
<div class="elevator-container">
<input type="checkbox" id="elevator" class="hidden" />
<label for="elevator" class="elevator-wrapper">
<div class="elevator-shaft">
<div class="floor-indicator ground-floor">G</div>
<div class="floor-indicator first-floor">1</div>
<div class="floor-indicator second-floor">2</div>
<div class="elevator-car"></div>
</div>
<span class="elevator-text">Elevator</span>
</label>
</div>Was this helpful?
What is inside Elevator Level Selector
Elevator Level Selector is a CSS checkbox built with gradient fills, layered shadows, defined in 64 lines across 9 selectors.
22
CSS properties
9
Selectors
64
Lines of CSS
3
Formats
Techniques used
TransitionsGradientsShadowsChecked stateFlexbox
CSS properties in this component
align-itemsbackgroundborderborder-radiusbottombox-shadowcolorcursordisplayflex-directionfont-sizefont-weightgapheightinputjustify-contentleftpaddingpositionrighttransitionwidthAccessibility check1 to fix
- Built on a native <input> element, so keyboard focus and screen reader semantics work without extra attributes.
- No focus style is defined. Add one before shipping, or keyboard users lose track of position.
These notes are generated by reading this component's own source, so they describe what it actually does rather than what a template says. Copy the code above in HTML, CSS, Tailwind and adapt it freely.