JSFiddle - React, Tailwind, and code Playground
by Santosh Thakur
HTML
<a href="#" class="a-btn">
<span class="a-btn-symbol">X</span>
<span class="a-btn-text">Download Now</span>
<span class="a-btn-slide-text">Windows Vista / Windows 7</span>
</a>
CSS
span{
display: inline-block;
border:1px solid red;
}
.a-btn {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
padding: 10px 30px 10px 70px;
position: relative;
float: left;
display: block;
overflow: hidden;
margin: 10px;
background: #9cedef;
background: -webkit-gradient(linear, left top, left bottom, color-stop(#b7f2f4, 0), color-stop(#7ce7ea, 1));
background: -webkit-linear-gradient(top, #b7f2f4 0%, #7ce7ea 100%);
background: -moz-linear-gradient(top, #b7f2f4 0%, #7ce7ea 100%);
background: -o-linear-gradient(top, #b7f2f4 0%, #7ce7ea 100%);
background: linear-gradient(top, #b7f2f4 0%, #7ce7ea 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#b7f2f4', endColorstr='#7ce7ea', GradientType=0);
border: 1px solid #90c6c8;
border-color: #90c6c8 #78bdc0 #65b6ba;
-webkit-box-shadow: 0px -5px 0px 0px #458a8c, 0 1px 1px #d5d5d5, inset 0 1px 0 rgba(255, 255, 255, 0.8);
-moz-box-shadow: 0px -5px 0px 0px #458a8c, 0 1px 1px #d5d5d5, inset 0 1px 0 rgba(255, 255, 255, 0.8);
box-shadow: 0px -5px 0px 0px #458a8c, 0 1px 1px #d5d5d5, inset 0 1px 0 rgba(255, 255, 255, 0.8);
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.a-btn-symbol {
font-family: 'WebSymbolsRegular', cursive;
color: #437b7d;
text-shadow: 0 1px 0 #bef3f5;
font-size: 20px;
left: 20px;
width: 20px;
text-align: center;
line-height: 32px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.a-btn-text {
font-size: 20px;
color: #437b7d;
text-shadow: 0 1px 0 #bef3f5;
line-height: 16px;
font-weight: bold;
font-family: "Myriad Pro", "Trebuchet MS", sans-serif;
display: block;
}
.a-btn-slide-text {
font-family: Arial, sans-serif;
font-size: 10px;
letter-spacing: 1px;
...