style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. body {
  2. height: 100vh;
  3. margin: 0;
  4. }
  5. .header {
  6. width: 100%;
  7. height: 55px;
  8. background: #FFFFFF 0% 0% no-repeat padding-box;
  9. box-shadow: 0px 1px 0px #0000001A;
  10. }
  11. .header__logo {
  12. position: relative;
  13. left: 90px;
  14. width: 60px;
  15. height: 56px;
  16. background: #1082D2 0% 0% no-repeat padding-box;
  17. }
  18. .logo__m {
  19. height: 56px;
  20. line-height: 56px;
  21. text-align: center;
  22. }
  23. .logo__m:before {
  24. font-family: "Montserrat Bold";
  25. font-size: 34px;
  26. color: #FFFFFF;
  27. content: 'M';
  28. }
  29. .body {
  30. width: 100%;
  31. position: relative;
  32. height: calc(100vh - 57px);
  33. }
  34. .body__form {
  35. height: fit-content;
  36. width: 330px;
  37. margin: auto;
  38. top: 0;
  39. bottom: 0;
  40. left: 0;
  41. right: 0;
  42. position: absolute;
  43. }
  44. .form__title {
  45. font: normal normal normal 30px/24px "Montserrat Bold";
  46. letter-spacing: -1px;
  47. color: #000000;
  48. height: 35px;
  49. display: block;
  50. }
  51. .form__subtitle {
  52. font: normal normal normal 14px/18px "Montserrat Regular";
  53. letter-spacing: -0.8px;
  54. margin-bottom: 20px;
  55. }
  56. .form__input {
  57. height: 40px;
  58. width: calc(100% - 22px);
  59. background: #FFFFFF 0% 0% no-repeat padding-box;
  60. border: 1px solid #ECECEC;
  61. padding: 0 10px;
  62. display: block;
  63. font: normal normal normal 14px/15px "Montserrat Regular";
  64. letter-spacing: -0.28px;
  65. margin-bottom: 20px;
  66. }
  67. .form__input:focus {
  68. outline:none;
  69. }
  70. .form__input::placeholder {
  71. color: #CCC9C9;
  72. }
  73. .form__btn {
  74. height: 42px;
  75. width: 100%;
  76. background: #1082D2 0% 0% no-repeat padding-box;
  77. font: normal normal bold 15px/23px "Montserrat Bold";
  78. letter-spacing: 0px;
  79. color: #FFFFFF;
  80. border: 0;
  81. padding: 0;
  82. display: block;
  83. margin-bottom: 50px;
  84. }
  85. .form__btn:focus {
  86. outline:none;
  87. }
  88. .form__btn:hover {
  89. cursor: pointer;
  90. background: #0d79c5 0% 0% no-repeat padding-box;
  91. }
  92. .result__summary, .result__list {
  93. font: normal normal normal 14px/18px "Montserrat Regular";
  94. letter-spacing: -0.8px;
  95. }
  96. .body__result {
  97. height: fit-content;
  98. max-height: 500px;
  99. overflow-x: hidden;
  100. overflow-y: auto;
  101. transition: max-height 1s;
  102. }
  103. .hidden {
  104. max-height: 0;
  105. transition: max-height 1s;
  106. }
  107. .result__summary:after {
  108. content: '';
  109. border-bottom: 1px solid #000000;
  110. display: block;
  111. width: 100%;
  112. height: 8.5px;
  113. opacity: 0.15;
  114. margin-bottom: 29.5px
  115. }
  116. .result__list {
  117. list-style-position: inside;
  118. padding: 0;
  119. margin: 0;
  120. }