12345678910111213141516171819202122232425262728293031323334353637383940 |
- .details-title{
- text-align: center;
- font-size: 2rem;
- font-weight: bold;
- margin-top: 1.5rem;
- }
- .life-container{
- display: flex;
- flex-direction: column;
- gap: 1.5rem;
- margin-top: 3rem;
- }
- .life-box{
- display: grid;
- grid-template-rows: 1fr 1fr;
- justify-content: center;
- gap: 0.5rem;
- text-align: center;
- }
- .life-input{
- width: 20%;
- font-size: 1.5rem;
- margin:auto;
- text-align: center;
- appearance: textfield;
- -moz-appearance: textfield;
- border-radius: 10px;
- border: none;
- box-shadow: var(--shadow-small);
- &::-webkit-inner-spin-button,
- &::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;}
- }
|