Испытание: зловещие тени [17/17] - 100%. Всё ли правильно сделал?

Здравствуйте, прошу оценить код.

html,
body {
    width: 300px;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: "Arial", sans-serif;
    background: #ecf0f1;
}

.btn {
    position: relative;
    width: 250px;
    margin: 0 25px;
    margin-top: 100px;
    padding: 20px 0;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    background: #2c3e50;
    cursor: pointer;
    box-shadow:
    0 -20px 0 -10px #c0392b,
    0 -40px 0 -20px #e74c3c,
    0 20px 0 -10px #2980b9,
    0 40px 0 -20px #3498db,
    inset 0 5px 0 0 #2ecc71,
    inset 0 -5px 0 0 #16a085;
}

.help {
    position: absolute;
    width: 125px;
    height: 60px;
    box-shadow:
    inset 0 5px 0 0 #16a085,
    inset 0 -5px 0 0 #2ecc71;
    top: 100px;
    left: 150px;
}
1 лайк

Было бы лучше вместо .help использовать псевдоэлемент. Всё-таки использование в разметке пустых блоков для декоративных целей не является хорошей практикой.

1 лайк

Исправил код:

html,
body {
    width: 300px;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: "Arial", sans-serif;
    background: #ecf0f1;
}

.btn {
    position: relative;
    width: 250px;
    margin: 0 25px;
    margin-top: 100px;
    padding: 20px 0;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    background: #2c3e50;
    cursor: pointer;
    box-shadow:
    0 -20px 0 -10px #c0392b,
    0 -40px 0 -20px #e74c3c,
    0 20px 0 -10px #2980b9,
    0 40px 0 -20px #3498db,
    inset 0 5px 0 0 #2ecc71,
    inset 0 -5px 0 0 #16a085;
}

.btn::after {
    content: "";
    position: absolute;
    width: 125px;
    height: 60px;
    box-shadow:
    inset 0 5px 0 0 #16a085,
    inset 0 -5px 0 0 #2ecc71;
    top: 0px;
    right: 0px;
}
1 лайк

т.е. help в коде чтобы сбить с толку?:roll_eyes:

1 лайк

.help для тех, кто не знает, что такое псевдоэлементы и как ими пользоваться.

На случай если кому-то понадобится

html,
body {
  margin: 0;
  padding: 0;
  width: 300px;
  background-color: #ecf0f1;
  font-size: 18px;
  font-family: "Arial", sans-serif;
}

.btn {
  display: block;
  margin: 0 25px;
  margin-top: 100px;
  padding: 20px 0;
  width: 250px;
  border: none;
  box-sizing: content-box;
  background-color: #2c3e50;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font: inherit;
  line-height: 20px; 
  position: relative;
  box-shadow: 
    inset 0 5px 0 0 #16a085,
    inset 0 -5px 0 0 #16a085,
    0 20px 0 -10px #2980b9,
    0 40px 0 -20px #3498db,
    0 -20px 0 -10px #c0392b,
    0 -40px 0 -20px #e74c3c;
}

.btn::before  {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 125px;
  height: 5px;
  box-shadow: inset 0 -5px 0 0 #2ecc71;
} 

.btn::after  {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 125px;
  height: 5px;
  box-shadow: inset 0 5px 0 0 #2ecc71;
}

C help все проще чем в первом коде, да и с псевдами

.btn {
display: block;
margin: 0 25px;
margin-top: 105px;
padding: 15px 0;
width: 250px;
border: none;
box-sizing: content-box;
background-color: #2c3e50;
color: white;
text-align: center;
text-transform: uppercase;
font: inherit;
line-height: 20px;
box-shadow:
0 -5px 0 0 #16a085,
0 5px 0 0 #16a085,
0 -25px 0 -10px #c0392b,
0 25px 0 -10px #2980b9,
0 -45px 0 -20px #e74c3c,
0 45px 0 -20px #3498db
}

.help {background: #2ecc71;
width: 125px;
height: 5px;
margin-left: 150px;
box-shadow: -125px -55px 0 0 #2ecc71
}

1 лайк

Дак ты изменил Padding, в целом твой код действенный, но что бы не менять отступ, можно добавить в help

margin-top: -5px;

Попробовал и через .help и через ::before, зачем добавлять ::after, довольно таки длинный получается код. Через ::before можно просто добавить цвет фона и ему уже тень отзеркаленную

html,
body {
margin: 0;
padding: 0;
width: 300px;
background-color: #ecf0f1;
font-size: 18px;
font-family: “Arial”, sans-serif;
}
.btn {
display: block;
margin: 0 25px;
margin-top: 100px;
padding: 20px 0;
width: 250px;
border: none;
box-sizing: content-box;
background-color: #2c3e50;
color: white;
text-align: center;
text-transform: uppercase;
font: inherit;
line-height: 20px;
box-shadow:
/* верхняя тень /
inset 0 5px 0 0 #16a085,
0 -20px 0 -10px #c0392b,
0 -40px 0 -20px #e74c3c,
/
нижняя тень /
inset 0 -5px 0 0 #16a085,
0 20px 0 -10px #2980b9,
0 40px 0 -20px #3498db;
}
/
Светло-зеленая тень */
.btn::before {
content: “”;
background-color: #2ecc71;
position: absolute;
top: 100px;
left: 25px;
width: 125px;
height: 5px;
box-shadow: 125px 55px 0 0 #2ecc71;
}