diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..c08f9add --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_site \ No newline at end of file diff --git a/_config.yml b/_config.yml new file mode 100644 index 00000000..85daa771 --- /dev/null +++ b/_config.yml @@ -0,0 +1,3 @@ +name: Your New Jekyll Site +markdown: redcarpet +pygments: true diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 00000000..0cf1b35e --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,13 @@ + + N.H. + + + + + + + + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 00000000..3d14e21b --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,11 @@ + +{% include head.html %} + + + + +{{ content }} + + + + \ No newline at end of file diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 00000000..04e3586b --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,9 @@ +--- +layout: default +--- +

{{ page.title }}

+

{{ page.date | date_to_string }}

+ +
+{{ content }} +
diff --git a/css/main.css b/css/main.css new file mode 100644 index 00000000..47550cf2 --- /dev/null +++ b/css/main.css @@ -0,0 +1,60 @@ +* { + padding: 0; + margin: 0; +} + +body { + background-color: #333; +} + +p { + color: #fff; + font-family: Helvetica; + font-size: 16px; + line-height: 24px; + margin-bottom: 22px; + -webkit-font-smoothing: antialiased; +} + +a { + color: #fff; + font-weight: bold; + text-decoration: none; + border-bottom: 1px solid rgba(255,255,255,0.3); +} + +a:hover { + color: #990000; + border-bottom: 1px solid rgba(255,255,255,1); +} + +#monogram { + width: 50px; + padding: 50px 0 0 0; + margin: 0 auto 0 50px; +} + +#about { + width: 360px; + padding: 0 0 0 150px; + margin: -35px 50px 0 auto !important; +} + +@media (max-width: 767px) { + #monogram { + position: relative; + width: auto; + padding: 20px; + margin: 0; + } + + #about { + position: relative; + width: auto; + padding: 20px; + margin: 0 !important; + } + + background-image { + opacity: 0.2; + } \ No newline at end of file diff --git a/img/monogram.png b/img/monogram.png new file mode 100644 index 00000000..367bf552 Binary files /dev/null and b/img/monogram.png differ diff --git a/img/nh_bg.jpg b/img/nh_bg.jpg new file mode 100644 index 00000000..c3ab2cff Binary files /dev/null and b/img/nh_bg.jpg differ diff --git a/index.html b/index.md similarity index 58% rename from index.html rename to index.md index 52815718..90818ebe 100644 --- a/index.html +++ b/index.md @@ -1,35 +1,3 @@ - - - - - N.H. - - - - - - - - - - - -
@@ -49,12 +17,10 @@ $(function(){ $(window).resize(function(){ if($(this).width() >= 767){ - $.backstretch("nh_bg.jpg", {speed: 150}); + $.backstretch("nh_bg.jpg", {speed: 150});//insert image for wallpaper by changing path of "nh_bg.jpg" to whatever the path to your picture is. } }) .resize();//trigger resize on page load }); - - \ No newline at end of file