123456789101112131415161718192021222324252627282930 |
- .initiative-container{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border: 1px solid #8d8c8c;
- }
- .initiative-input{
- border: none;
- outline: none;
- text-align: center;
- background-color: transparent;
- width: 100%;
- font-size: 2rem;
- font-weight: 600;
- }
- .initiative-input::-webkit-outer-spin-button,
- .initiative-input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- appearance: none;
- margin: 0;
- }
- .initiative-label{
- font-size: 1.25rem;
- font-weight: 600;
- text-align: center;
- padding: 0.5rem;
- }
|