add theme linernotes_dark

This commit is contained in:
wuyingren 2020-05-25 00:43:36 +08:00
parent 79f25fa452
commit ae42207b8d
35 changed files with 1613 additions and 0 deletions

View file

@ -0,0 +1,12 @@
/*
Allow for wider layout on bigger screens
- vanilla max-width is 1200px
- there is no penalty to slightly expanding flexbox on bigger screens
- only applies on landing pages (webapp will expand as you add columns)
author: trwnh
license: Public Domain
*/
@media (min-width: 1600px) {
.landing-page .container {max-width: 1600px}
}