diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-01 02:48:00 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-01 02:48:00 -0700 |
commit | 1e719cf77370141e849b4cb026cc12c9488c346d (patch) | |
tree | e811d87d16407be690082429151786b77cbdb952 /assets/stylesheets | |
parent | c66b37d91c43180dd1a2a1ef36a5637cf3281f2a (diff) | |
download | gitbook-1e719cf77370141e849b4cb026cc12c9488c346d.zip gitbook-1e719cf77370141e849b4cb026cc12c9488c346d.tar.gz gitbook-1e719cf77370141e849b4cb026cc12c9488c346d.tar.bz2 |
Improve footer navigation on mobile
Diffstat (limited to 'assets/stylesheets')
-rw-r--r-- | assets/stylesheets/book/footer.less | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/assets/stylesheets/book/footer.less b/assets/stylesheets/book/footer.less index f811be2..8b8bd55 100644 --- a/assets/stylesheets/book/footer.less +++ b/assets/stylesheets/book/footer.less @@ -15,7 +15,7 @@ text-align: center; width: 100%; height: 100%; - font-size: 26px; + font-size: 24px; line-height: 80px; background: @brand-success; @@ -27,6 +27,19 @@ background: darken(@btn-success-bg, 5%); text-decoration: none; } + + &.coming-soon, &.coming-soon:hover { + background: #f0ad4e; + } + &.finished, &.finished:hover { + background: darken(@btn-success-bg, 5%); + } + + @media (max-width: 600px) { + span { + display: none; + } + } } } }
\ No newline at end of file |