diff --git a/_config.yml b/_config.yml index 168d236..0eb61bf 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,5 @@ name: IKRPG Wiki -pygments: false +highlighter: null permalink: /:categories/:title/ port: 8080 exclude: [ Makefile, README.md ] diff --git a/_layouts/ikrpg.html b/_layouts/ikrpg.html index 9bc7d98..6768bbc 100644 --- a/_layouts/ikrpg.html +++ b/_layouts/ikrpg.html @@ -2,6 +2,7 @@ + {{ page.title }} diff --git a/_posts/0000-01-01-Character-Cards.html b/_posts/0000-01-01-Character-Cards.html index bbba4a1..9e4a5f3 100644 --- a/_posts/0000-01-01-Character-Cards.html +++ b/_posts/0000-01-01-Character-Cards.html @@ -22,7 +22,7 @@ tags: [Character Cards]

- These are character cards for IKRPG heroes. + These character cards provide an alternative design for your IKRPG character sheets.

diff --git a/_posts/Log/0000-01-01-Index.html b/_posts/Log/0000-01-01-Index.html index ba56bc0..e20e61d 100644 --- a/_posts/Log/0000-01-01-Index.html +++ b/_posts/Log/0000-01-01-Index.html @@ -7,7 +7,7 @@ tags: [ Rules ] ---

- Visit the Full Publication Index. + Visit the Full Publication Index.

This page revisits all publications used to build the full publication index. diff --git a/static/stylesheets/index.css b/static/stylesheets/index.css index 2da9a28..f76cbb2 100644 --- a/static/stylesheets/index.css +++ b/static/stylesheets/index.css @@ -8,4 +8,6 @@ @import url("/static/stylesheets/content/lists.css") all; @import url("/static/stylesheets/content/character-sheet.css") all; @import url("/static/stylesheets/content/progress-bar.css") all; -@import url("/static/stylesheets/foot.css") all; \ No newline at end of file +@import url("/static/stylesheets/foot.css") all; +@import url("/static/stylesheets/ipad.css") all; +@import url("/static/stylesheets/iphone.css") all; \ No newline at end of file diff --git a/static/stylesheets/ipad.css b/static/stylesheets/ipad.css new file mode 100644 index 0000000..950dfa4 --- /dev/null +++ b/static/stylesheets/ipad.css @@ -0,0 +1,20 @@ +@media only screen and (max-width: 1024px) { + + body { + max-width: auto; + } + + header#head h1 { + font-size: 2em; + } + + article { + width: auto; + } + + input, textarea { + -webkit-appearance: none; + padding: 0; + } + +} \ No newline at end of file diff --git a/static/stylesheets/iphone.css b/static/stylesheets/iphone.css new file mode 100644 index 0000000..5875a3a --- /dev/null +++ b/static/stylesheets/iphone.css @@ -0,0 +1,20 @@ +@media only screen and (max-width: 480px) { + + body { + max-width: 700px; + } + + header#head h1 { + font-size: 2em; + } + + article { + width: 700px; + } + + input, textarea { + -webkit-appearance: none; + padding: 0; + } + +} \ No newline at end of file