Neumorphic Radio Buttons - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Neumorphic Radio Buttons</title> <style> body { font-family: 'Arial', sans-serif; background-color: #ecf0f3; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .radio-group { display: flex; flex-direction: column; gap: 15px; } .radio-container { display: flex; align-items: center; position: relative; cursor: pointer; } .radio-container input { position: absolute; opacity: 0; cursor: pointer; } .radio-checkmark { width: 25px; height: 25px; background-color: #ecf0f3; border-radius: 50%; box-shadow: 5px 5px 15px #babecc, -5px -5px 15px #ffffff; display: flex; justify-content: center; align-items: center; transition: box-shadow 0.3s; } .radio-checkmark::after { content: ''; width: 15px; height: 15px; background-color: #ecf0f3; border-radius: 50%; box-shadow: inset 5px 5px 15px #babecc, inset -5px -5px 15px #ffffff; transform: scale(0); transition: transform 0.3s; } .radio-container input:checked ~ .radio-checkmark::after { transform: scale(1); } .radio-label { margin-left: 10px; font-size: 18px; color: #333; } </style> </head> <body> <div class="radio-group"> <label class="radio-container"> <input type="radio" name="neumorphic-radio" checked> <span class="radio-checkmark"></span> <span class="radio-label">Neumorphic Option 1</span> </label> <label class="radio-container"> <input type="radio" name="neumorphic-radio"> <span class="radio-checkmark"></span> <span class="radio-label">Neumorphic Option 2</span> </label> <label class="radio-container"> <input type="radio" name="neumorphic-radio"> <span class="radio-checkmark"></span> <span class="radio-label">Neumorphic Option 3</span> </label> </div> </body> </html>