diff --git a/layouts/404.html b/layouts/404.html index 1819378..4d2a39c 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -3,7 +3,7 @@

404 Not Found

What you're looking for isn't here, sorry!

-

← Click here to go back home

+

← Click here to go back home

-{{ partial "foot.html" . }} \ No newline at end of file +{{ partial "foot.html" . }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 435ee5b..40705d1 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -5,11 +5,11 @@
  • {{ .Title }} {{ if isset .Params "categories" }} · - {{ $baseUrl := .Site.BaseUrl }} + {{ $baseUrl := .Site.BaseURL }} {{ range .Params.categories }}{{ . }}{{ end }} {{ end }} ·
  • {{ end }} -{{ partial "foot.html" . }} \ No newline at end of file +{{ partial "foot.html" . }} diff --git a/layouts/index.html b/layouts/index.html index e2619ec..a2a1064 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,7 +1,16 @@ {{ partial "head.html" . }}
    +{{ if isset .Site.Params "hometag" }} + {{ range .Data.Pages }} + {{ if in .Params.tags .Site.Params.hometag }} +

    {{ .Title }}

    + {{ .Content }} + {{ end }} + {{ end }} +{{ else }}
    - {{ $paginator := .Paginate (where .Data.Pages "Type" "post") }} + {{ $homesection := (or .Site.Params.homesection "post") }} + {{ $paginator := .Paginate (where .Data.Pages "Type" $homesection) }} {{ range $paginator.Pages }}

    @@ -10,7 +19,7 @@

    {{ .Description }}

    @@ -19,6 +28,7 @@

    {{ end }} {{ template "_internal/pagination.html" . }}

    +{{ end }}
    {{ with .Site.DisqusShortname }} @@ -32,4 +42,4 @@

    }()); {{ end }} -{{ partial "foot.html" . }} \ No newline at end of file +{{ partial "foot.html" . }} diff --git a/layouts/partials/foot.html b/layouts/partials/foot.html index e2c7d0a..ce1a6de 100644 --- a/layouts/partials/foot.html +++ b/layouts/partials/foot.html @@ -1,4 +1,4 @@ -{{ if isset .Site.Params "highlight" }} +{{ if isset .Site.Params "highlight" }} {{ end }} {{ with .Site.Params.googleAnalytics }} {{ end }} - \ No newline at end of file + diff --git a/layouts/partials/head.html b/layouts/partials/head.html index dff0d42..5842b9e 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -10,12 +10,12 @@ {{ .Title }} · {{ .Site.Author.name }} - - - - - - {{ if isset .Site.Params "highlight" }}{{ end }} + + + + + + {{ if isset .Site.Params "highlight" }}{{ end }} diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index eead0d6..763fa96 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -2,14 +2,30 @@

    diff --git a/layouts/post/single.html b/layouts/post/single.html index 54e5eb2..3d157e3 100644 --- a/layouts/post/single.html +++ b/layouts/post/single.html @@ -5,8 +5,8 @@

    {{ .Title }}

    {{ .Date.Format "Jan 2, 2006" }} · {{ .ReadingTime }} minute read{{ if .Site.DisqusShortname }} · Comments{{ end }} {{ if isset .Params "categories" }}
    - {{ $baseUrl := .Site.BaseUrl }} - {{ range .Params.categories }}{{ . }}{{ end }} + {{ $baseURL := .Site.BaseURL }} + {{ range .Params.categories }}{{ . }}{{ end }} {{ end }}
    {{ .Content }} @@ -37,4 +37,4 @@

    {{ .Title }}

    comments powered by Disqus {{ end }} -{{ partial "foot.html" . }} \ No newline at end of file +{{ partial "foot.html" . }} diff --git a/layouts/section/blog.html b/layouts/section/blog.html new file mode 100644 index 0000000..2f3b513 --- /dev/null +++ b/layouts/section/blog.html @@ -0,0 +1,34 @@ +{{ partial "head.html" . }} +
    +
    + {{ $paginator := .Paginate (where .Data.Pages "Type" "blog") }} + {{ range $paginator.Pages }} +
    +

    + {{ .Title }} +

    + + {{ .Content }} +
    + {{ end }} + {{ template "_internal/pagination.html" . }} +
    +
    + +{{ with .Site.DisqusShortname }} + +{{ end }} +{{ partial "foot.html" . }} diff --git a/static/css/hyde-overrides.css b/static/css/hyde-overrides.css index 4100f38..e3bd67c 100644 --- a/static/css/hyde-overrides.css +++ b/static/css/hyde-overrides.css @@ -5,7 +5,7 @@ .sidebar-about h1 { color: #fff; margin-top: 0; - font-family: "Abril Fatface", serif; + font-family: 'Quattrocento', serif; font-size: 2.5rem; } @@ -14,3 +14,73 @@ list-style: none; margin-bottom: 1rem; } + +.sidebar-sticky { + font-size: 0.8rem; +} + +.sidebar { + background-color: #51121E; +} + +html { + font-family: 'Quattrocento Sans', sans-serif; +} + +p.clip-attribute { + text-align: right; + font-size: 0.8rem; +} + +/* From http://askthecssguy.com/articles/showing-hyperlink-cues-with-css/ */ + +/* all A tags whose HREF attribute ends in .pdf */ +a[href$='.pdf'] { + padding-left: 18px; + background: transparent url(/new/icons/icon_pdf.gif) no-repeat center left; +} + +/* all A tags whose REL attribute equals pdf */ +a[rel='pdf'] { + padding-left: 18px; + background: transparent url(/new/icons/icon_pdf.gif) no-repeat center left; +} + +/* all A tags whose REL attributes has the letters pdf somewhere mixed in*/ +a[rel*='pdf'] { + padding-left: 18px; + background: transparent url(/new/icons/icon_pdf.gif) no-repeat center left; +} + +/* all A tags whose REL attribute contains the value pdf, seperated from other values with a space */ +a[rel~='pdf'] { + padding-left: 18px; + background: transparent url(/new/icons/icon_pdf.gif) no-repeat center left; +} + +/* all A tags whose HREF attribute starts with mailto: */ +a[href ^="mailto:"] { + padding-left: 18px; + background: transparent url(/new/icons/icon_mailto.gif) no-repeat center left; + +} + +/* all A tags whose CLASS attribute is popup */ +a[class ="popup"] { + padding-left: 18px; + background: transparent url(/new/icons/icon_popup.gif) no-repeat center left; +} + + +a[href$='.doc'] { + padding-left: 18px; + background: transparent url(/new/icons/icon_doc.gif) no-repeat center left; +} +a[href$='.xls'] { + padding-left: 18px; + background: transparent url(/new/icons/icon_xls.gif) no-repeat center left; +} +a[rel ~='external'] { + padding-left: 18px; + background: transparent url(/new/icons/icon_external.gif) no-repeat center left; +} diff --git a/static/css/poole.css b/static/css/poole.css index 8ec27e7..c7fb9d8 100644 --- a/static/css/poole.css +++ b/static/css/poole.css @@ -228,7 +228,6 @@ blockquote p:last-child { } img { - display: block; max-width: 100%; margin: 0 0 1rem; border-radius: 5px; diff --git a/static/css/socialicious.css b/static/css/socialicious.css new file mode 100755 index 0000000..26622c9 --- /dev/null +++ b/static/css/socialicious.css @@ -0,0 +1,655 @@ +@font-face { + font-family: "Socialicious"; + src: url("../font/socialicious.eot"); + src: url("../font/socialicious.eot?#iefix") format("embedded-opentype"), url("../font/socialicious.ttf") format("truetype"), url("../font/socialicious.svg#socialicious") format("svg"), url("../font/socialicious.woff") format("woff"); + font-weight: normal; + font-style: normal; } +[data-icon]:before { + font-family: "Socialicious" !important; + content: attr(data-icon); + font-style: normal !important; + font-weight: normal !important; + font-variant: normal !important; + text-transform: none !important; + speak: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } + +[class^="icon-"]:before, +[class*=" icon-"]:before { + font-family: "Socialicious" !important; + font-style: normal !important; + font-weight: normal !important; + font-variant: normal !important; + text-transform: none !important; + speak: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } + +.icon-bebo:before { + content: "a"; } + +.icon-bebo-sign:before { + content: "b"; } + +.icon-behance:before { + content: "c"; } + +.icon-behance-sign:before { + content: "d"; } + +.icon-bread:before { + content: "e"; } + +.icon-bread-sign:before { + content: "f"; } + +.icon-digg:before { + content: "g"; } + +.icon-digg-sign:before { + content: "h"; } + +.icon-disqus:before { + content: "i"; } + +.icon-disqus-sign:before { + content: "j"; } + +.icon-dribbble:before { + content: "k"; } + +.icon-dribbble-sign:before { + content: "l"; } + +.icon-facebook:before { + content: "m"; } + +.icon-facebook-sign:before { + content: "n"; } + +.icon-flickr:before { + content: "o"; } + +.icon-flickr-sign:before { + content: "p"; } + +.icon-github:before { + content: "s"; } + +.icon-github-sign:before { + content: "t"; } + +.icon-goodreads:before { + content: "u"; } + +.icon-goodreads-sign:before { + content: "v"; } + +.icon-googleplus:before { + content: "w"; } + +.icon-googleplus-sign:before { + content: "x"; } + +.icon-instagram:before { + content: "y"; } + +.icon-instagram-sign:before { + content: "z"; } + +.icon-klout:before { + content: "A"; } + +.icon-klout-sign:before { + content: "B"; } + +.icon-lastfm:before { + content: "C"; } + +.icon-lastfm-sign:before { + content: "D"; } + +.icon-linkedin:before { + content: "E"; } + +.icon-linkedin-sign:before { + content: "F"; } + +.icon-pinterest:before { + content: "G"; } + +.icon-pinterest-sign:before { + content: "H"; } + +.icon-pocket:before { + content: "I"; } + +.icon-pocket-sign:before { + content: "J"; } + +.icon-quora:before { + content: "K"; } + +.icon-quora-sign:before { + content: "L"; } + +.icon-reddit:before { + content: "M"; } + +.icon-reddit-sign:before { + content: "N"; } + +.icon-soundcloud:before { + content: "O"; } + +.icon-soundcloud-sign:before { + content: "P"; } + +.icon-spotify:before { + content: "Q"; } + +.icon-spotify-sign:before { + content: "R"; } + +.icon-stumbleupon:before { + content: "S"; } + +.icon-stumbleupon-sign:before { + content: "T"; } + +.icon-techendo:before { + content: "U"; } + +.icon-techendo-sign:before { + content: "V"; } + +.icon-tumblr:before { + content: "W"; } + +.icon-tumblr-sign:before { + content: "X"; } + +.icon-twitter:before { + content: "Y"; } + +.icon-twitter-sign:before { + content: "Z"; } + +.icon-vevo:before { + content: "0"; } + +.icon-vevo-sign:before { + content: "1"; } + +.icon-vimeo:before { + content: "2"; } + +.icon-vimeo-sign:before { + content: "3"; } + +.icon-wordpress:before { + content: "4"; } + +.icon-wordpress-sign:before { + content: "5"; } + +.icon-yelp:before { + content: "8"; } + +.icon-yelp-sign:before { + content: "9"; } + +.icon-youtube:before { + content: "!"; } + +.icon-youtube-sign:before { + content: "\""; } + +.icon-aboutme:before { + content: "#"; } + +.icon-aboutme-sign:before { + content: "$"; } + +.icon-angellist:before { + content: "%"; } + +.icon-angellist-sign:before { + content: "&"; } + +.icon-dropbox:before { + content: "'"; } + +.icon-dropbox-sign:before { + content: "("; } + +.icon-meetup:before { + content: ")"; } + +.icon-meetup-sign:before { + content: "*"; } + +.icon-medium:before { + content: "+"; } + +.icon-medium-sign:before { + content: ","; } + +.icon-foursquare:before { + content: "q"; } + +.icon-foursquare-sign:before { + content: "r"; } + +.icon-yahoo:before { + content: "6"; } + +.icon-yahoo-sign:before { + content: "7"; } + +/* more sprites.less reset */ +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"] { + background-image: none; } + +[class^="icon-"]:before, +[class*=" icon-"]:before { + text-decoration: inherit; + display: inline-block; + speak: none; } + +/* makes sure icons active on rollover in links */ +a [class^="icon-"], +a [class*=" icon-"] { + display: inline-block; } + +/* makes the font 33% larger relative to the icon container */ +.icon-large:before { + vertical-align: -10%; + font-size: 1.3333333333333333em; } + +.btn [class^="icon-"], +.nav [class^="icon-"], +.btn [class*=" icon-"], +.nav [class*=" icon-"] { + display: inline-block; + color: #fff; + margin-right: 2px; + margin-top: -2px; + /* keeps button heights with and without icons the same */ } + +.btn [class^="icon-"].icon-large, +.nav [class^="icon-"].icon-large, +.btn [class*=" icon-"].icon-large, +.nav [class*=" icon-"].icon-large { + line-height: .9em; } + +.btn [class^="icon-"].icon-spin, +.nav [class^="icon-"].icon-spin, +.btn [class*=" icon-"].icon-spin, +.nav [class*=" icon-"].icon-spin { + display: inline-block; } + +.nav-tabs [class^="icon-"], +.nav-pills [class^="icon-"], +.nav-tabs [class*=" icon-"], +.nav-pills [class*=" icon-"] { + /* keeps button heights with and without icons the same */ } + +.nav-tabs [class^="icon-"], +.nav-pills [class^="icon-"], +.nav-tabs [class*=" icon-"], +.nav-pills [class*=" icon-"], +.nav-tabs [class^="icon-"].icon-large, +.nav-pills [class^="icon-"].icon-large, +.nav-tabs [class*=" icon-"].icon-large, +.nav-pills [class*=" icon-"].icon-large { + line-height: .9em; } + +li [class^="icon-"], +.nav li [class^="icon-"], +li [class*=" icon-"], +.nav li [class*=" icon-"] { + display: inline-block; + width: 1.25em; + text-align: center; } + +li [class^="icon-"].icon-large, +.nav li [class^="icon-"].icon-large, +li [class*=" icon-"].icon-large, +.nav li [class*=" icon-"].icon-large { + /* increased font size for icon-large */ + width: 1.5625em; } + +ul.icons { + list-style-type: none; + text-indent: -0.75em; } + +ul.icons li [class^="icon-"], +ul.icons li [class*=" icon-"] { + width: .75em; } + +.icon-muted { + color: #eeeeee; } + +.icon-border { + border: solid 1px #eeeeee; + padding: .2em .25em .15em; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; } + +.icon-2x { + font-size: 2em; } + +.icon-2x.icon-border { + border-width: 2px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; } + +.icon-3x { + font-size: 3em; } + +.icon-3x.icon-border { + border-width: 3px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; } + +.icon-4x { + font-size: 4em; } + +.icon-4x.icon-border { + border-width: 4px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; } + +[class^="icon-"].pull-left, +[class*=" icon-"].pull-left { + margin-right: .3em; } + +[class^="icon-"].pull-right, +[class*=" icon-"].pull-right { + margin-left: .3em; } + +.btn [class^="icon-"].pull-left.icon-2x, +.btn [class*=" icon-"].pull-left.icon-2x, +.btn [class^="icon-"].pull-right.icon-2x, +.btn [class*=" icon-"].pull-right.icon-2x { + margin-top: .18em; } + +.btn [class^="icon-"].icon-spin.icon-large, +.btn [class*=" icon-"].icon-spin.icon-large { + line-height: .8em; } + +.btn.btn-small [class^="icon-"].pull-left.icon-2x, +.btn.btn-small [class*=" icon-"].pull-left.icon-2x, +.btn.btn-small [class^="icon-"].pull-right.icon-2x, +.btn.btn-small [class*=" icon-"].pull-right.icon-2x { + margin-top: .25em; } + +.btn.btn-large [class^="icon-"], +.btn.btn-large [class*=" icon-"] { + margin-top: 0; } + +.btn.btn-large [class^="icon-"].pull-left.icon-2x, +.btn.btn-large [class*=" icon-"].pull-left.icon-2x, +.btn.btn-large [class^="icon-"].pull-right.icon-2x, +.btn.btn-large [class*=" icon-"].pull-right.icon-2x { + margin-top: .05em; } + +.btn.btn-large [class^="icon-"].pull-left.icon-2x, +.btn.btn-large [class*=" icon-"].pull-left.icon-2x { + margin-right: .2em; } + +.btn.btn-large [class^="icon-"].pull-right.icon-2x, +.btn.btn-large [class*=" icon-"].pull-right.icon-2x { + margin-left: .2em; } + +.btn-facebook { + color: white; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #355089; + background-image: -moz-linear-gradient(top, #3b5998, #2d4373); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3b5998), to(#2d4373)); + background-image: -webkit-linear-gradient(top, #3b5998, #2d4373); + background-image: -o-linear-gradient(top, #3b5998, #2d4373); + background-image: linear-gradient(to bottom, #3b5998, #2d4373); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF3B5998', endColorstr='#FF2D4373', GradientType=0); + border-color: #2d4373 #2d4373 #17233c; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #2d4373; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-color: #1e2e4f; } + .btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active, .btn-facebook.active, .btn-facebook.disabled, .btn-facebook[disabled] { + color: white; + background-color: #2d4373; + *background-color: #263961; } + .btn-facebook:active, .btn-facebook.active { + background-color: #1e2e4f \9; } + +.btn-linkedin { + color: white; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #426ba5; + background-image: -moz-linear-gradient(top, #4875b4, #395d90); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4875b4), to(#395d90)); + background-image: -webkit-linear-gradient(top, #4875b4, #395d90); + background-image: -o-linear-gradient(top, #4875b4, #395d90); + background-image: linear-gradient(to bottom, #4875b4, #395d90); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF4875B4', endColorstr='#FF395D90', GradientType=0); + border-color: #395d90 #395d90 #243a59; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #395d90; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-color: #2b466b; } + .btn-linkedin:hover, .btn-linkedin:focus, .btn-linkedin:active, .btn-linkedin.active, .btn-linkedin.disabled, .btn-linkedin[disabled] { + color: white; + background-color: #395d90; + *background-color: #32517d; } + .btn-linkedin:active, .btn-linkedin.active { + background-color: #2b466b \9; } + +.btn-twitter { + color: white; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #1ebff5; + background-image: -moz-linear-gradient(top, #33ccff, #00ace6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#33ccff), to(#00ace6)); + background-image: -webkit-linear-gradient(top, #33ccff, #00ace6); + background-image: -o-linear-gradient(top, #33ccff, #00ace6); + background-image: linear-gradient(to bottom, #33ccff, #00ace6); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF33CCFF', endColorstr='#FF00ACE6', GradientType=0); + border-color: #00ace6 #00ace6 #007399; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #00ace6; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-color: #00a4db; } + .btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active, .btn-twitter.active, .btn-twitter.disabled, .btn-twitter[disabled] { + color: white; + background-color: #00ace6; + *background-color: #0099cc; } + .btn-twitter:active, .btn-twitter.active { + background-color: #0086b3 \9; } + +.btn-github { + color: white; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: black; + background-image: -moz-linear-gradient(top, black, black); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(black), to(black)); + background-image: -webkit-linear-gradient(top, black, black); + background-image: -o-linear-gradient(top, black, black); + background-image: linear-gradient(to bottom, black, black); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF000000', endColorstr='#FF000000', GradientType=0); + border-color: black black black; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: black; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-color: black; } + .btn-github:hover, .btn-github:focus, .btn-github:active, .btn-github.active, .btn-github.disabled, .btn-github[disabled] { + color: white; + background-color: black; + *background-color: black; } + .btn-github:active, .btn-github.active { + background-color: black \9; } + +.btn-google { + color: white; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #c83e2d; + background-image: -moz-linear-gradient(top, #dc4a38, #aa2d1e); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dc4a38), to(#aa2d1e)); + background-image: -webkit-linear-gradient(top, #dc4a38, #aa2d1e); + background-image: -o-linear-gradient(top, #dc4a38, #aa2d1e); + background-image: linear-gradient(to bottom, #dc4a38, #aa2d1e); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDC4A38', endColorstr='#FFAA2D1E', GradientType=0); + border-color: #aa2d1e #aa2d1e #691c12; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + *background-color: #aa2d1e; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-color: #a12b1c; } + .btn-google:hover, .btn-google:focus, .btn-google:active, .btn-google.active, .btn-google.disabled, .btn-google[disabled] { + color: white; + background-color: #aa2d1e; + *background-color: #94271a; } + .btn-google:active, .btn-google.active { + background-color: #7e2216 \9; } + +/* Social Identities */ +i.icon-aboutme-sign, i.icon-aboutme { + color: #00405d; } + +i.icon-angellist-sign, i.icon-angellist { + color: black; } + +i.icon-bebo, i.icon-bebo-sign { + color: #ee1010; } + +i.icon-behance-sign, i.icon-behance { + color: #005cff; } + +i.icon-bread-sign, i.icon-bread { + color: #00a4e4; } + +i.icon-digg-sign, i.icon-digg { + color: #065796; } + +i.icon-disqus-sign, i.icon-disqus { + color: #2e9fff; } + +i.icon-dropbox-sign, i.icon-dropbox { + color: #007ee5; } + +i.icon-dribbble-sign, i.icon-dribbble { + color: #ea4c89; } + +i.icon-facebook-sign, i.icon-facebook { + color: #3b5998; } + +i.icon-flickr-sign, i.icon-flickr { + color: #ed1e83; } + +i.icon-foursquare, i.icon-foursquare-sign { + color: #0cbadf; } + +i.icon-github-sign, i.icon-github { + color: black; } + +i.icon-goodreads-sign, i.icon-goodreads { + color: #5a471c; } + +i.icon-googleplus-sign, i.icon-googleplus { + color: #303030; } + +i.icon-instagram-sign, i.icon-instagram { + color: #3f729b; } + +i.icon-klout-sign, i.icon-klout { + color: #e24a25; } + +i.icon-lastfm-sign, i.icon-lastfm { + color: #a52f23; } + +i.icon-linkedin-sign, i.icon-linkedin { + color: #4875b4; } + +i.icon-medium-sign, i.icon-medium { + color: black; } + +i.icon-meetup-sign, i.icon-meetup { + color: #dd3333; } + +i.icon-pinterest-sign, i.icon-pinterest { + color: #cb2027; } + +i.icon-pocket-sign, i.icon-pocket { + color: #ee3f53; } + +i.icon-quora-sign, i.icon-quora { + color: #a72822; } + +i.icon-reddit-sign, i.icon-reddit { + color: #638cb1; } + +i.icon-soundcloud-sign, i.icon-soundcloud { + color: #ef3b24; } + +i.icon-spotify-sign, i.icon-spotify { + color: #75c044; } + +i.icon-stumbleupon-sign, i.icon-stumbleupon { + color: #e84c24; } + +i.icon-techendo-sign, i.icon-techendo { + color: #32363c; } + +i.icon-tumblr-sign, i.icon-tumblr { + color: #45556b; } + +i.icon-twitter-sign, i.icon-twitter { + color: #33ccff; } + +i.icon-vevo, i.icon-vevo-sign { + color: #dc2726; } + +i.icon-vimeo, i.icon-vimeo-sign { + color: #1fb7ea; } + +i.icon-wordpress, i.icon-wordpress-sign { + color: #464342; } + +i.icon-yahoo-sign, i.icon-yahoo { + color: #400090; } + +i.icon-yelp-sign, i.icon-yelp { + color: #ca3c27; } + +i.icon-youtube-sign, i.icon-youtube { + color: #eb2629; } diff --git a/static/font/socialicious.eot b/static/font/socialicious.eot new file mode 100644 index 0000000..8d226b8 Binary files /dev/null and b/static/font/socialicious.eot differ diff --git a/static/font/socialicious.svg b/static/font/socialicious.svg new file mode 100644 index 0000000..fa980d6 --- /dev/null +++ b/static/font/socialicious.svg @@ -0,0 +1,84 @@ + + + +Generated by Fontastic.me + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/font/socialicious.ttf b/static/font/socialicious.ttf new file mode 100644 index 0000000..cc09623 Binary files /dev/null and b/static/font/socialicious.ttf differ diff --git a/static/font/socialicious.woff b/static/font/socialicious.woff new file mode 100644 index 0000000..8ff211c Binary files /dev/null and b/static/font/socialicious.woff differ diff --git a/theme.toml b/theme.toml index ea730e9..ef991ef 100644 --- a/theme.toml +++ b/theme.toml @@ -1,4 +1,4 @@ -name = "Hyde-X" +name = "Hyde-X-zzamboni" license = "MIT" licenselink = "https://github.com/zyro/hyde-x/LICENSE" description = "An elegant open source and mobile first theme, extended with new integrations and layout improvements"