index.css 1.3 KB

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