Shaare your links...
417 links
Liens · Devenet Home Login RSS feed Tags cloud
  • Modifier le style par défaut des boutons radio → https://paulmakeswebsites.com/writing/shadcn-radio-button/
    input[type="radio"] {
     /* Disable the browser's default radio button styles */
     appearance: none;
     margin: 0;

     /* Recreate the circle container */
     border: 1px solid black;
     background: white;
     border-radius: 50%;

     /* Center our dot in the container */
     display: inline-grid;
     place-content: center;

     /* Use a pseudo-element to display our "dot" */
     &::before {
       content: "";
       width: 0.75rem;
       height: 0.75rem;
       border-radius: 50%;
     }

     /* And display it when the radio button is checked */
     &:checked::before {
       background: black;
     }
    }
    Thu Jan 22 23:46:15 2026 – #permalink
    css html
Shaarli by sebsauvage
Shaarli-Theme by Nicolas based on idleman theme