index.css 1.4 KB

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