8,960
edits
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
.circular-chart { | .circular-chart { | ||
position: relative; | position: relative; | ||
width: | width: 250px; | ||
height: | height: 250px; | ||
border-radius: 50%; | border-radius: 50%; | ||
list-style: none; | list-style: none; | ||
| Line 50: | Line 50: | ||
top: 50%; | top: 50%; | ||
left: 50%; | left: 50%; | ||
width: | width: 150px; | ||
height: | height: 150px; | ||
background-color: | background-color: var(--setlist-bg-color); /* Используем ту же переменную */ | ||
border-radius: 50%; | border-radius: 50%; | ||
transform: translate(-50%, -50%); | transform: translate(-50%, -50%); | ||
| Line 788: | Line 788: | ||
.unco-table > tr > th, .unco-table > tr > td, .unco-table > * > tr > th, .unco-table > * > tr > td { padding: 0.2em 0.4em; } | .unco-table > tr > th, .unco-table > tr > td, .unco-table > * > tr > th, .unco-table > * > tr > td { padding: 0.2em 0.4em; } | ||
.setlist-table | .setlist-table { | ||
--setlist-bg-color: #efe9de; /* Определяем переменную для цвета */ | |||
background-color: var(--setlist-bg-color); | |||
border: 3px solid #c14424; | |||
text-align: left; | |||
margin: 1em 0; | |||
border-collapse: collapse; | |||
} | |||
.custom-table tbody .cell-red { background-color: #ffdddd; } | .custom-table tbody .cell-red { background-color: #ffdddd; } | ||