8,960
edits
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
li.ring { | |||
width: 250px; | |||
height: 250px; | |||
border-radius: 50%; | |||
border: 20px solid #4682B4; /* Цвет кольца и его толщина */ | |||
box-sizing: border-box; | |||
background-color: transparent; /* Фон кольца */ | |||
list-style-type: none; | |||
position: relative; | |||
margin: 10px; | |||
} | |||
li.ring::before { | |||
content: ''; | |||
position: absolute; | |||
width: 160px; /* Размер внутреннего круга */ | |||
height: 160px; | |||
background-color: white; /* Цвет внутреннего круга (можно сделать прозрачным) */ | |||
border-radius: 50%; | |||
top: 50%; | |||
left: 50%; | |||
transform: translate(-50%, -50%); | |||
} | |||
li.circle { | li.circle { | ||
width: 250px; | width: 250px; | ||