Skyscraper Construction
0 viewshard
Background:
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="skyscraper-container">
<input type="checkbox" id="skyscraper" class="hidden" />
<label for="skyscraper" class="construction-wrapper">
<div class="building-base">
<div class="floor floor-1"></div>
<div class="floor floor-2"></div>
<div class="floor floor-3"></div>
<div class="floor floor-4"></div>
<div class="crane"></div>
</div>
<span class="construction-text">Skyscraper Construction</span>
</label>
</div>Skyscraper Construction
0 viewshard
Background:
Skyscraper Construction
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="skyscraper-container">
<input type="checkbox" id="skyscraper" class="hidden" />
<label for="skyscraper" class="construction-wrapper">
<div class="building-base">
<div class="floor floor-1"></div>
<div class="floor floor-2"></div>
<div class="floor floor-3"></div>
<div class="floor floor-4"></div>
<div class="crane"></div>
</div>
<span class="construction-text">Skyscraper Construction</span>
</label>
</div>Was this helpful?
What is inside Skyscraper Construction
Skyscraper Construction is a CSS checkbox built with gradient fills, transforms, defined in 81 lines across 13 selectors.
22
CSS properties
13
Selectors
81
Lines of CSS
3
Formats
Techniques used
TransitionsTransformsGradientsPseudo elementsChecked stateFlexbox
CSS properties in this component
align-itemsbackgroundbordercolorcontentcursordisplayflex-directionfont-weightgapheightinputjustify-contentmargin-bottomopacitypositionrighttoptransformtransitiontransition-delaywidthAccessibility 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.