You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

158 lines
1.9 KiB

  1. html {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. body {
  6. background-color: #ECECEC;
  7. padding: 0;
  8. margin: 0;
  9. font-family: "Montserrat", sans-serif;
  10. min-height: calc(100vh + 8em);
  11. }
  12. body * {
  13. font-weight: bold;
  14. }
  15. .futura-font {
  16. font-family: Futura;
  17. }
  18. h2 {
  19. font-size: 2em;
  20. color: #212121;
  21. }
  22. header {
  23. position: fixed;
  24. width: 100%;
  25. background: #323232;
  26. height: 4em;
  27. z-index: 9999;
  28. }
  29. header h3 {
  30. padding: 0;
  31. margin: 0;
  32. padding-top: 0.10em;
  33. font-size: 1.5em;
  34. }
  35. header * {
  36. display: inline-block;
  37. padding-left: 1em;
  38. padding-right: 1em;
  39. padding-top: 0.7em;
  40. margin-left: 2em;
  41. margin-right: 2em;
  42. }
  43. header .right-header {
  44. float: right;
  45. }
  46. header a {
  47. text-decoration: none;
  48. color: white;
  49. }
  50. a:hover {
  51. text-decoration: underline;
  52. }
  53. main {
  54. margin: 3em;
  55. margin-top: 0;
  56. padding: 2em;
  57. background-color: #cccccc;
  58. position: relative;
  59. top: 5em;
  60. }
  61. main h2 {
  62. margin-top: 0.2em;
  63. margin-bottom: 0.2em;
  64. }
  65. .list-header {
  66. display: inline-block;
  67. width: 100%;
  68. height: 60px;
  69. }
  70. .list-header * {
  71. display: inline-block;
  72. }
  73. .list-header h3 {
  74. width: 50%;
  75. margin-right: 0;
  76. }
  77. #new-post {
  78. float: right;
  79. height: auto;
  80. }
  81. #new-post button {
  82. margin: 0;
  83. margin-top: 16px;
  84. margin-bottom: 10px;
  85. width: 5em;
  86. padding: 5px;
  87. background-color: #323232;
  88. color: white;
  89. border: 0;
  90. border-radius: 5px;
  91. }
  92. table,
  93. table::before,
  94. table::after {
  95. box-sizing: border-box;
  96. margin: 0;
  97. padding: 0;
  98. }
  99. table {
  100. border-collapse: collapse;
  101. box-shadow: 0 5px 10px rgb(0, 0, 0, 0.25);
  102. background-color: white;
  103. text-align: left;
  104. overflow: hidden;
  105. width: 100%;
  106. }
  107. thead {
  108. box-shadow: 0 5px 10px #e1e5ee;
  109. font-weight: 1000;
  110. }
  111. th {
  112. padding: 1rem 2rem;
  113. text-transform: uppercase;
  114. letter-spacing: 0.1rem;
  115. font-size: 0.7rem;
  116. font-weight: 900;
  117. }
  118. td {
  119. padding: 1rem 2rem;
  120. }
  121. a {
  122. text-decoration: none;
  123. }
  124. .amount {
  125. text-align: right;
  126. }
  127. tr:nth-child(even) {
  128. background-color: #e1e5ee;
  129. }