Created
June 17, 2014 00:37
-
-
Save alex-wilmer/36127208bb29d2448ec2 to your computer and use it in GitHub Desktop.
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
.navbar .nav> li > a.brand { | |
padding-left: 20px; | |
margin-left: 0; | |
} | |
.content { | |
margin-top: 50px; | |
width: 100%; | |
} | |
.board { | |
float: left; | |
} | |
.stats { | |
float: left; | |
margin-left: 40px; | |
} | |
.space { | |
display: inline-block; | |
cursor: pointer; | |
width: 50px; | |
height: 50px; | |
text-align: center; | |
border-radius: 50%; | |
} | |
.grid { | |
position: relative; | |
top: 15px; | |
z-index: -1; | |
} | |
.white { | |
background-color: red; | |
} | |
.black { | |
background-color: black; | |
} | |
footer { | |
position:fixed; | |
left:0px; | |
bottom:0px; | |
height:30px; | |
width:100%; | |
background:#ddd; | |
-webkit-box-shadow: 0 8px 6px 6px black; | |
-moz-box-shadow: 0 8px 6px 6px black; | |
box-shadow: 0 8px 6px 6px black; | |
} | |
footer p{ | |
padding: 5px 0 12px 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment