JSFiddle - React, Tailwind, and code Playground
by simucal
HTML
<div id="login">
<h3>Log In</h3>
<p>Not a member yet? <a href="/register">Register</a></p>
<fieldset>
<ol>
<li>
<label for="email">Email</label>
<input
</li>
</ol>
</fieldset>
</div>
CSS
* {
padding: 0;
margin: 0;
}
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 20px;
color: #333;
}
a {
color: #55A4F2;
text-decoration: none;
}
a:hover {
color: #1071D1;
}
fieldset ol {
list-style: none;
}
fieldset ol li {
list-style-image: none;
list-style-type: none;
}
#login, #register {
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
padding: 17px;
background: white;
border: 3px solid #E6E6E6;
float: left;
margin-left: 0;
width: 220px;
margin-right: 80px;
}
#login h3, #register h3 {
font-size: 15px;
line-height: 15px;
font-weight: bold;
margin-bottom: 5px;
}
#login p, #register p {
color: #999;
}
#login fieldset, #register fieldset {
float: left;
width: 220px;
margin-top: 20px;
}
#login fieldset label, #register fieldset label {
font-size: 11px;
text-transform: uppercase;
line-height: 20px;
}