style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. body {
  2. max-width: 1200px;
  3. padding: 15px;
  4. box-sizing: border-box;
  5. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  6. }
  7. table {
  8. text-align: center;
  9. border-spacing: 0;
  10. font-size: 20px;
  11. width: 50%;
  12. margin: 0 auto;
  13. height: 450px;
  14. margin-bottom: 50px;
  15. }
  16. td,
  17. th {
  18. border: 1px solid #000;
  19. }
  20. td {
  21. cursor: pointer;
  22. }
  23. .th,
  24. .th .th {
  25. background-color: rgba(48, 48, 48, 0.867);
  26. color: rgb(72, 255, 0);
  27. font-weight: 700;
  28. }
  29. .tdtd {
  30. background-color: rgba(0, 255, 242, 0.582);
  31. color: rgb(3, 3, 43);
  32. font-weight: 500;
  33. }
  34. .tr-even {
  35. background-color: rgba(233, 233, 233, 0.867);
  36. }
  37. .calc {
  38. text-align: center;
  39. }
  40. .calc__inner input {
  41. text-align: center;
  42. font-size: 16px;
  43. line-height: 30px;
  44. margin-bottom: 20px;
  45. border: none;
  46. box-shadow: 0px 0px 14px 0px rgba(83, 19, 19, 0.25);
  47. }
  48. .btn__inner {
  49. display: flex;
  50. justify-content: center;
  51. align-items: center;
  52. }
  53. .btn {
  54. cursor: pointer;
  55. border: none;
  56. background-color: transparent;
  57. font-size: 22px;
  58. display: flex;
  59. justify-content: center;
  60. align-items: center;
  61. width: 35px;
  62. height: 35px;
  63. margin: 0 10px;
  64. box-shadow: 0px 0px 14px 0px rgba(83, 19, 19, 0.25);
  65. }