style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. -webkit-appearance: none;
  67. -moz-appearance: none;
  68. appearance: none;
  69. }
  70. .form__input:focus {
  71. outline:none;
  72. }
  73. .form__input::placeholder {
  74. color: #CCC9C9;
  75. }
  76. .form__btn {
  77. height: 42px;
  78. width: 100%;
  79. background: #1082D2 0% 0% no-repeat padding-box;
  80. font: normal normal bold 15px/23px "Montserrat Bold";
  81. letter-spacing: 0px;
  82. color: #FFFFFF;
  83. border: 0;
  84. padding: 0;
  85. display: block;
  86. margin-bottom: 50px;
  87. -webkit-appearance: none;
  88. -moz-appearance: none;
  89. appearance: none;
  90. }
  91. .form__btn:focus {
  92. outline:none;
  93. }
  94. .form__btn:hover {
  95. cursor: pointer;
  96. background: #0d79c5 0% 0% no-repeat padding-box;
  97. }
  98. .result__summary, .result__list {
  99. font: normal normal normal 14px/18px "Montserrat Regular";
  100. letter-spacing: -0.8px;
  101. }
  102. .body__result {
  103. height: fit-content;
  104. max-height: 500px;
  105. overflow-x: hidden;
  106. overflow-y: auto;
  107. transition: max-height 1s;
  108. }
  109. .hidden {
  110. max-height: 0;
  111. transition: max-height 1s;
  112. }
  113. .result__summary:after {
  114. content: '';
  115. border-bottom: 1px solid #000000;
  116. display: block;
  117. width: 100%;
  118. height: 8.5px;
  119. opacity: 0.15;
  120. margin-bottom: 29.5px
  121. }
  122. .result__list {
  123. text-transform: capitalize;
  124. list-style-position: inside;
  125. padding: 0;
  126. margin: 0;
  127. }