index.css 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /* inter-regular - latin */
  2. @font-face {
  3. font-family: "Inter";
  4. font-style: normal;
  5. font-weight: 400;
  6. src: url("/fonts/inter-v3-latin-regular.eot"); /* IE9 Compat Modes */
  7. src: local(""), url("/fonts/inter-v3-latin-regular.eot?#iefix") format("embedded-opentype"),
  8. /* IE6-IE8 */ url("/fonts/inter-v3-latin-regular.woff2") format("woff2"),
  9. /* Super Modern Browsers */ url("/fonts/inter-v3-latin-regular.woff") format("woff"),
  10. /* Modern Browsers */ url("/fonts/inter-v3-latin-regular.ttf") format("truetype"),
  11. /* Safari, Android, iOS */ url("/fonts/inter-v3-latin-regular.svg#Inter") format("svg"); /* Legacy iOS */
  12. }
  13. /* inter-200 - latin */
  14. @font-face {
  15. font-family: "Inter";
  16. font-style: normal;
  17. font-weight: 200;
  18. src: url("/fonts/inter-v3-latin-200.eot"); /* IE9 Compat Modes */
  19. src: local(""), url("/fonts/inter-v3-latin-200.eot?#iefix") format("embedded-opentype"),
  20. /* IE6-IE8 */ url("/fonts/inter-v3-latin-200.woff2") format("woff2"),
  21. /* Super Modern Browsers */ url("/fonts/inter-v3-latin-200.woff") format("woff"),
  22. /* Modern Browsers */ url("/fonts/inter-v3-latin-200.ttf") format("truetype"),
  23. /* Safari, Android, iOS */ url("/fonts/inter-v3-latin-200.svg#Inter") format("svg"); /* Legacy iOS */
  24. }
  25. /* inter-800 - latin */
  26. @font-face {
  27. font-family: "Inter";
  28. font-style: normal;
  29. font-weight: 800;
  30. src: url("/fonts/inter-v3-latin-800.eot"); /* IE9 Compat Modes */
  31. src: local(""), url("/fonts/inter-v3-latin-800.eot?#iefix") format("embedded-opentype"),
  32. /* IE6-IE8 */ url("/fonts/inter-v3-latin-800.woff2") format("woff2"),
  33. /* Super Modern Browsers */ url("/fonts/inter-v3-latin-800.woff") format("woff"),
  34. /* Modern Browsers */ url("/fonts/inter-v3-latin-800.ttf") format("truetype"),
  35. /* Safari, Android, iOS */ url("/fonts/inter-v3-latin-800.svg#Inter") format("svg"); /* Legacy iOS */
  36. }
  37. /* inter-600 - latin */
  38. @font-face {
  39. font-family: "Inter";
  40. font-style: normal;
  41. font-weight: 600;
  42. src: url("/fonts/inter-v3-latin-600.eot"); /* IE9 Compat Modes */
  43. src: local(""), url("/fonts/inter-v3-latin-600.eot?#iefix") format("embedded-opentype"),
  44. /* IE6-IE8 */ url("/fonts/inter-v3-latin-600.woff2") format("woff2"),
  45. /* Super Modern Browsers */ url("/fonts/inter-v3-latin-600.woff") format("woff"),
  46. /* Modern Browsers */ url("/fonts/inter-v3-latin-600.ttf") format("truetype"),
  47. /* Safari, Android, iOS */ url("/fonts/inter-v3-latin-600.svg#Inter") format("svg"); /* Legacy iOS */
  48. }
  49. /* pacifico-regular - latin */
  50. @font-face {
  51. font-family: "Pacifico";
  52. font-style: normal;
  53. font-weight: 400;
  54. src: url("/fonts/pacifico-v17-latin-regular.eot"); /* IE9 Compat Modes */
  55. src: local(""), url("/fonts/pacifico-v17-latin-regular.eot?#iefix") format("embedded-opentype"),
  56. /* IE6-IE8 */ url("/fonts/pacifico-v17-latin-regular.woff2") format("woff2"),
  57. /* Super Modern Browsers */ url("/fonts/pacifico-v17-latin-regular.woff") format("woff"),
  58. /* Modern Browsers */ url("/fonts/pacifico-v17-latin-regular.ttf") format("truetype"),
  59. /* Safari, Android, iOS */ url("/fonts/pacifico-v17-latin-regular.svg#Pacifico") format("svg"); /* Legacy iOS */
  60. }
  61. @font-face {
  62. font-family: "Material Icons";
  63. font-style: normal;
  64. font-weight: 400;
  65. src: url(/fonts/MaterialIcons-Regular.ttf); /* For IE6-8 */
  66. src: local("Material Icons"), local("MaterialIcons-Regular"),
  67. url(/fonts/MaterialIcons-Regular.ttf) format("truetype");
  68. }
  69. .material-icons {
  70. font-family: "Material Icons";
  71. font-weight: normal;
  72. font-style: normal;
  73. font-size: 24px; /* Preferred icon size */
  74. display: inline-block;
  75. line-height: 1;
  76. text-transform: none;
  77. letter-spacing: normal;
  78. word-wrap: normal;
  79. white-space: nowrap;
  80. direction: ltr;
  81. /* Support for all WebKit browsers. */
  82. -webkit-font-smoothing: antialiased;
  83. /* Support for Safari and Chrome. */
  84. text-rendering: optimizeLegibility;
  85. /* Support for Firefox. */
  86. -moz-osx-font-smoothing: grayscale;
  87. /* Support for IE. */
  88. font-feature-settings: "liga";
  89. }
  90. html {
  91. background-color: inherit;
  92. }
  93. body {
  94. /* background-color: rgb(245, 245, 245); */
  95. background-color: rgb(249 249 249);
  96. }
  97. .app {
  98. min-height: 100vh;
  99. position: relative;
  100. }
  101. .content-wrapper {
  102. padding: 60px 0 calc(230px + 60px) 0;
  103. }
  104. .card {
  105. background-color: white;
  106. /*padding: 20px;*/
  107. }
  108. .toast {
  109. z-index: 10000 !important;
  110. }
  111. ul {
  112. list-style: none;
  113. margin: 0;
  114. display: block;
  115. }
  116. h1,
  117. h2,
  118. h3,
  119. h4,
  120. h5,
  121. h6 {
  122. font-weight: 400;
  123. line-height: 1.1;
  124. }
  125. h1 a,
  126. h2 a,
  127. h3 a,
  128. h4 a,
  129. h5 a,
  130. h6 a {
  131. font-weight: inherit;
  132. }
  133. h1 {
  134. font-size: 4.2rem;
  135. line-height: 110%;
  136. margin: 2.1rem 0 1.68rem 0;
  137. }
  138. h2 {
  139. font-size: 3.56rem;
  140. line-height: 110%;
  141. margin: 1.78rem 0 1.424rem 0;
  142. }
  143. h3 {
  144. font-size: 2.92rem;
  145. line-height: 110%;
  146. margin: 1.46rem 0 1.168rem 0;
  147. }
  148. h4 {
  149. font-size: 2.28rem;
  150. line-height: 110%;
  151. margin: 1.14rem 0 0.912rem 0;
  152. }
  153. h5 {
  154. font-size: 1.64rem;
  155. line-height: 110%;
  156. margin: 0.82rem 0 0.656rem 0;
  157. }
  158. h6 {
  159. font-size: 1rem;
  160. line-height: 110%;
  161. margin: 0.5rem 0 0.4rem 0;
  162. }
  163. .thin {
  164. font-weight: 200;
  165. }
  166. .left {
  167. float: left !important;
  168. }
  169. .right {
  170. float: right !important;
  171. }
  172. .white {
  173. background-color: #FFFFFF !important;
  174. }
  175. .btn-search {
  176. font-size: 14px;
  177. }
  178. a.nav-item.is-tab {
  179. border-bottom: 1px solid transparent;
  180. border-top: 1px solid transparent;
  181. }
  182. .button.is-info {
  183. border-width: 0;
  184. color: #fff;
  185. }
  186. strong {
  187. color: inherit;
  188. }