You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
849 B

  1. $primary-color: #ff7473;
  2. $secondary-color: #ffc952;
  3. $tertiary-color: #47b8e0;
  4. $quaternary-color: #34314c;
  5. $background-color: #fff;
  6. $darker-background-color: #e3dede;
  7. $text-color: #333030;
  8. $lighter-text-color: #8b8687;
  9. @import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic");
  10. @import "font-awesome-sprockets";
  11. @import "font-awesome";
  12. body {
  13. font-family: 'Noto Sans', sans-serif;
  14. background: $background-color image-url('background-pattern.png');
  15. font-size: 13px;
  16. line-height: 18px;
  17. color: $text-color;
  18. }
  19. .container {
  20. width: 800px;
  21. margin: 0 auto;
  22. margin-top: 40px;
  23. }
  24. .footer {
  25. text-align: center;
  26. padding: 100px 0;
  27. font-size: 12px;
  28. color: $text-color;
  29. .mastodon-link {
  30. color: $quaternary-color;
  31. text-decoration: none;
  32. font-weight: bold;
  33. }
  34. }
  35. @import 'home';
  36. @import 'profile';