Испытание. Дуэль. 18 / 18.

Здравствуйте.

Вот, наконец, справился с испытанием этого курса, прошел на 100%,
но вот сижу и никак не могу взять в толк, зачем в конце CSS кода
изначально стоят 4 селектора со свойством: display: none;
Не нашел им никакого практического применения.

P.S.: Делал без подсказок, после того как прочел статью по :nthchild,
как-то вошел во вкус, вот и получилось слишком много лишних строк,
извиняюсь, заранее, если для ответа нужно будет читать мой код :smiley:

[code]body {
width: 280px;
margin: 0;
padding: 0;
}

.shooter-1 {
padding: 55px 0 55px 0;
border-bottom: 1px dashed #cccccc;
background: #fcf8e3;
}

.shooter-2 {
padding: 55px 0 55px 0;
background: #d9edf7;
}

.target {
width: 200px;
height: 25px;
margin: 0 auto;
padding: 10px 15px 10px 15px;
border-radius: 2px;
background: white;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
overflow: hidden;
list-style: none;
}

.shooter-1 li:nth-child(1),
.shooter-1 li:nth-child(2),
.shooter-1 li:nth-child(3),
.shooter-1 li:nth-child(4),
.shooter-1 li:nth-child(5),
.shooter-2 li:nth-child(1),
.shooter-2 li:nth-child(2),
.shooter-2 li:nth-child(3),
.shooter-2 li:nth-child(4),
.shooter-2 li:nth-child(5)
{
position: relative;
float: left;
width: 22px;
height: 22px;
margin-right: 20px;
border: 1px solid black;
border-radius: 50%;
background: #333333;
font-size: 0;
}

.shooter-1 li:nth-child(5),
.shooter-2 li:nth-child(5)
{
margin-right: 0;
}

.shooter-1 li:nth-child(2) .hitbox,
.shooter-1 li:nth-child(3) .hitbox,
.shooter-1 li:nth-child(5) .hitbox,
.shooter-2 li:nth-child(1) .hitbox,
.shooter-2 li:nth-child(4) .hitbox,
.shooter-2 li:nth-child(5) .hitbox
{
width: 10px;
height: 10px;
margin: 6px auto;
border-radius: 50%;
background: #999999;
}

.shooter-1 li:nth-child(1) .lever,
.shooter-1 li:nth-child(4) .lever,
.shooter-2 li:nth-child(2) .lever,
.shooter-2 li:nth-child(3) .lever
{
position: absolute;
top: -2px;
left: -2px;
width: 26px;
height: 26px;
border-radius: 50%;
background: #f5f5f5;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.shooter-1 li:nth-child(1) .lever > span,
.shooter-1 li:nth-child(4) .lever > span,
.shooter-2 li:nth-child(2) .lever > span,
.shooter-2 li:nth-child(3) .lever > span
{
position: absolute;
top: 12px;
left: 11px;
width: 5px;
height: 25px;
background: #f5f5f5;
box-shadow:
-1px 15px 2px rgba(0, 0,0 , 0.3),
1px 15px 2px rgba(0, 0, 0, 0.3);
}

selector {
display: none;
}

selector {
display: none;
}

selector {
display: none;
}

selector {
display: none;
}
[/code]

Почитал форум и понял, что они нужны для “аккуратного” стиля написания CSS кода.
Надо будет снова на днях попробовать пройти это испытание другим способом.
Извиняюсь за засорение форума :slight_smile:

1 лайк