style.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. html{
  2. margin: 0;
  3. width: 100vw;
  4. height: 100vh;
  5. }
  6. body{
  7. margin: 0;
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .wrapper{
  12. width: fit-content;
  13. height: fit-content;
  14. margin-left: 50px;
  15. }
  16. tr{
  17. display: flex;
  18. }
  19. th, td{
  20. width: 50px;
  21. height: 50px;
  22. border: 1px solid grey;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. #wrapperCalc{
  28. margin: 20px;
  29. display: flex;
  30. flex-direction: column;
  31. width: 400px;
  32. align-items: center;
  33. }
  34. input{
  35. margin-top: 10px;
  36. text-align: center;
  37. padding: 5px;
  38. font-size: 20px;
  39. color: lightslategray;
  40. }
  41. input[type="number"]::-webkit-outer-spin-button,
  42. input[type="number"]::-webkit-inner-spin-button {
  43. -webkit-appearance: none;
  44. margin: 0;
  45. }
  46. button{
  47. margin: 10px;
  48. width: 100px;
  49. font-size: 15px;
  50. padding: 0;
  51. }
  52. span{
  53. border-bottom: 1px solid grey;
  54. width: 260px;
  55. height: 30px;
  56. font-size: 20px;
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. }
  61. #wrapperCalcLive{
  62. display: flex;
  63. margin: 50px;
  64. padding-bottom: 100px;
  65. max-width: 600px;
  66. font-size: 20px;
  67. }
  68. .task{
  69. margin: 50px;
  70. }
  71. .equal{
  72. padding: 60px 20px;
  73. }