JSFiddle - React, Tailwind, and code Playground
by TheBuzzer
HTML
<form id="ThisForm">
<input type="button" class="btn" value="Bouton Test" />
</form>
CSS
body {
background-color:#7685A4;
}
input.btn {
background-color: #b4c1d8;
-moz-border-radius:6px;
-webkit-border-radius:6px;
-o-border-radius:6px;
border-radius:6px;
border: solid 3px;
border-color: #9faabf #6c61a9#6c61a9#9faabf;
margin:35px;
font-family:Trebuchet MS;
font-weight: bold;
color: #281C68;
padding-left: -5px;
padding-top: -5px;
}
input.btn:active {
border-color: #6c61a9#9faabf #9faabf #6c61a9;
font-weight: lighter;
}