_elements.scss 1009 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. html {
  2. box-sizing: border-box;
  3. }
  4. ::-moz-selection {
  5. background-color: $color__background_selection;
  6. }
  7. ::selection {
  8. background-color: $color__background_selection;
  9. }
  10. *,
  11. *:before,
  12. *:after {
  13. box-sizing: inherit;
  14. }
  15. body {
  16. background-color: $color__background-body;
  17. }
  18. a {
  19. @include link-transition;
  20. color: $color__link;
  21. }
  22. a:visited {
  23. }
  24. a:hover,
  25. a:active {
  26. color: $color__link-hover;
  27. outline: 0;
  28. text-decoration: none;
  29. }
  30. a:focus {
  31. outline: thin;
  32. outline-style: dotted;
  33. text-decoration: underline;
  34. }
  35. h1,
  36. h2,
  37. h3,
  38. h4,
  39. h5,
  40. h6 {
  41. clear: both;
  42. margin: $size__spacing-unit 0;
  43. }
  44. h1:not(.site-title),
  45. h2 {}
  46. hr {
  47. background-color: $color__text-light;
  48. border: 0;
  49. height: 2px;
  50. }
  51. @import "lists";
  52. img {
  53. height: auto;
  54. max-width: 100%;
  55. position: relative;
  56. }
  57. figure {
  58. margin: 0;
  59. }
  60. blockquote {
  61. border-left: 2px solid $color__link;
  62. margin-left: 0;
  63. padding: 0 0 0 $size__spacing-unit;
  64. > p {
  65. margin: 0 0 $size__spacing-unit;
  66. }
  67. cite {
  68. color: $color__text-light;
  69. }
  70. }
  71. @import "tables";