| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #CreateAllowance h2{
- text-align: center;
- }
- #CreateAllowance .switch{
- position: relative;
- display: inline-block;
- width: 50px;
- height: 28px;
- }
- #CreateAllowance .switch input{
- opacity: 0;
- width: 0;
- height: 0;
- }
- #CreateAllowance .slider{
- position: absolute;
- cursor: pointer;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: var(--textMuted, #ccc);
- transition: 0.4s;
- border-radius: 34px;
- }
- #CreateAllowance .slider::before{
- position: absolute;
- content: "";
- height: 20px;
- width: 20px;
- left: 4px;
- top: 4px;
- background-color: white;
- transition: 0.4s;
- border-radius: 50%;
- }
- #CreateAllowance .switch input:checked + .slider{
- background-color: var(--accent, #D4AF37);
- }
- #CreateAllowance .switch input:checked + .slider::before{
- transform: translateX(22px);
- }
|