diff --git a/src/_layouts/default.html b/src/_layouts/default.html index b4d3f92..33a879c 100644 --- a/src/_layouts/default.html +++ b/src/_layouts/default.html @@ -11,34 +11,25 @@ - - - - -
+
+
-
- -
-
-
+ +
+ + {{ content }} diff --git a/src/about.markdown b/src/about.markdown deleted file mode 100644 index e6e2bcd..0000000 --- a/src/about.markdown +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: page -title: About ---- - -This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) - -You can find the source code for Minima at GitHub: -[jekyll][jekyll-organization] / -[minima](https://github.com/jekyll/minima) - -You can find the source code for Jekyll at GitHub: -[jekyll][jekyll-organization] / -[jekyll](https://github.com/jekyll/jekyll) - - -[jekyll-organization]: https://github.com/jekyll diff --git a/src/assets/stylesheets/falador.scss b/src/assets/stylesheets/falador.scss index e5a6580..bcd3b6b 100644 --- a/src/assets/stylesheets/falador.scss +++ b/src/assets/stylesheets/falador.scss @@ -2,49 +2,44 @@ --- body{ - padding-top: 100px; - background: #212121; + padding-top: 25px; + background-image: url(http://i.imgur.com/cxd3JtU.png); + background-size: auto; + background-position: center center; color: #eee; + font-size: 2rem; +} + +a{ + text-decoration: none; +} + +#wrapper{ + padding: 25px 40px; + background: #212121; } #main-navigation{ - position: fixed; - top: 0; - left: 0; - width: 100%; background: #569045; + padding: 10px 15px; box-shadow: 3px 3px 2px rgba(0, 0, 0, .4); ul{ - display: inline-block; list-style: none; - &.left-menu{ - left: 0; - } - &.right-menu{ - margin-left: auto; - margin-right: 0; - } + margin: 0; li{ display: inline-block; + margin: 0; } a{ - color: #212121; + padding: 10px 15px; + color: #fff; + font-weight: bold; transition: color 300ms ease-in-out; &:hover{ - color: lighten(#212121, 10%); + color: lighten(#000, 10%); } } } } - -#banner{ - position: relative; - z-index: 2; - height: 420px; - background-image: url(http://i.imgur.com/cxd3JtU.png); - background-size: auto; - background-position: center center; - overflow: hidden; -}