Created
August 2, 2012 05:59
-
-
Save jamosonic/3234217 to your computer and use it in GitHub Desktop.
CSS
This file contains 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
h1 { | |
color: $bluegrey; | |
font-family: "Proxima Nova Semibold"; | |
} | |
.winner { | |
display: inline-block; | |
margin-bottom: 1rem; | |
margin-left: .5rem; | |
margin-right: .5rem; | |
-webkit-box-shadow: 0 0 5px $mediumgrey; | |
} | |
.image-wrap { | |
padding: 15px; | |
background: white; | |
border: 1px solid $mediumgrey; | |
} | |
.image-wrap img { | |
width: 270px; | |
} | |
.info { | |
background: $lightgrey; | |
padding: 10px; | |
padding-bottom: 10px; | |
font-size: 14px; | |
color: $bluegrey; | |
border-bottom: 1px solid $mediumgrey; | |
border-left: 1px solid $mediumgrey; | |
border-right: 1px solid $mediumgrey; | |
font-family: "Proxima Nova Semibold"; | |
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; | |
} | |
.info a:link, | |
.info a:visited { | |
text-decoration: none; | |
color: $bluegrey; | |
} | |
.info a:hover { | |
color: $brightblue; | |
} | |
.info img { | |
border: 1px solid $mediumgrey; | |
margin-right: 3px; | |
width: 32px; | |
height: 32px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment