Last active
February 12, 2016 23:58
-
-
Save zackm/9026487b9f50740f1c71 to your computer and use it in GitHub Desktop.
Custom Mixpanel Report 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
table { | |
background: white; | |
border-radius: 3px; | |
padding-top: 15px; | |
} | |
td { | |
border: 1px solid #d8dde6; | |
padding-top: 5px; | |
padding-bottom: 5px; | |
padding-left: 10px; | |
padding-right: 10px; | |
font-weight: bold; | |
color: #747d94; | |
height: 30px; | |
} | |
tr:first-child { | |
background-color: #eff2f9; | |
} | |
tr:nth-child(even) { | |
background-color: white; | |
} | |
tr:nth-child(odd) { | |
background-color: #f7f9fe; | |
} | |
h3 { | |
line-height: 2.5em; | |
color: #747d94; | |
} | |
tr td:first-child { | |
background-color: #4c7cb8; | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment