le_fay
1
Для тех, кому лень подбирать пиксели
`html,
body {
width: 300px;
margin: 0;
padding: 0;
font-size: 18px;
font-family: “Arial”, sans-serif;
background: white;
}
.btn {
width: 150px;
margin:35px auto;
padding: 15px 20px;
text-align: center;
text-transform: uppercase;
color: white;
border-radius: 5px;
background: #bdc3c7;
cursor: pointer;
}
.btn1 {
box-shadow: 3px 6px 0 0 #e74c3c;
background: #2c3e50;
}
.btn2 {
box-shadow: 0 5px 5px 0 #2c3e50;
background: #e74c3c;
}
.btn3 {
box-shadow: inset 0 0 0px 4px #e74c3c;
background: #2c3e50;
}`
2 лайка
Спасибо, а то я слегка завис)
tema96
3
.btn1 {
background-color:#2c3e50;
box-shadow:3px 6px 0 0 #e74c3c;
}
.btn2 {
background-color:#e74c3c;
box-shadow:0px 5px 5px 0px #2c3e50;
}
.btn3 {
background-color:#2c3e50;
box-shadow:inset 0px 0px 0 4px #e74c3c;
}
Спасибо. Со второй кнопкой не смог разобраться. Подглядел
06/12/2022
.btn1 {
box-shadow: 3px 6px 0 0 #e74c3c;
background: #2c3e50;
}
.btn2 {
box-shadow: 0 5px 5px 0 #2c3e50 ;
background: #e74c3c;
}
.btn3 {
box-shadow:inset 0 0 0 4px #e74c3c ;
background: #2c3e50;
}
html,
body {
margin: 0;
padding: 0;
width: 300px;
background-color: white;
font-size: 18px;
font-family: "Arial", sans-serif;
}
.btn {
display: block;
margin: 35px auto;
padding: 15px 20px;
width: 150px;
border-radius: 5px;
border: none;
box-sizing: content-box;
background-color: #bdc3c7;
color: white;
text-align: center;
text-transform: uppercase;
font: inherit;
}
.btn1 {
background-color: #2c3e50;
box-shadow: 3px 6px 0 0 #e74c3c;
}
.btn2 {
background-color: #e74c3c;
box-shadow: 0 5px 5px 0 #2c3e50;
}
.btn3 {
background-color: #2c3e50;
box-shadow: inset 0 0 0 4px #e74c3c;
}