style.css 534 B

123456789101112131415161718192021222324252627282930
  1. .table {
  2. border: 10px solid #ece9e0;
  3. border-collapse: separate;
  4. border-spacing: 10px;
  5. border-radius: 10px;
  6. background-color: #ece9e0;
  7. table-layout: auto;
  8. text-align: center;
  9. margin: 0 auto;
  10. }
  11. .table td {
  12. padding: 5px;
  13. background-color: #ddc37a;
  14. }
  15. .horizontal-table-head td {
  16. font-weight: 600;
  17. background-color: #bdaf88;
  18. }
  19. td:first-child {
  20. font-weight: 600;
  21. background-color: #bdaf88;
  22. }
  23. td {
  24. cursor: pointer;
  25. }
  26. .calc-wrap {
  27. text-align: center;
  28. margin-bottom: 50px;
  29. }