this repo has no description
at master 530 B view raw
1.rings { 2 margin-top: 1rem; 3 text-align: center; 4 5 details > summary { 6 list-style: none; 7 cursor: pointer; 8 9 &::before, &::after { 10 margin: 0 .5rem; 11 } 12 13 &::before { content: ''; } 14 &::after { content: ''; } 15 16 &::-webkit-details-marker { 17 display: none; 18 } 19 } 20 21 details[open] { 22 summary { 23 &::before, &::after { 24 content: ''; 25 } 26 27 margin-bottom: 1rem; 28 } 29 } 30 31 ul { 32 list-style: none; 33 margin: 0; 34 } 35 36 li { 37 margin: 0; 38 padding: 0; 39 } 40}