index.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. html {
  2. background-color: inherit;
  3. }
  4. body {
  5. /* background-color: rgb(245, 245, 245); */
  6. background-color: rgb(249 249 249);
  7. }
  8. .app {
  9. min-height: 100vh;
  10. position: relative;
  11. }
  12. .content-wrapper {
  13. padding: 60px 0 calc(230px + 60px) 0;
  14. }
  15. .card {
  16. background-color: white;
  17. /*padding: 20px;*/
  18. }
  19. .toast {
  20. z-index: 10000 !important;
  21. }
  22. ul {
  23. list-style: none;
  24. margin: 0;
  25. display: block;
  26. }
  27. h1, h2, h3, h4, h5, h6 {
  28. font-weight: 400;
  29. line-height: 1.1;
  30. }
  31. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  32. font-weight: inherit;
  33. }
  34. h1 {
  35. font-size: 4.2rem;
  36. line-height: 110%;
  37. margin: 2.1rem 0 1.68rem 0;
  38. }
  39. h2 {
  40. font-size: 3.56rem;
  41. line-height: 110%;
  42. margin: 1.78rem 0 1.424rem 0;
  43. }
  44. h3 {
  45. font-size: 2.92rem;
  46. line-height: 110%;
  47. margin: 1.46rem 0 1.168rem 0;
  48. }
  49. h4 {
  50. font-size: 2.28rem;
  51. line-height: 110%;
  52. margin: 1.14rem 0 0.912rem 0;
  53. }
  54. h5 {
  55. font-size: 1.64rem;
  56. line-height: 110%;
  57. margin: 0.82rem 0 0.656rem 0;
  58. }
  59. h6 {
  60. font-size: 1rem;
  61. line-height: 110%;
  62. margin: 0.5rem 0 0.4rem 0;
  63. }
  64. .thin {
  65. font-weight: 200;
  66. }
  67. .left {
  68. float: left !important;
  69. }
  70. .right {
  71. float: right !important;
  72. }
  73. .light-blue {
  74. background-color: #ff4545 !important;
  75. }
  76. .white {
  77. background-color: #FFFFFF !important;
  78. }
  79. .btn-search {
  80. font-size: 14px;
  81. }
  82. a.nav-item.is-tab {
  83. border-bottom: 1px solid transparent;
  84. border-top: 1px solid transparent;
  85. }
  86. .button.is-info {
  87. background-color: #ff4545;
  88. border-width: 0;
  89. color: #fff;
  90. }
  91. strong {
  92. color: inherit;
  93. }