Editing CSS Basics

Simple CSS tweaks for brave beginners.


Overview

For advanced users comfortable with a little code, you can edit CSS directly for more control over styling.


Where CSS Lives

_includes/assets/css/base.css

Warning

⚠️ Advanced users only. Editing CSS can break the site layout. Always test your changes.


Simple Changes

Font Sizes

body {
  font-size: 16px;  /* Change base font size */
}

Spacing

.index-row {
  padding: 2rem;  /* Change row padding */
}

Next Steps