Crisp.css

Docs

Add this to your html file to enjoy :)

<link rel="stylesheet" href="https://crispbykush.netlify.app/crisp.css" />

Buttons

<button class="btn">Default Button</button>
<button class="btn btn-primary">Primary</button>
<button class="btn btn-success">Success</button>
<button class="btn btn-danger">Danger</button>
<button class="btn btn-warning">Warning</button>

Check Boxes

<label><input class="checkbox" type="checkbox" /> Option 1</label>
<label><input class="checkbox" type="checkbox" /> Option 1</label>
<label><input class="checkbox" type="checkbox" disabled /> Disabled</label>

Forms

<form>
<div>
<label> Name: </label>
<input class="form-input" type="text" placeholder="Your name" />
</div>
<div>
<label> Email: </label>
<input class="form-input" type="text" placeholder="you@example.com" />
</div>
<div>
<label> Message: </label>
<input class="form-input" placeholder="Say something nice..." />
</div>
<button class="btn" type="submit">
Send
</button>
</form>