Css – Trouble styling the path element inside an SVG
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <link rel="stylesheet" href="./svg.css" /> <style> svg { width: 50px; height: 50px; transition: 0.5s; cursor: pointer; } #add:checked ~ label > svg > .circle { width: 100px;…