This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
#logo { | |
font-size: 60px; | |
width: 3.5em; | |
height: 2em; | |
} | |
#logo .leaf { | |
width: 1.7em; | |
height: 1em; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
#logo { | |
font-size: 60px; | |
width: 4em; | |
height: 2em; | |
background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 1) 40%,transparent 41%,transparent 100%), | |
-webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 1) 40%,transparent 41%,transparent 100%), | |
-webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 1) 40%,transparent 41%,transparent 100%), | |
-webkit-radial-gradient(center, ellipse, rgba(237, 128, 39, 1) 40%,transparent 41%,transparent 100%); | |
background-position: 0.3em 0.75em, -0.6em 0.35em, 1.4em 0.6em, 1.05em 0.15em; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Jekyll | |
module Convertible | |
def do_layout(payload, layouts) | |
info = { :filters => [Jekyll::Filters], :registers => { :site => self.site } } | |
# render and transform content (this becomes the final content of the object) | |
payload["pygments_prefix"] = converter.pygments_prefix | |
payload["pygments_suffix"] = converter.pygments_suffix | |
begin |
NewerOlder