Skip to content

Commit

Permalink
Site layout refactor (#61)
Browse files Browse the repository at this point in the history
* a lot of overhauls with styling.
* new site layout with an animated drawer
* put base rem back to 16px
* shifting hbs templates around to match new structure better

* navigation improvements

* linter

* tailwindify toc

* linter

* new logo templates

* remove stylelint, organize css files better, remove site-vars and replace with tokens

* fix template issues

* footer updates

* toc overflow

* small fixes

* tweak collapse component

* adjust dark mode purple colors

* nav tweaks

* open first nav collapse on landing page

* lock position of content when no toc is available

* fix landing page layout

* remove the weird fragment jumper js

* tree view nav

* remove subsection collapses

* tiny fix
colegoldsmith authored Jan 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 996fe87 commit 00d74bd
Showing 111 changed files with 12,290 additions and 18,042 deletions.
8 changes: 0 additions & 8 deletions .stylelintrc

This file was deleted.

10 changes: 0 additions & 10 deletions gulp.d/tasks/lint-css.js

This file was deleted.

8 changes: 1 addition & 7 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -27,12 +27,6 @@ const cleanTask = createTask({
call: task.remove(['build', 'public']),
})

const lintCssTask = createTask({
name: 'lint:css',
desc: 'Lint the CSS source files using stylelint (standard config)',
call: task.lintCss(glob.css),
})

const lintJsTask = createTask({
name: 'lint:js',
desc: 'Lint the JavaScript source files using eslint (JavaScript Standard Style)',
@@ -42,7 +36,7 @@ const lintJsTask = createTask({
const lintTask = createTask({
name: 'lint',
desc: 'Lint the CSS and JavaScript source files',
call: parallel(lintCssTask, lintJsTask),
call: lintJsTask,
})

const formatTask = createTask({
Loading

0 comments on commit 00d74bd

Please sign in to comment.