Installation #
There are currently two different ways to install cu.css in your project, depending on whether you prefer to work with CSS or SASS.
Installing CSS #
Follow these steps if you plan to work with CSS:
- Download the full project from Github.
- Copy
main.css
ormain.min.css
from the public/css folder into your project. - Copy the fonts directory into your project.
The final step is to link to your stylesheet file inside the <head>
of your pages:
<link rel="stylesheet" href="main.min.css" media="screen">
Installing SASS #
Follow these steps if you plan to work with the SASS:
- Download the full project from Github.
- Copy the scss directory into your project.
- Copy the fonts directory into your project.
You will also need a build step to transpile Sass to CSS. Those working with Hugo can refer to the Hugo Docs or the cu.css repository to learn how this works.