diff options
Diffstat (limited to 'design/sass/v8/_figments.scss')
-rw-r--r-- | design/sass/v8/_figments.scss | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/design/sass/v8/_figments.scss b/design/sass/v8/_figments.scss new file mode 100644 index 0000000..e834469 --- /dev/null +++ b/design/sass/v8/_figments.scss @@ -0,0 +1,47 @@ +.kindle, .epub { + display: inline; + @include smcaps; + @include fontsize(11); +} +.kindle:after { + content: "ยท"; + color: #999; + padding-left: 0.75em; +} +.fig-archive { + @include constrain_narrow; + @include breakpoint(beta) { + text-align: left; + + } + h1 { + margin-top: 2.5em; + @include smcaps; + @include fontsize(16); + } + p.intro { + @include breakpoint(beta) { + text-align: left; + @include fontsize(18); + font-style: italic + } + } + p.intro:last-of-type { + margin-bottom: 4em; + } + h2 { + @include smcaps; + @include fontsize(18); + } +} +.figments hr, .resume hr { + @include constrain_narrow; + border: 0; + margin-top: 2em; + margin-bottom: 2em; + height: 1px; + background: -webkit-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0)); + background: -moz-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0)); + background: -o-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0)); + background: linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0)); +} |