basics.scss 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. body {
  2. font-family: 'mastodon-font-sans-serif', sans-serif;
  3. background: $color1 url('../images/background-photo.jpg');
  4. background-size: cover;
  5. background-attachment: fixed;
  6. font-size: 13px;
  7. line-height: 18px;
  8. font-weight: 400;
  9. color: $color5;
  10. padding-bottom: 140px;
  11. text-rendering: optimizelegibility;
  12. font-feature-settings: "kern";
  13. text-size-adjust: none;
  14. &.app-body {
  15. position: fixed;
  16. width: 100%;
  17. height: 100%;
  18. padding: 0;
  19. background: $color1;
  20. }
  21. &.embed {
  22. background: transparent;
  23. margin: 0;
  24. .container {
  25. position: absolute;
  26. width: 100%;
  27. height: 100%;
  28. overflow: hidden;
  29. }
  30. }
  31. &.admin {
  32. background: darken($color1, 4%);
  33. position: fixed;
  34. width: 100%;
  35. height: 100%;
  36. padding: 0;
  37. }
  38. @media screen and (max-width: 360px) {
  39. padding-bottom: 0;
  40. }
  41. }
  42. button:focus {
  43. outline: none;
  44. }
  45. .app-holder {
  46. display: flex;
  47. width: 100%;
  48. height: 100%;
  49. align-items: center;
  50. justify-content: center;
  51. }