site.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* ==========================================================================
  2. Site wide styles
  3. ========================================================================== */
  4. /*
  5. Selection
  6. ========================================================================== */
  7. ::-moz-selection {
  8. background-color: lighten($basecolor, 65%);
  9. color: $basecolor;
  10. text-shadow: none;
  11. }
  12. ::selection {
  13. background-color: lighten($basecolor, 65%);
  14. color: $basecolor;
  15. text-shadow: none;
  16. }
  17. /*
  18. Global classes
  19. ========================================================================== */
  20. /* Capitalize */
  21. .all-caps {
  22. text-transform: uppercase;
  23. }
  24. /* Float left */
  25. .pull-left {
  26. float: left;
  27. }
  28. /* Float right */
  29. .pull-right {
  30. float: right;
  31. }
  32. .image-pull-right {
  33. float: right;
  34. margin-top: 0;
  35. }
  36. /* Clearfix */
  37. .clearfix {
  38. *zoom: 1;
  39. &:before,
  40. &:after {
  41. display: table;
  42. content: "";
  43. }
  44. &:after {
  45. clear: both;
  46. }
  47. }
  48. /* Remove bullets and indentation from list */
  49. .unstyled-list {
  50. list-style: none;
  51. margin-left: 0;
  52. padding-left: 0;
  53. li {
  54. list-style-type: none;
  55. }
  56. }
  57. /*
  58. Global transition
  59. ========================================================================== */
  60. b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a {
  61. @include transition(all .2s ease);
  62. }