Created
January 22, 2015 04:37
-
-
Save bmvakili/4b3dede4aeadba0712ad to your computer and use it in GitHub Desktop.
handlebar example 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
section#body-section #dashboard-wrapper { | |
width: 97%; | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
border: dashed black 1px; | |
padding: 1em; | |
} | |
section#body-section * { | |
text-shadow: none; | |
} | |
section#body-section .dashboard { | |
background-color: lightblue; | |
border: white solid 1px; | |
} | |
section#body-section .chart-wrapper { | |
display: inline-block; | |
width: 100px; | |
height: 100px; | |
background-color: lightyellow; | |
border: orange solid 1px; | |
text-align: center; | |
margin-left: 10%; | |
margin-right: 10%; | |
} | |
section#body-section .page-title { | |
margin-left: auto; | |
margin-right: auto; | |
width: 100%; | |
text-align: center; | |
font-family: 'Segoe UI', 'Helvetica', 'sans-serif'; | |
text-decoration: underline; | |
} | |
section#body-section .page-title::first-letter { | |
font-size: 1.2em; | |
} | |
section#body-section ul { | |
list-style-type: none; | |
} | |
section#body-section ul a { | |
text-decoration: none; | |
color: green; | |
} | |
section#body-section ul li { | |
display: inline-block; | |
margin: 0px; | |
padding: 0px; | |
width: 200px; | |
text-align: center; | |
border: solid blue 1px; | |
color: green; | |
-webkit-border-radius: 3px; | |
-moz-border-radius: 3px; | |
border-radius: 3px; | |
} | |
section#body-section li.active { | |
color: red; | |
background-color: grey; | |
font-weight: bold; | |
} | |
section#body-section li.active a { | |
color: red; | |
} | |
section#body-section li:hover { | |
background-color: grey; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment