soft button
<!DOCTYPE html>
<html>
<head>
<title>Soft Button</title>
</head>
<body>
<a href="#"><span>Button</span></a>
</body>
</html>
<style type="text/css">
*{
margin: 0px;
padding: 0px;
font-family: arial;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f2f3f7;
}
a{
position: relative;
display: inline-block;
padding: 10px 30px;
text-decoration: none;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 2px;
color: #5a84a2;
font-size: 18px;
border-radius: 40px;
box-shadow: -2px -2px 8px rgba(255,255,255,1),
-2px -2px 12px rgba(255,255,255,0.5),
inset 2px 2px 4px rgba(255, 255, 255, 0.1),
2px 2px 8px rgba(0,0,0,0.15);
}
a:hover{
box-shadow: inset -2px -2px 8px rgba(255,255,255,1),
inset -2px -2px 12px rgba(255,255,255,0.5),
inset 2px 2px 4px rgba(255, 255, 255, 0.1),
inset 2px 2px 8px rgba(0,0,0,0.15);
}
a:hover span{
display: inline-block;
transform: scale(0.98);
}
</style>
Comments
Post a Comment