index.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. @font-face {
  2. font-family: 'Material Icons';
  3. font-style: normal;
  4. font-weight: 400;
  5. src: url(/fonts/MaterialIcons-Regular.ttf); /* For IE6-8 */
  6. src: local('Material Icons'),
  7. local('MaterialIcons-Regular'),
  8. url(/fonts/MaterialIcons-Regular.ttf) format('truetype');
  9. }
  10. .material-icons {
  11. font-family: 'Material Icons';
  12. font-weight: normal;
  13. font-style: normal;
  14. font-size: 24px; /* Preferred icon size */
  15. display: inline-block;
  16. line-height: 1;
  17. text-transform: none;
  18. letter-spacing: normal;
  19. word-wrap: normal;
  20. white-space: nowrap;
  21. direction: ltr;
  22. /* Support for all WebKit browsers. */
  23. -webkit-font-smoothing: antialiased;
  24. /* Support for Safari and Chrome. */
  25. text-rendering: optimizeLegibility;
  26. /* Support for Firefox. */
  27. -moz-osx-font-smoothing: grayscale;
  28. /* Support for IE. */
  29. font-feature-settings: 'liga';
  30. }
  31. html {
  32. background-color: inherit;
  33. }
  34. body {
  35. /* background-color: rgb(245, 245, 245); */
  36. background-color: rgb(249 249 249);
  37. }
  38. .app {
  39. min-height: 100vh;
  40. position: relative;
  41. }
  42. .content-wrapper {
  43. padding: 60px 0 calc(230px + 60px) 0;
  44. }
  45. .card {
  46. background-color: white;
  47. /*padding: 20px;*/
  48. }
  49. .toast {
  50. z-index: 10000 !important;
  51. }
  52. ul {
  53. list-style: none;
  54. margin: 0;
  55. display: block;
  56. }
  57. h1, h2, h3, h4, h5, h6 {
  58. font-weight: 400;
  59. line-height: 1.1;
  60. }
  61. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  62. font-weight: inherit;
  63. }
  64. h1 {
  65. font-size: 4.2rem;
  66. line-height: 110%;
  67. margin: 2.1rem 0 1.68rem 0;
  68. }
  69. h2 {
  70. font-size: 3.56rem;
  71. line-height: 110%;
  72. margin: 1.78rem 0 1.424rem 0;
  73. }
  74. h3 {
  75. font-size: 2.92rem;
  76. line-height: 110%;
  77. margin: 1.46rem 0 1.168rem 0;
  78. }
  79. h4 {
  80. font-size: 2.28rem;
  81. line-height: 110%;
  82. margin: 1.14rem 0 0.912rem 0;
  83. }
  84. h5 {
  85. font-size: 1.64rem;
  86. line-height: 110%;
  87. margin: 0.82rem 0 0.656rem 0;
  88. }
  89. h6 {
  90. font-size: 1rem;
  91. line-height: 110%;
  92. margin: 0.5rem 0 0.4rem 0;
  93. }
  94. .thin {
  95. font-weight: 200;
  96. }
  97. .left {
  98. float: left !important;
  99. }
  100. .right {
  101. float: right !important;
  102. }
  103. .white {
  104. background-color: #FFFFFF !important;
  105. }
  106. .btn-search {
  107. font-size: 14px;
  108. }
  109. a.nav-item.is-tab {
  110. border-bottom: 1px solid transparent;
  111. border-top: 1px solid transparent;
  112. }
  113. .button.is-info {
  114. border-width: 0;
  115. color: #fff;
  116. }
  117. strong {
  118. color: inherit;
  119. }