JSFiddle - React, Tailwind, and code Playground

by pepelsbey

HTML

<!doctype html>
<html>
<head>

</head>
<body>
<form>
    <input type="submit" value="Активировать">
</form>
</body>
</html>

CSS

form {
    margin:2em;
}
input[type=submit] {
    width:200px;
    margin:auto;
    padding:10px 0 12px;
    font:14px/1 Verdana, sans-serif;
    border:none;
    -moz-border-radius:5px;
         border-radius:5px;
    color:#fff;
    background:#00aeef;
}