summaryrefslogtreecommitdiff
path: root/style.scss
blob: c225aca57cf8352005b84a74741a7b2254b6f25b (plain)
  1. @import "h5bp";
  2. @import "compass";
  3. // @import "partials/base";
  4. // compass
  5. $link-color: white;
  6. // $link-hover-color: white;
  7. // $link-visited-color: white;
  8. // h5bp
  9. $line-height: 1;
  10. $font-color: lightblue;
  11. $font-family: sans-serif;
  12. $font-size: 2em;
  13. $selected-font-color: yellow;
  14. $selected-background-color: orange;
  15. @include h5bp-normalize;
  16. body {
  17. background-color: darkred;
  18. color: $font-color;
  19. line-height: $line-height;
  20. font-size: $font-size;
  21. }
  22. article {
  23. margin: 0 auto;
  24. max-width: 20em;
  25. text-align: center;
  26. }
  27. a {
  28. @include link-colors($link-color);
  29. @include hover-link;
  30. }
  31. #coin {
  32. margin: 1em;
  33. width: 10em;
  34. height: auto;
  35. }