diff options
author | luxagraf <sng@luxagraf.net> | 2015-02-25 20:41:07 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-02-25 20:41:07 -0500 |
commit | f5b3499f2d8243849190ecc054b0e93ba79e4841 (patch) | |
tree | 374389308f4bca3f47ba3b22835d60d39d96b7e1 /design/sass | |
parent | 83233b9a4c6f29a65d2a337f89951e8d25190ee9 (diff) |
started work on per-post mapping
Diffstat (limited to 'design/sass')
-rw-r--r-- | design/sass/_writing_details.scss | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/design/sass/_writing_details.scss b/design/sass/_writing_details.scss index 70a9c47..6a8140e 100644 --- a/design/sass/_writing_details.scss +++ b/design/sass/_writing_details.scss @@ -93,6 +93,19 @@ } } +/* occassionally I have section breaks */ +.break { + display: block; + margin: 3em auto; + content: ""; + height: 1px; + width: 100%; + background: -webkit-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.2),rgba(0,0,0,0)); + background: -moz-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.2),rgba(0,0,0,0)); + background: -o-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.2),rgba(0,0,0,0)); + background: linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.2),rgba(0,0,0,0)); +} + //### FOOTNOTES ### .footnote { @include constrain_narrow(); @@ -419,4 +432,17 @@ display: block; color: $body_font_light; } - +.map--icon { + @include constrain_wide; + display: block; + width: 35px; + height: 35px; + border-radius: 50%; + border: 2px solid $brown; + margin: -38px 3em 0; + float: right; + @include breakpoint(gamma) { + margin: 0 auto; + float: none; + } +} |