diff --git a/_config.yml b/_config.yml index e11d832e..20d82e19 100644 --- a/_config.yml +++ b/_config.yml @@ -1,6 +1,7 @@ title: Minimal Mistakes tagline: Jekyll Theme description: A responsive Jekyll theme with editorial design tendencies. +#Comment out url when working locally to resolve base urls correctly url: http://mmistakes.github.io/minimal-mistakes # Owner/author information goes here. diff --git a/_layouts/home.html b/_layouts/home.html index 4fedaf09..cfe1c6d4 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -26,6 +26,7 @@
+ View all articles

Latest Articles


{% for post in site.categories.articles limit:5 %} diff --git a/assets/css/ie.css b/assets/css/ie.css index 805f658f..7c0be407 100644 --- a/assets/css/ie.css +++ b/assets/css/ie.css @@ -1049,13 +1049,16 @@ svg:not(:root) { /* IE7 inline-block hack */ *zoom: 1; - padding: 12px; + padding: 12px 24px; margin-bottom: 2em; line-height: 1; text-align: center; text-transform: uppercase; vertical-align: middle; border: 4px double #333332; + -webkit-border-radius: 50px; + -moz-border-radius: 50px; + border-radius: 50px; cursor: pointer; *margin-left: .3em; -webkit-transition: 0.4s linear; @@ -1086,6 +1089,24 @@ svg:not(:root) { color: #ffffff; border-color: #ffffff; } +.btn-small { + font-size: 60%; + padding: 6px 12px; +} +/* Well ================================================= */ +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} /* Standard form controls ================================== */ form { margin: 0 0 5px 0; diff --git a/assets/css/main.css b/assets/css/main.css index 862f6d2d..74eb156b 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1328,13 +1328,16 @@ svg:not(:root) { /* IE7 inline-block hack */ *zoom: 1; - padding: 12px; + padding: 12px 24px; margin-bottom: 2em; line-height: 1; text-align: center; text-transform: uppercase; vertical-align: middle; border: 4px double #333332; + -webkit-border-radius: 50px; + -moz-border-radius: 50px; + border-radius: 50px; cursor: pointer; *margin-left: .3em; -webkit-transition: 0.4s linear; @@ -1365,6 +1368,24 @@ svg:not(:root) { color: #ffffff; border-color: #ffffff; } +.btn-small { + font-size: 60%; + padding: 6px 12px; +} +/* Well ================================================= */ +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} /* Custom set of Icomoon webfont icons ===================== */ @font-face { font-family: 'icomoon'; diff --git a/assets/less/elements.less b/assets/less/elements.less index 77bcada9..b0ca695f 100644 --- a/assets/less/elements.less +++ b/assets/less/elements.less @@ -44,13 +44,14 @@ svg:not(:root) { *display: inline; /* IE7 inline-block hack */ *zoom: 1; - padding: 12px; + padding: 12px 24px; margin-bottom: 2em; line-height: 1; text-align: center; text-transform: uppercase; vertical-align: middle; border: 4px double @textcolor; + .rounded(50px); cursor: pointer; *margin-left: .3em; .transition(.4s linear); @@ -76,4 +77,18 @@ svg:not(:root) { color: @white; border-color: @white; } +} +.btn-small { + font-size: 60%; + padding: 6px 12px; +} +/* Well ================================================= */ +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + .rounded(4px); + .box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.05)); } \ No newline at end of file diff --git a/images/bio-photo.jpg b/images/bio-photo.jpg index d8937996..65dc72e3 100644 Binary files a/images/bio-photo.jpg and b/images/bio-photo.jpg differ