diff options
Diffstat (limited to 'sass/parts/_banner.scss')
-rw-r--r-- | sass/parts/_banner.scss | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/sass/parts/_banner.scss b/sass/parts/_banner.scss index a17b9d6..c8b11dd 100644 --- a/sass/parts/_banner.scss +++ b/sass/parts/_banner.scss @@ -1,5 +1,45 @@ #banner{ - color: $font-main; + color: #999; padding: 30px 0; + line-height: 30px; + text-align: center; + position: relative; + display: none; @include border-shadow(); + &:hover{ + a{ + color: $main; + } + } + a{ + color: #999; + @include transition(0.3s); + &:hover{ + text-decoration: underline; + } + } + small{ + position: absolute; + right: 0; + bottom: 0; + } + .container{ + height: 30px; + overflow: hidden; + position: relative; + display: none; + .feed{ + list-style: none; + position: absolute; + top: 0; + width: 100%; + li{ + position: relative; + small{ + position: absolute; + right: 0; + } + } + } + } }
\ No newline at end of file |