life-details.component.scss 700 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .details-title{
  2. text-align: center;
  3. font-size: 2rem;
  4. font-weight: bold;
  5. margin-top: 1.5rem;
  6. }
  7. .life-container{
  8. display: flex;
  9. flex-direction: column;
  10. gap: 1.5rem;
  11. margin-top: 3rem;
  12. }
  13. .life-box{
  14. display: grid;
  15. grid-template-rows: 1fr 1fr;
  16. justify-content: center;
  17. gap: 0.5rem;
  18. text-align: center;
  19. }
  20. .life-input{
  21. width: 20%;
  22. font-size: 1.5rem;
  23. margin:auto;
  24. text-align: center;
  25. appearance: textfield;
  26. -moz-appearance: textfield;
  27. border-radius: 10px;
  28. border: none;
  29. box-shadow: var(--shadow-small);
  30. &::-webkit-inner-spin-button,
  31. &::-webkit-outer-spin-button {
  32. -webkit-appearance: none;
  33. margin: 0;}
  34. }