diff options
Diffstat (limited to 'design/sass/_birds.scss')
-rw-r--r-- | design/sass/_birds.scss | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/design/sass/_birds.scss b/design/sass/_birds.scss index d8a736e..81149ff 100644 --- a/design/sass/_birds.scss +++ b/design/sass/_birds.scss @@ -6,7 +6,7 @@ display: none !important; } -#birds { +#birds, .birds { .post--title { @include fontsize(18); a { @@ -21,6 +21,42 @@ } small { display: block;} } + .post--image { + position: relative; + width: 100%; + figcaption { + opacity: 0; + @include fancy-sans; + @include fontsize(13); + position: absolute; + bottom: 0; + text-align: left; + width: 99%; + background: rgba(0, 0, 0, 0.75); + padding: .5em 0 .5em .5em; + margin-bottom: .5em; + color: #ccc; + + a { + color: #ccc; + } + } + img { + max-width: 100%; + width: 100%; + padding: 0; + background: none; + } + .picfull { + margin: 0; + } + } + .post--image:hover figcaption { + -webkit-transition: opacity .25s ease-in; + -moz-transition: opacity .25s ease-in; + transition: opacity .25s ease-in; + opacity: 1; + } } .sci { @@ -49,6 +85,11 @@ @include constrain_narrow; } } + #endnode { + @include fancy-sans; + @include fontsize(14); + margin-top: 2em; + } } |