website

The files for mattfehrenbach.xyz, a fork of a template.
git clone git://git.mattfehrenbach.xyz/website.git
Log | Files | Refs | LICENSE

_icons.scss (701B)


      1 ///
      2 /// Dimension by HTML5 UP
      3 /// html5up.net | @ajlkn
      4 /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
      5 ///
      6 
      7 /* Icons */
      8 
      9 	ul.icons {
     10 		cursor: default;
     11 		list-style: none;
     12 		padding-left: 0;
     13 
     14 		li {
     15 			display: inline-block;
     16 			padding: 0 0.75em 0 0;
     17 
     18 			&:last-child {
     19 				padding-right: 0;
     20 			}
     21 
     22 			a {
     23 				border-radius: 100%;
     24 				box-shadow: inset 0 0 0 _size(border-width) _palette(border);
     25 				display: inline-block;
     26 				height: 2.25rem;
     27 				line-height: 2.25rem;
     28 				text-align: center;
     29 				width: 2.25rem;
     30 
     31 				&:hover {
     32 					background-color: _palette(border-bg);
     33 				}
     34 
     35 				&:active {
     36 					background-color: _palette(border-bg-alt);
     37 				}
     38 			}
     39 		}
     40 	}