Skip to content

Commit 00d74bd

Browse files
Site layout refactor (#61)
* 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
1 parent 996fe87 commit 00d74bd

File tree

111 files changed

+12290
-18042
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+12290
-18042
lines changed

.stylelintrc

Lines changed: 0 additions & 8 deletions
This file was deleted.

gulp.d/tasks/lint-css.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

gulpfile.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ const cleanTask = createTask({
2727
call: task.remove(['build', 'public']),
2828
})
2929

30-
const lintCssTask = createTask({
31-
name: 'lint:css',
32-
desc: 'Lint the CSS source files using stylelint (standard config)',
33-
call: task.lintCss(glob.css),
34-
})
35-
3630
const lintJsTask = createTask({
3731
name: 'lint:js',
3832
desc: 'Lint the JavaScript source files using eslint (JavaScript Standard Style)',
@@ -42,7 +36,7 @@ const lintJsTask = createTask({
4236
const lintTask = createTask({
4337
name: 'lint',
4438
desc: 'Lint the CSS and JavaScript source files',
45-
call: parallel(lintCssTask, lintJsTask),
39+
call: lintJsTask,
4640
})
4741

4842
const formatTask = createTask({

0 commit comments

Comments
 (0)