main.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. @import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap');
  2. body {
  3. font-family: 'Work Sans', sans-serif;
  4. }
  5. /* body background */
  6. .color__grey {
  7. background-color: #f5f5f5;
  8. }
  9. .row {
  10. height: 100vh;
  11. }
  12. .page-footer {
  13. padding-bottom: 20px;
  14. }
  15. .navbar {
  16. background-color: #e57373;
  17. }
  18. .nav-link {
  19. color: rgb(99, 97, 97);
  20. padding: 1rem .75rem;
  21. }
  22. .nav-link:hover {
  23. color: rgb(27, 27, 27);
  24. }
  25. .table tbody th, .table tbody td {
  26. padding: 1rem;
  27. }
  28. td[colspan = '2'] {
  29. background-color: rgb(160, 245, 245);
  30. }
  31. .span {
  32. display: block;
  33. margin-bottom: .4rem;
  34. }
  35. .chart-wrapper {
  36. max-width: 1150px;
  37. padding: 0 10px;
  38. margin: 0 auto;
  39. }
  40. /* CHART-VALUES
  41. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  42. .chart-wrapper .chart-values {
  43. position: relative;
  44. display: flex;
  45. margin-bottom: 20px;
  46. font-weight: bold;
  47. font-size: 1.2rem;
  48. }
  49. .chart-wrapper .chart-values li {
  50. flex: 1;
  51. min-width: 80px;
  52. text-align: center;
  53. }
  54. .chart-wrapper .chart-values li:not(:last-child) {
  55. position: relative;
  56. }
  57. .chart-wrapper .chart-values li:not(:last-child)::before {
  58. content: '';
  59. position: absolute;
  60. right: 0;
  61. height: 510px;
  62. border-right: 1px solid var(--divider);
  63. }
  64. /* CHART-BARS
  65. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  66. .chart-wrapper .chart-bars li {
  67. position: relative;
  68. color: var(--white);
  69. margin-bottom: 15px;
  70. font-size: 16px;
  71. border-radius: 20px;
  72. padding: 10px 20px;
  73. width: 0;
  74. opacity: 0;
  75. transition: all 0.65s linear 0.2s;
  76. }
  77. @media screen and (max-width: 600px) {
  78. .chart-wrapper .chart-bars li {
  79. padding: 10px;
  80. }
  81. }
  82. /* FOOTER
  83. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  84. .page-footer {
  85. font-size: 0.85rem;
  86. padding: 10px;
  87. text-align: right;
  88. color: var(--black);
  89. }
  90. .page-footer span {
  91. color: #e31b23;
  92. }
  93. .dark-2 {
  94. background-color: #da3e3e;
  95. }
  96. .dark-1 {
  97. background-color: #dd6565;
  98. }
  99. .lighten-1 {
  100. background-color: #e29595;
  101. }
  102. .lighten-2 {
  103. background-color: #ddacac;
  104. }
  105. .badge {
  106. margin: .1rem;
  107. }
  108. .highTrend {
  109. color: white;
  110. }
  111. .btn__kw {
  112. padding: .75rem;
  113. background-color: #ddacac;
  114. border: none;
  115. outline: none;
  116. border-radius: 5px;
  117. transition: all .2s;
  118. }
  119. .btn__kw:hover {
  120. background-color: #e29595;
  121. }
  122. .btn__kw:focus {
  123. outline: none;
  124. }
  125. .badge {
  126. font-size: 1rem;
  127. }