Created
October 24, 2016 00:39
-
-
Save benweiser/837bf4b9ae3770d17a332ae78608fa39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.top-bar { | |
background-color: #000; | |
min-height: 60px; | |
position: fixed; | |
transition: top 0.2s ease-in-out; | |
text-align: center; | |
width: 100%; | |
z-index: 99; | |
-webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2); | |
-moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2); | |
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2); | |
} | |
.site-container { | |
padding-top: 60px; | |
} | |
.bar-up { | |
top: -55px; | |
} | |
.bar-down { | |
top: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment