Last active
August 29, 2015 14:02
-
-
Save hazanjon/d8c1947fe4a88e83adf7 to your computer and use it in GitHub Desktop.
scss for testing
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
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900); | |
* { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
&:before, &:after { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
} | |
body { | |
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-size: 13px; | |
color: #788288; | |
background-color: #FFF; | |
-webkit-font-smoothing: antialiased; | |
line-height: 1.53846154; | |
overflow-x: hidden; | |
} | |
html { | |
overflow-x: hidden; | |
} | |
/*# Top Bar #*/ | |
#topBar { | |
background: #000; | |
color: #FFF; | |
height: 80px; | |
.user-person { | |
line-height: 80px; | |
font-size: 30px; | |
} | |
.team-health { | |
line-height: 80px; | |
font-size: 40px; | |
text-align: right; | |
color: #FFF; | |
} | |
} | |
/*# Message System #*/ | |
.slabtexted .slabtext { | |
display: -moz-inline-box; | |
display: inline-block; | |
white-space: nowrap; | |
} | |
.slabtextinactive .slabtext { | |
display: inline; | |
white-space: normal; | |
font-size: 1em !important; | |
letter-spacing: inherit !important; | |
word-spacing: inherit !important; | |
*letter-spacing: 0 !important; | |
*word-spacing: 0 !important; | |
} | |
.slabtextdone .slabtext { | |
display: block; | |
line-height: 0.9; | |
} | |
#messageHero { | |
overflow-y: scroll; | |
text-align: center; | |
line-height: 110%; | |
font-size: 30px; | |
color: #000; | |
background: #FFF; | |
padding: 20px; | |
display: none; | |
height: 100%; | |
#mm { | |
height: 100%; | |
max-height: 100%; | |
} | |
} | |
#controller { | |
text-align: center; | |
padding: 20px; | |
h2 { | |
line-height: 40px; | |
font-size: 40px; | |
} | |
} | |
/*# Login #*/ | |
#login { | |
padding: 30px; | |
} | |
.login-facebook { | |
background: #3b5998; | |
color: #FFF; | |
font-size: 20px; | |
padding: 20px; | |
border-radius: 5px; | |
margin: 30px 0; | |
i { | |
margin-right: 30px; | |
} | |
} | |
.control-sep { | |
width: 100%; | |
margin: 30px 0; | |
border-bottom: 1px solid #FFF; | |
} | |
/*# HIDE CONTROLLERS TO START #*/ | |
#control-dial, #control-button, #control-radio { | |
display: block; | |
} | |
.radios { | |
margin: 50px auto; | |
} | |
.controller, .messageHero { | |
background: #FFF; | |
} | |
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { | |
color: #FFF; | |
} | |
#panda { | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment