123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- ///
- /// Hyperspace by HTML5 UP
- /// html5up.net | @ajlkn
- /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
- ///
- /* Icon */
- .icon {
- @include icon;
- border-bottom: none;
- position: relative;
- > .label {
- display: none;
- }
- &.major {
- width: 2.5em;
- height: 2.5em;
- display: block;
- background: _palette(fg-bold);
- border-radius: 100%;
- color: _palette(bg);
- text-align: center;
- line-height: 2.5em;
- margin: 0 0 (_size(element-margin) * 0.65) 0;
- &:before {
- font-size: 1.25em;
- .wrapper.style1 & {
- color: _palette(accent1);
- }
- .wrapper.style1-alt & {
- color: _palette(accent1-alt);
- }
- .wrapper.style2 & {
- color: _palette(accent2);
- }
- .wrapper.style2-alt & {
- color: _palette(accent2-alt);
- }
- .wrapper.style3 & {
- color: _palette(accent3);
- }
- .wrapper.style3-alt & {
- color: _palette(accent3-alt);
- }
- }
- }
- }
|