SNPR
27.Июль.2017 06:30:10
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;
}
.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 лайк
Ineska
27.Июль.2017 08:53:41
2
Было бы лучше вместо .help использовать псевдоэлемент. Всё-таки использование в разметке пустых блоков для декоративных целей не является хорошей практикой.
1 лайк
SNPR
27.Июль.2017 09:08:02
3
Исправил код:
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 лайк
vic4884
29.Сентябрь.2017 15:38:15
4
т.е. help в коде чтобы сбить с толку?
1 лайк
Ineska
13.Октябрь.2017 17:46:59
5
.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;
}
Makvorn
06.Декабрь.2019 08:51:14
10
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 ;
}