_icons.scss 728 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. ///
  2. /// Paradigm Shift 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. /* Icons */
  7. ul.icons {
  8. cursor: default;
  9. list-style: none;
  10. padding-left: 0;
  11. li {
  12. display: inline-block;
  13. &:last-child {
  14. padding-right: 0;
  15. }
  16. .icon {
  17. @include vendor('transition', 'background-color #{_duration(transition)} ease-in-out');
  18. width: 2.25rem;
  19. height: 2.25rem;
  20. text-align: center;
  21. line-height: 2.25rem;
  22. border-radius: 2.25rem;
  23. display: inline-block;
  24. &:before {
  25. font-size: 1.25rem;
  26. }
  27. &:hover {
  28. background-color: _palette(border-bg);
  29. }
  30. }
  31. }
  32. }