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.

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