Customizing Your Site
Nathan Daly • December 24, 2018
configurationThis starter template comes pre-loaded with Tailwind CSS, a utility CSS framework that allows you to customize and build complex designs without touching a line of CSS. There are also a few base Sass files in the /source/_assets/sass
folder, set up with the expectation that you can add any custom CSS into _blog.scss
.
You can also re-work the architecture of the Sass files any way you’d like; just make sure to keep the
@tailwind
references in your finalmain.scss
file.
// source/_assets/sass/main.scss
@tailwind preflight;
@tailwind components;
// Code syntax highlighting,
// https://highlightjs.org
@import '~highlightjs/styles/default';
@import 'base';
@import 'navigation';
@import 'mailchimp';
@import 'blog';
@tailwind utilities;
Typography Styles
Here’s a quick preview of what some of the basic type styles will look like in this starter template:
h1 Heading
h2 Heading
h3 Heading
h4 Heading
h5 Heading
h6 Heading
The quick brown fox jumps over the lazy dog
- The quick brown fox
- jumps over
- the lazy dog
- jumps over
- The quick brown fox
- jumps over
- the lazy dog
- jumps over
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
class Foo extends bar
{
public function fooBar()
{
//
}
}