styles.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @font-face {
  2. font-family: 'Monopoly';
  3. src: url('kabel.ttf') format('truetype');
  4. font-weight: normal;
  5. font-style: normal;
  6. }
  7. body {
  8. font-family: 'Monopoly', sans-serif;
  9. text-align: center;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. #footer {
  14. font-family: sans-serif;
  15. margin: 20px auto;
  16. max-width: 600px;
  17. padding: 20px;
  18. }
  19. h1 {
  20. font-size: 36px;
  21. color: white;
  22. background-color: red;
  23. text-transform: uppercase;
  24. margin: 20px auto;
  25. max-width: 600px;
  26. padding: 20px;
  27. border: 5px solid black;
  28. }
  29. input[type="number"] {
  30. width: 80px;
  31. }
  32. form,
  33. .wrap {
  34. margin: 20px auto;
  35. max-width: 600px;
  36. padding: 20px;
  37. border: 1px solid gray;
  38. }
  39. .centered-table {
  40. margin: 0 auto;
  41. }
  42. #setup,
  43. #balances,
  44. #transactions,
  45. #levies,
  46. #propertyList {
  47. margin: 20px auto;
  48. max-width: 600px;
  49. padding: 20px;
  50. border: 5px solid lightblue;
  51. border-radius: 1px;
  52. background-color: #c2e4d3;
  53. }
  54. #setup h2,
  55. #balances h2,
  56. #transactions h2,
  57. #levies h2,
  58. #propertyList h2 {
  59. font-size: 24px;
  60. margin-bottom: 10px;
  61. }
  62. #output {
  63. text-align: center;
  64. }
  65. #propertyItems li {
  66. display: flex;
  67. align-items: center;
  68. justify-content: space-between;
  69. margin-bottom: 10px;
  70. }
  71. .ownershipDropdown {
  72. padding: 5px;
  73. font-size: 14px;
  74. }