Halcyon.css is a minimalist css framework in development. The end goal is getting decent looking websites with as little custom css as possible.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../src/sass/halcyon.css">
<title>Test</title>
</head>
<body>
<form>
<h3 class="text-purple text-large">A Simple Form</h3>
<input type="text" name="" id="">
<input type="text" name="" id="">
<input type="text" name="" id="">
<textarea name="" id="" cols="30" rows="10"></textarea>
<button type="submit" class="btn-purple">Submit Form</button>
</form>
</body>
</html>