settings.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. @import "colors";
  2. @import "breakpoints";
  3. main {
  4. h2 {
  5. color: $musare_color_primary_gray;
  6. text-align: center;
  7. }
  8. }
  9. @include responsive(smallest) {
  10. h2 {
  11. font-size: 20px;
  12. line-height: 27px;
  13. margin-bottom: 12px;
  14. }
  15. .general-section {
  16. button:last-child {
  17. margin-bottom: 0;
  18. }
  19. }
  20. .security-section {
  21. margin-top: 16px;
  22. }
  23. }
  24. @include responsive(small) {
  25. h2 {
  26. font-size: 35px;
  27. line-height: 47px;
  28. margin-bottom: 26px;
  29. }
  30. .general-section {
  31. button:last-child {
  32. margin-bottom: 0;
  33. }
  34. }
  35. .security-section {
  36. margin-top: 34px;
  37. }
  38. }
  39. @include responsive(medium) {
  40. h2 {
  41. font-size: 52px;
  42. line-height: 69px;
  43. margin-bottom: 39px;
  44. }
  45. .general-section {
  46. button:last-child {
  47. margin-bottom: 0;
  48. }
  49. }
  50. .security-section {
  51. margin-top: 51px;
  52. }
  53. }
  54. @include responsive(large) {
  55. main {
  56. width: 100%;
  57. }
  58. h2 {
  59. font-size: 28px;
  60. line-height: 37px;
  61. margin-bottom: 32px;
  62. }
  63. .sections {
  64. display: flex;
  65. width: 100%;
  66. .section {
  67. width: 50%;
  68. margin-right: 50px;
  69. margin-left: 50px;
  70. margin-top: 0;
  71. // TODO Remove after ranges have been introduced
  72. }
  73. }
  74. }