diff --git a/.sass-cache/d9c07a9bad333b113ae9c5f526ec1695c801ded0/_base.scssc b/.sass-cache/d9c07a9bad333b113ae9c5f526ec1695c801ded0/_base.scssc index fbc97db..829e49a 100644 Binary files a/.sass-cache/d9c07a9bad333b113ae9c5f526ec1695c801ded0/_base.scssc and b/.sass-cache/d9c07a9bad333b113ae9c5f526ec1695c801ded0/_base.scssc differ diff --git a/.sass-cache/d9c07a9bad333b113ae9c5f526ec1695c801ded0/_layout.scssc b/.sass-cache/d9c07a9bad333b113ae9c5f526ec1695c801ded0/_layout.scssc index e7eb93b..8cedbb5 100644 Binary files a/.sass-cache/d9c07a9bad333b113ae9c5f526ec1695c801ded0/_layout.scssc and b/.sass-cache/d9c07a9bad333b113ae9c5f526ec1695c801ded0/_layout.scssc differ diff --git a/_includes/disqus.html b/_includes/disqus.html index 5d6716b..3112b55 100644 --- a/_includes/disqus.html +++ b/_includes/disqus.html @@ -1,4 +1,4 @@ -
+
-
-
- {{ content }} -
-
- {% include footer.html %} - - diff --git a/_layouts/main.html b/_layouts/main.html index 95b71e0..61eeb5d 100644 --- a/_layouts/main.html +++ b/_layouts/main.html @@ -1,13 +1,21 @@ {% include head.html %} - - {% include header.html %} -
-
+ +
+
+

{{ site.title }}

+

{{ site.description }}

+
+ {% include header.html %} +
+
{{ content }} -
-
- {% include footer.html %} - + + {% include footer.html %} + + diff --git a/_layouts/page.html b/_layouts/page.html index 62a94e0..6f05b66 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -4,7 +4,7 @@ layout: main
-

{{ page.title }}

+

{{ page.title }}

diff --git a/_layouts/post.html b/_layouts/post.html index 837af1f..979e61d 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -4,7 +4,7 @@ layout: main
-

{{ page.title }}

+

{{ page.title }}

diff --git a/_layouts/slide.html b/_layouts/slide.html deleted file mode 100644 index cfb104a..0000000 --- a/_layouts/slide.html +++ /dev/null @@ -1,6 +0,0 @@ -
-
-

{{ page.title }}

- {{ content }} -
-
diff --git a/_posts/2016-08-31-bam-on-github.md b/_posts/2016-08-31-bam-on-github.md index 2b3ad4b..f0ea7a8 100644 --- a/_posts/2016-08-31-bam-on-github.md +++ b/_posts/2016-08-31-bam-on-github.md @@ -1,7 +1,7 @@ --- layout: post title: "Just a quick post. BAM!, my first web app (still in development) is on Github!" -date: 2016-08-15 12:00:00 +0200 +date: 2016-08-31 12:00:00 +0200 categories: programming --- As you can read from the title, I'm publishing the uncompleted code of my first webapp. I'm working on this since 3 weeks, and I'm proud of what I've done so far. diff --git a/_posts/2016-09-13-css-update.md b/_posts/2016-09-13-css-update.md new file mode 100644 index 0000000..384e8d7 --- /dev/null +++ b/_posts/2016-09-13-css-update.md @@ -0,0 +1,7 @@ +--- +layout: post +title: "Css updated!" +date: 2016-09-13 21:30:00 +0200 +categories: update +--- +As you can see, now the css is decent! Now I'm using [Skeleton](http://getskeleton.com) and a couple of custom sass lines that you can check out on Github. Currently, I'm a bit busy with BAM! so I'm not sure I'll find the time for this. Anyway, enjoy the new look! diff --git a/_sass/_base.scss b/_sass/_base.scss index 6be7736..a2aaebb 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -172,85 +172,6 @@ pre { } } -.header{ - background: #ffcc00; - float: left; - width: -webkit-calc(100% - #{$spacing-unit}); - width: calc(100% - #{$spacing-unit}); - max-width: -webkit-calc(100% - #{$spacing-unit}); - max-width: calc(100% - #{$spacing-unit}); - z-index: 1; - box-shadow: 0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24); - margin: 0; - padding-left: 0; - - @include media-query($on-laptop) { - width: -webkit-calc(100% - #{$spacing-unit} / 2); - width: calc(100% - #{$spacing-unit} / 2); - max-width: -webkit-calc(100% - #{$spacing-unit} / 2); - max-width: calc(100% - #{$spacing-unit} / 2); - } - - @include media-query($on-palm) { - width: -webkit-calc(100% - 4em); - width: calc(100% - 4em); - max-width: -webkit-calc(100% - 4em); - max-width: calc(100% - 4em); - padding-right: 4em; - display: flex; - } -} - -.site-logo{ - width: 56px; - height: 56px; - float: left; - margin-right: $spacing-unit; - - @include media-query($on-laptop) { - margin-right: calc(#{$spacing-unit} / 2); - } -} - -.slideshowItem{ - background-position:50% 50%; - background-size:cover; - text-align: center; - display: -webkit-flex; - display: -moz-flex; - display: flex; - opacity: 1; - color: white; - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - transition: opacity 1s; - /*margin-bottom: $spacing-unit; - - @include media-query($on-laptop) { - margin-bottom: calc(#{$spacing-unit} / 2); - }*/ -} - -.slideshowContainer{ - position: relative; - width: 100%; - height: $slideshow-height; -} - -.slideshowItem > .slideshowContent{ - margin: auto; - z-index: 2; - box-shadow: 0px 0px 20px 8px rgba(0,0,0,0.95); - background: rgba(0,0,0,0.8) -} - -.slideshowItem.fadeOut { - opacity:0; -} - /** * Clearfix */ diff --git a/_sass/_layout.scss b/_sass/_layout.scss index 364cdde..2cf2a6d 100644 --- a/_sass/_layout.scss +++ b/_sass/_layout.scss @@ -1,255 +1,105 @@ -/** - * Site header - */ -.site-header { - border-top: 5px solid $grey-color-dark; - border-bottom: 1px solid $grey-color-light; - min-height: 56px; +$header-border: 1px solid #eee; - // Positioning context for the mobile navigation icon - position: relative; +body{ + background-color: #333; + font-family: 'Hammersmith One', sans-serif; + color: white; + display: flex; + min-height: 100vh; + flex-direction: column; } -.site-title { - font-size: 26px; - font-weight: 300; - line-height: 56px; - letter-spacing: -1px; - margin-bottom: 0; - float: left; +main { + flex: 1 0 auto; +} - &, - &:visited { - color: $grey-color-dark; +.navbar-list .navbar-item{ + text-transform: uppercase; + font-weight: 400; + display: inline-block; + margin: 1em; +} + +ul.navbar-list{ + border-top: $header-border; + border-bottom: $header-border; + margin-bottom: 2rem; +} + +.header { + padding-top: 6rem; + text-align: center; +} + +@media (min-width: 700px){ + .header { + padding-top: 14rem; } - @include media-query($on-laptop) { - line-height: 46px; - font-size: 22px; - margin-top: 5px; - margin-bottom: 5px; - } - @include media-query($on-palm) { - line-height: 20px; - font-size: 17px; - margin: auto; +} + +.head{ + padding: 0 1rem 6rem 1rem; +} + +@media (max-width: 700px){ + .navbar-list .navbar-item { + width: 100%; } } -.site-nav { - z-index: 5; - float: right; - line-height: 56px; - - .menu-icon { - display: none; - } - - .page-link { - color: $text-color; - line-height: $base-line-height; - - // Gaps between nav items, but not on the last one - &:not(:last-child) { - margin-right: 20px; - } - } - - @include media-query($on-palm) { - position: absolute; - top: 9px; - right: $spacing-unit / 2; - background-color: $background-color; - border: 1px solid $grey-color-light; - border-radius: 5px; - text-align: right; - - .menu-icon { - display: block; - float: right; - width: 36px; - height: 26px; - line-height: 0; - padding-top: 10px; - text-align: center; - - > svg { - width: 18px; - height: 15px; - - path { - fill: $grey-color-dark; - } - } - } - - .trigger { - clear: both; - display: none; - } - - &:hover .trigger { - display: block; - padding-bottom: 5px; - } - - .page-link { - display: block; - padding: 5px 10px; - - &:not(:last-child) { - margin-right: 0; - } - margin-left: 20px; - } - } +.navbar-item a{ + color: $brand-color; } - - -/** - * Site footer - */ -.site-footer { - padding: $spacing-unit 0; -} - -.footer-heading { - font-size: 18px; - margin-bottom: $spacing-unit / 2; -} - -.contact-list, -.social-media-list { - list-style: none; +ul.post-list, ul.navbar-list{ + list-style-type: none; margin-left: 0; + margin-right: 0; } -.footer-col-wrapper { - font-size: 15px; - color: $grey-color; - margin-left: -$spacing-unit / 2; - @extend %clearfix; +.header, footer{ + background-color: rgba(0,0,0,0.25); } -.footer-col { - float: left; - margin-bottom: $spacing-unit / 2; - padding-left: $spacing-unit / 2; +footer{ + padding-top: 1rem; } -.footer-col-1 { - width: -webkit-calc(35% - (#{$spacing-unit} / 2)); - width: calc(35% - (#{$spacing-unit} / 2)); +footer .author{ + text-align: center; + text-transform: uppercase; + } -.footer-col-2 { - width: -webkit-calc(20% - (#{$spacing-unit} / 2)); - width: calc(20% - (#{$spacing-unit} / 2)); +.container{ + padding-top: 1rem; + padding-bottom: 1rem; } -.footer-col-3 { - width: -webkit-calc(45% - (#{$spacing-unit} / 2)); - width: calc(45% - (#{$spacing-unit} / 2)); +.icons{ + text-align: center; } -@include media-query($on-laptop) { - .footer-col-1, - .footer-col-2 { - width: -webkit-calc(50% - (#{$spacing-unit} / 2)); - width: calc(50% - (#{$spacing-unit} / 2)); - } +a.icon{ + display: inline-table; + background-color: rgba(255,255,255,0.5); + border-radius: 1.75em; + width: 3.5em; + height: 3.5em; + text-align: center; + line-height: 3.5em; + margin: .5em; + color: white; + cursor: pointer; - .footer-col-3 { - width: -webkit-calc(100% - (#{$spacing-unit} / 2)); - width: calc(100% - (#{$spacing-unit} / 2)); + &:hover { + text-decoration: none; } } -@include media-query($on-palm) { - .footer-col { - float: none; - width: -webkit-calc(100% - (#{$spacing-unit} / 2)); - width: calc(100% - (#{$spacing-unit} / 2)); - } -} - - - -/** - * Page content - */ -.page-content { - background: RGBA(255,255,255,0.1); - padding: $spacing-unit 0; -} - -.page-heading { - font-size: 20px; -} - -.post-list { - margin-left: 0; - list-style: none; - - > li { - margin-bottom: $spacing-unit; - } -} - -.post-meta { - font-size: $small-font-size; - color: $grey-color; -} - -.post-link { - display: block; - font-size: 24px; -} - - - -/** - * Posts - */ -.post-header { - margin-bottom: $spacing-unit; -} - -.post-title { - font-size: 42px; - letter-spacing: -1px; - line-height: 1; - - @include media-query($on-laptop) { - font-size: 36px; - } -} - -.post-content { - margin-bottom: $spacing-unit; - - h2 { - font-size: 32px; - - @include media-query($on-laptop) { - font-size: 28px; - } - } - - h3 { - font-size: 26px; - - @include media-query($on-laptop) { - font-size: 22px; - } - } - - h4 { - font-size: 20px; - - @include media-query($on-laptop) { - font-size: 18px; - } - } +a.icon i.fa{ + font-size: 2em; + display: table-cell; + vertical-align: middle; } diff --git a/_site/about/index.html b/_site/about/index.html index 7870fb4..1cb3d6a 100644 --- a/_site/about/index.html +++ b/_site/about/index.html @@ -9,6 +9,7 @@ + @@ -32,51 +33,51 @@ - - -
- - - -
-
+ +
-

About

+

About

@@ -90,42 +91,18 @@
-
+ +
+
+ +
-
- -
- - - - -
- +
Claudio Maggioni 2016
- + + diff --git a/_site/android-icon-144x144.png b/_site/android-icon-144x144.png index 1153cda..1be4298 100644 Binary files a/_site/android-icon-144x144.png and b/_site/android-icon-144x144.png differ diff --git a/_site/android-icon-192x192.png b/_site/android-icon-192x192.png index 3ced9ed..05d01d9 100644 Binary files a/_site/android-icon-192x192.png and b/_site/android-icon-192x192.png differ diff --git a/_site/android-icon-36x36.png b/_site/android-icon-36x36.png index bc4b658..c03bc49 100644 Binary files a/_site/android-icon-36x36.png and b/_site/android-icon-36x36.png differ diff --git a/_site/android-icon-48x48.png b/_site/android-icon-48x48.png index c87da66..5fc6e47 100644 Binary files a/_site/android-icon-48x48.png and b/_site/android-icon-48x48.png differ diff --git a/_site/android-icon-72x72.png b/_site/android-icon-72x72.png index 05da383..328b438 100644 Binary files a/_site/android-icon-72x72.png and b/_site/android-icon-72x72.png differ diff --git a/_site/android-icon-96x96.png b/_site/android-icon-96x96.png index 4d51433..b5a68b0 100644 Binary files a/_site/android-icon-96x96.png and b/_site/android-icon-96x96.png differ diff --git a/_site/apple-icon-114x114.png b/_site/apple-icon-114x114.png index 7f7b260..e5d98b1 100644 Binary files a/_site/apple-icon-114x114.png and b/_site/apple-icon-114x114.png differ diff --git a/_site/apple-icon-120x120.png b/_site/apple-icon-120x120.png index ebf0feb..36c6b09 100644 Binary files a/_site/apple-icon-120x120.png and b/_site/apple-icon-120x120.png differ diff --git a/_site/apple-icon-144x144.png b/_site/apple-icon-144x144.png index 1153cda..1be4298 100644 Binary files a/_site/apple-icon-144x144.png and b/_site/apple-icon-144x144.png differ diff --git a/_site/apple-icon-152x152.png b/_site/apple-icon-152x152.png index 86e52df..602c5e9 100644 Binary files a/_site/apple-icon-152x152.png and b/_site/apple-icon-152x152.png differ diff --git a/_site/apple-icon-180x180.png b/_site/apple-icon-180x180.png index 153da14..8e0afa8 100644 Binary files a/_site/apple-icon-180x180.png and b/_site/apple-icon-180x180.png differ diff --git a/_site/apple-icon-57x57.png b/_site/apple-icon-57x57.png index b5fa496..0be6cb9 100644 Binary files a/_site/apple-icon-57x57.png and b/_site/apple-icon-57x57.png differ diff --git a/_site/apple-icon-60x60.png b/_site/apple-icon-60x60.png index ea1faf3..ea4ef98 100644 Binary files a/_site/apple-icon-60x60.png and b/_site/apple-icon-60x60.png differ diff --git a/_site/apple-icon-72x72.png b/_site/apple-icon-72x72.png index 05da383..328b438 100644 Binary files a/_site/apple-icon-72x72.png and b/_site/apple-icon-72x72.png differ diff --git a/_site/apple-icon-76x76.png b/_site/apple-icon-76x76.png index fa65ab0..5b261b6 100644 Binary files a/_site/apple-icon-76x76.png and b/_site/apple-icon-76x76.png differ diff --git a/_site/apple-icon-precomposed.png b/_site/apple-icon-precomposed.png index e9297e2..0c3ae03 100644 Binary files a/_site/apple-icon-precomposed.png and b/_site/apple-icon-precomposed.png differ diff --git a/_site/apple-icon.png b/_site/apple-icon.png index e9297e2..0c3ae03 100644 Binary files a/_site/apple-icon.png and b/_site/apple-icon.png differ diff --git a/_site/archery/2016/08/15/my-archery-setup.html b/_site/archery/2016/08/15/my-archery-setup.html index 67c8e1f..4bfbc35 100644 --- a/_site/archery/2016/08/15/my-archery-setup.html +++ b/_site/archery/2016/08/15/my-archery-setup.html @@ -8,6 +8,7 @@ My archery setup! + @@ -31,51 +32,51 @@ - - -
- - - -
-
+ +
-

My archery setup!

+

My archery setup!

@@ -103,7 +104,7 @@
-
+
+ diff --git a/_site/css/main.css b/_site/css/main.css index c03cd4a..c5721e5 100644 --- a/_site/css/main.css +++ b/_site/css/main.css @@ -66,10 +66,10 @@ h1, h2, h3, h4, h5, h6 { * Links */ a { - color: #2a7ae2; + color: #e82; text-decoration: none; } a:visited { - color: #1756a9; } + color: #b6620e; } a:hover { color: #888; text-decoration: underline; } @@ -125,80 +125,10 @@ pre { padding-right: 15px; padding-left: 15px; } } -.header { - background: #ffcc00; - float: left; - width: -webkit-calc(100% - 30px); - width: calc(100% - 30px); - max-width: -webkit-calc(100% - 30px); - max-width: calc(100% - 30px); - z-index: 1; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - margin: 0; - padding-left: 0; } - @media screen and (max-width: 800px) { - .header { - width: -webkit-calc(100% - 30px / 2); - width: calc(100% - 30px / 2); - max-width: -webkit-calc(100% - 30px / 2); - max-width: calc(100% - 30px / 2); } } - @media screen and (max-width: 600px) { - .header { - width: -webkit-calc(100% - 4em); - width: calc(100% - 4em); - max-width: -webkit-calc(100% - 4em); - max-width: calc(100% - 4em); - padding-right: 4em; - display: flex; } } - -.site-logo { - width: 56px; - height: 56px; - float: left; - margin-right: 30px; } - @media screen and (max-width: 800px) { - .site-logo { - margin-right: calc(30px / 2); } } - -.slideshowItem { - background-position: 50% 50%; - background-size: cover; - text-align: center; - display: -webkit-flex; - display: -moz-flex; - display: flex; - opacity: 1; - color: white; - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - transition: opacity 1s; - /*margin-bottom: $spacing-unit; - - @include media-query($on-laptop) { - margin-bottom: calc(30px / 2); - }*/ } - -.slideshowContainer { - position: relative; - width: 100%; - height: 70vh; } - -.slideshowItem > .slideshowContent { - margin: auto; - z-index: 2; - box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.95); - background: rgba(0, 0, 0, 0.8); } - -.slideshowItem.fadeOut { - opacity: 0; } - /** * Clearfix */ -.wrapper:after, .footer-col-wrapper:after { +.wrapper:after { content: ""; display: table; clear: both; } @@ -214,188 +144,84 @@ pre { .icon > svg path { fill: #828282; } -/** - * Site header - */ -.site-header { - border-top: 5px solid #424242; - border-bottom: 1px solid #e8e8e8; - min-height: 56px; - position: relative; } +body { + background-color: #333; + font-family: 'Hammersmith One', sans-serif; + color: white; + display: flex; + min-height: 100vh; + flex-direction: column; } -.site-title { - font-size: 26px; - font-weight: 300; - line-height: 56px; - letter-spacing: -1px; - margin-bottom: 0; - float: left; } - .site-title, .site-title:visited { - color: #424242; } - @media screen and (max-width: 800px) { - .site-title { - line-height: 46px; - font-size: 22px; - margin-top: 5px; - margin-bottom: 5px; } } - @media screen and (max-width: 600px) { - .site-title { - line-height: 20px; - font-size: 17px; - margin: auto; } } +main { + flex: 1 0 auto; } -.site-nav { - z-index: 5; - float: right; - line-height: 56px; } - .site-nav .menu-icon { - display: none; } - .site-nav .page-link { - color: #888; - line-height: 1.5; } - .site-nav .page-link:not(:last-child) { - margin-right: 20px; } - @media screen and (max-width: 600px) { - .site-nav { - position: absolute; - top: 9px; - right: 15px; - background-color: #090909; - border: 1px solid #e8e8e8; - border-radius: 5px; - text-align: right; } - .site-nav .menu-icon { - display: block; - float: right; - width: 36px; - height: 26px; - line-height: 0; - padding-top: 10px; - text-align: center; } - .site-nav .menu-icon > svg { - width: 18px; - height: 15px; } - .site-nav .menu-icon > svg path { - fill: #424242; } - .site-nav .trigger { - clear: both; - display: none; } - .site-nav:hover .trigger { - display: block; - padding-bottom: 5px; } - .site-nav .page-link { - display: block; - padding: 5px 10px; - margin-left: 20px; } - .site-nav .page-link:not(:last-child) { - margin-right: 0; } } +.navbar-list .navbar-item { + text-transform: uppercase; + font-weight: 400; + display: inline-block; + margin: 1em; } -/** - * Site footer - */ -.site-footer { - padding: 30px 0; } +ul.navbar-list { + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; + margin-bottom: 2rem; } -.footer-heading { - font-size: 18px; - margin-bottom: 15px; } +.header { + padding-top: 6rem; + text-align: center; } -.contact-list, -.social-media-list { - list-style: none; - margin-left: 0; } +@media (min-width: 700px) { + .header { + padding-top: 14rem; } } +.head { + padding: 0 1rem 6rem 1rem; } -.footer-col-wrapper { - font-size: 15px; - color: #828282; - margin-left: -15px; } +@media (max-width: 700px) { + .navbar-list .navbar-item { + width: 100%; } } +.navbar-item a { + color: #e82; } -.footer-col { - float: left; - margin-bottom: 15px; - padding-left: 15px; } - -.footer-col-1 { - width: -webkit-calc(35% - (30px / 2)); - width: calc(35% - (30px / 2)); } - -.footer-col-2 { - width: -webkit-calc(20% - (30px / 2)); - width: calc(20% - (30px / 2)); } - -.footer-col-3 { - width: -webkit-calc(45% - (30px / 2)); - width: calc(45% - (30px / 2)); } - -@media screen and (max-width: 800px) { - .footer-col-1, - .footer-col-2 { - width: -webkit-calc(50% - (30px / 2)); - width: calc(50% - (30px / 2)); } - - .footer-col-3 { - width: -webkit-calc(100% - (30px / 2)); - width: calc(100% - (30px / 2)); } } -@media screen and (max-width: 600px) { - .footer-col { - float: none; - width: -webkit-calc(100% - (30px / 2)); - width: calc(100% - (30px / 2)); } } -/** - * Page content - */ -.page-content { - background: RGBA(255, 255, 255, 0.1); - padding: 30px 0; } - -.page-heading { - font-size: 20px; } - -.post-list { +ul.post-list, ul.navbar-list { + list-style-type: none; margin-left: 0; - list-style: none; } - .post-list > li { - margin-bottom: 30px; } + margin-right: 0; } -.post-meta { - font-size: 14px; - color: #828282; } +.header, footer { + background-color: rgba(0, 0, 0, 0.25); } -.post-link { - display: block; - font-size: 24px; } +footer { + padding-top: 1rem; } -/** - * Posts - */ -.post-header { - margin-bottom: 30px; } +footer .author { + text-align: center; + text-transform: uppercase; } -.post-title { - font-size: 42px; - letter-spacing: -1px; - line-height: 1; } - @media screen and (max-width: 800px) { - .post-title { - font-size: 36px; } } +.container { + padding-top: 1rem; + padding-bottom: 1rem; } -.post-content { - margin-bottom: 30px; } - .post-content h2 { - font-size: 32px; } - @media screen and (max-width: 800px) { - .post-content h2 { - font-size: 28px; } } - .post-content h3 { - font-size: 26px; } - @media screen and (max-width: 800px) { - .post-content h3 { - font-size: 22px; } } - .post-content h4 { - font-size: 20px; } - @media screen and (max-width: 800px) { - .post-content h4 { - font-size: 18px; } } +.icons { + text-align: center; } + +a.icon { + display: inline-table; + background-color: rgba(255, 255, 255, 0.5); + border-radius: 1.75em; + width: 3.5em; + height: 3.5em; + text-align: center; + line-height: 3.5em; + margin: .5em; + color: white; + cursor: pointer; } + a.icon:hover { + text-decoration: none; } + +a.icon i.fa { + font-size: 2em; + display: table-cell; + vertical-align: middle; } /** * Syntax highlighting styles diff --git a/_site/favicon-16x16.png b/_site/favicon-16x16.png index 166cd1a..bfe1050 100644 Binary files a/_site/favicon-16x16.png and b/_site/favicon-16x16.png differ diff --git a/_site/favicon-32x32.png b/_site/favicon-32x32.png index 9d1c182..b3c05c1 100644 Binary files a/_site/favicon-32x32.png and b/_site/favicon-32x32.png differ diff --git a/_site/favicon-96x96.png b/_site/favicon-96x96.png index 4d51433..b5a68b0 100644 Binary files a/_site/favicon-96x96.png and b/_site/favicon-96x96.png differ diff --git a/_site/favicon.ico b/_site/favicon.ico new file mode 100644 index 0000000..05d2cff Binary files /dev/null and b/_site/favicon.ico differ diff --git a/_site/feed.xml b/_site/feed.xml index 7bc2b6a..b0b1874 100644 --- a/_site/feed.xml +++ b/_site/feed.xml @@ -6,10 +6,23 @@ http://praticamentetilde.github.io/ - Wed, 31 Aug 2016 19:17:52 +0200 - Wed, 31 Aug 2016 19:17:52 +0200 + Tue, 13 Sep 2016 21:40:05 +0200 + Tue, 13 Sep 2016 21:40:05 +0200 Jekyll v3.2.1 + + Css updated! + <p>As you can see, now the css is decent! Now I’m using <a href="http://getskeleton.com">Skeleton</a> and a couple of custom sass lines that you can check out on Github. Currently, I’m a bit busy with BAM! so I’m not sure I’ll find the time for this. Anyway, enjoy the new look!</p> + + Tue, 13 Sep 2016 21:30:00 +0200 + http://praticamentetilde.github.io/update/2016/09/13/css-update.html + http://praticamentetilde.github.io/update/2016/09/13/css-update.html + + + update + + + Just a quick post. BAM!, my first web app (still in development) is on Github! <p>As you can read from the title, I’m publishing the uncompleted code of my first webapp. I’m working on this since 3 weeks, and I’m proud of what I’ve done so far.</p> @@ -18,9 +31,9 @@ <p>Maybe I can use Materialize css also for this jekyll site, or maybe this is another thing I say but I’m not going to do. Who knows.</p> - Mon, 15 Aug 2016 12:00:00 +0200 - http://praticamentetilde.github.io/programming/2016/08/15/bam-on-github.html - http://praticamentetilde.github.io/programming/2016/08/15/bam-on-github.html + Wed, 31 Aug 2016 12:00:00 +0200 + http://praticamentetilde.github.io/programming/2016/08/31/bam-on-github.html + http://praticamentetilde.github.io/programming/2016/08/31/bam-on-github.html programming diff --git a/_site/index.html b/_site/index.html index ff6a739..79b2faf 100644 --- a/_site/index.html +++ b/_site/index.html @@ -9,6 +9,7 @@ + @@ -32,194 +33,107 @@ - - - - -
- -
-
-

My Archery setup

-

The article here!

- -
-
- - -
-
-

My Arch Linux setup

-
    -
  • Arch Linux updated daily
  • -
  • Core I5 6400 with 16GB DDR4 RAM
  • -
  • Gigabyte GTX 730 (Not a gamer at all!)
  • -
  • Machine on which I write my occasional rambling!
  • -
- -
-
- - -
- -
-
-
- -

Posts

- - - -

subscribe via RSS

- -
- -
-
-