register.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. @import "colors";
  2. @import "breakpoints";
  3. main {
  4. p {
  5. color: $musare_color_primary_gray;
  6. }
  7. #recaptcha {
  8. > div {
  9. margin-left: auto;
  10. margin-right: auto;
  11. > div {
  12. width: 100%;
  13. height: 100%;
  14. }
  15. }
  16. iframe {
  17. transform-origin: 152px 0;
  18. }
  19. }
  20. }
  21. @include responsive(smallest) {
  22. p {
  23. font-size: 12px;
  24. line-height: 16px;
  25. margin-bottom: 12px;
  26. }
  27. #recaptcha {
  28. margin-bottom: 12px;
  29. $scale: 320 / 304;
  30. > div {
  31. height: 78px * $scale !important;
  32. }
  33. iframe {
  34. transform: scale($scale);
  35. }
  36. }
  37. }
  38. @include responsive(small) {
  39. p {
  40. font-size: 21px;
  41. line-height: 28px;
  42. margin-bottom: 26px;
  43. }
  44. #recaptcha {
  45. margin-bottom: 26px;
  46. $scale: 600 / 304;
  47. > div {
  48. height: 78px * $scale !important;
  49. }
  50. iframe {
  51. transform: scale($scale);
  52. }
  53. }
  54. }
  55. @include responsive(medium) {
  56. p {
  57. font-size: 31px;
  58. line-height: 41px;
  59. margin-bottom: 39px;
  60. }
  61. #recaptcha {
  62. margin-bottom: 39px;
  63. $scale: 900 / 304;
  64. > div {
  65. height: 78px * $scale !important;
  66. }
  67. iframe {
  68. transform: scale($scale);
  69. }
  70. }
  71. }
  72. @include responsive(large) {
  73. p {
  74. font-size: 17px;
  75. line-height: 22px;
  76. margin-bottom: 32px;
  77. }
  78. #recaptcha {
  79. margin-bottom: 32px;
  80. $scale: 500 / 304;
  81. > div {
  82. height: 78px * $scale !important;
  83. }
  84. iframe {
  85. transform: scale($scale);
  86. }
  87. }
  88. }