Created
September 9, 2011 22:28
-
-
Save andrewminton/1207489 to your computer and use it in GitHub Desktop.
Front-end Admin Bar - Sample CSS
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
.adminBar{ | |
width: 100%; | |
height: 50px; | |
background: #353530; | |
} | |
.adminBar h1, .adminBar span{ | |
background:none repeat scroll 0 0 #353530; | |
color:#FFFFFF; | |
font-weight:bold; | |
margin:0; | |
padding: 15px; | |
text-shadow:-1px 2px 3px #111111; | |
float: left; | |
font: 105% Lucida Grande,Leelawadee,Tahoma,Verdana,sans-serif; | |
margin-bottom:1em; | |
} | |
.adminBar span{ | |
float: right; | |
font-size: 80%; | |
padding: 16px; | |
} | |
.adminBar h1 a{ | |
color: #FFF; | |
text-decoration: none; | |
} | |
.adminBar span a{ | |
color: #BBB; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment