Last active
August 29, 2015 14:21
-
-
Save BlackMac/dd48b3c57d94a88b51ec to your computer and use it in GitHub Desktop.
CSS for the sipgate.io meteor tutorial
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
/* CSS declarations go here */ | |
body { | |
font-family: "Helvetica Neue"; | |
font-weight: 200; | |
padding:0; | |
margin:0; | |
} | |
h1 { | |
margin:0; | |
font-weight: 100; | |
padding:5px 10px; | |
color:#ffffff; | |
background-color:#333333; | |
} | |
ul { | |
list-style:none; | |
padding:0; | |
margin:0; | |
} | |
li { | |
border-bottom:1px solid #eeeeee; | |
padding: 6px 10px; | |
} | |
.label { | |
background-color:#0000aa; | |
color:#ffffff; | |
display:block; | |
float:left; | |
font-size:0.7em; | |
font-weight:800; | |
padding:0 4px; | |
border-radius:3px; | |
width:50px; | |
text-align:center; | |
margin: 3px 6px 0 0; | |
} | |
.date { | |
background-color:#eeeeee; | |
color:#333333; | |
display:block; | |
float:left; | |
font-size:0.6em; | |
font-weight:800; | |
padding:1px 4px; | |
border-radius:3px; | |
width:50px; | |
text-align:center; | |
margin: -2px 6px 0 0; | |
} | |
.active { | |
background-color:#bbffbb; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment