add wide screen configuration (#157)
add wide screen configuration by adding a `max_width` config in `_config.yml`
This commit is contained in:
parent
7886538992
commit
b73662bf9d
@ -24,6 +24,10 @@ last_updated: false # set to true if you want to display last updated in the foo
|
||||
|
||||
navbar_fixed: true
|
||||
footer_fixed: true
|
||||
|
||||
# Dimensions
|
||||
max_width: 800px
|
||||
|
||||
# TODO: add layout settings (single page vs. multi-page)
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
@ -3,9 +3,7 @@
|
||||
* To adjust anything, simply edit the variables below and rebuild the theme.
|
||||
******************************************************************************/
|
||||
|
||||
// Dimensions
|
||||
|
||||
$max-content-width: 800px;
|
||||
|
||||
// Colors
|
||||
$red-color: #FF3636 !default;
|
||||
|
@ -3,6 +3,9 @@
|
||||
---
|
||||
@charset "utf-8";
|
||||
|
||||
// Dimensions
|
||||
$max-content-width: {{site.max_width}};
|
||||
|
||||
@import
|
||||
"variables",
|
||||
"themes",
|
||||
|
Loading…
Reference in New Issue
Block a user