Created
October 8, 2015 20:56
-
-
Save jaredpalmer/d6abc1515bde1ae8dc09 to your computer and use it in GitHub Desktop.
FBstarter.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
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
font-size: 100%; | |
font: inherit; | |
vertical-align: baseline | |
} | |
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { | |
display: block | |
} | |
body { | |
line-height: 1 | |
} | |
ol,ul { | |
list-style: none | |
} | |
blockquote,q { | |
quotes: none | |
} | |
blockquote:before,blockquote:after,q:before,q:after { | |
content: ''; | |
content: none | |
} | |
table { | |
border-collapse: collapse; | |
border-spacing: 0 | |
} | |
* { | |
-webkit-font-smoothing: antialiased; | |
text-rendering: optimizeLegibility | |
} | |
html,body { | |
background: #F6F7F8; | |
font-family: "helveticaneue", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 400; | |
display: -webkit-flex; | |
display: -ms-flexbox; | |
display: flex; | |
min-height: 100vh; | |
-webkit-flex-direction: column; | |
-ms-flex-direction: column; | |
flex-direction: column | |
} | |
a { | |
-webkit-transition: all 0.2s ease; | |
-moz-transition: all 0.2s ease; | |
-ms-transition: all 0.2s ease; | |
-o-transition: all 0.2s ease; | |
transition: all 0.2s ease | |
} | |
img { | |
-webkit-transition: all 0.2s ease; | |
-moz-transition: all 0.2s ease; | |
-ms-transition: all 0.2s ease; | |
-o-transition: all 0.2s ease; | |
transition: all 0.2s ease | |
} | |
p { | |
font-family: "helveticaneue", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 400; | |
line-height: 28px; | |
font-size: 18px; | |
color: #9197A3; | |
margin-bottom: 24px | |
} | |
strong { | |
font-family: "helveticaneue-bold", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 600 | |
} | |
hr { | |
height: 0px; | |
border-bottom: 0px; | |
opacity: .4; | |
max-width: 820px; | |
margin: 0 auto | |
} | |
h1 { | |
font-family: "helveticaneue-medium", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 500; | |
color: #141823 | |
} | |
h2 { | |
font-family: "helveticaneue-medium", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 500; | |
color: #141823 | |
} | |
h3 { | |
margin: 0 auto; | |
font-family: "helveticaneue", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 400; | |
font-size: 16px; | |
line-height: 22px; | |
color: #9197A3; | |
padding: 12px 0 24px 0; | |
max-width: 375px | |
} | |
a:hover { | |
opacity: .75 | |
} | |
::selection { | |
background: #5B93FC; | |
color: #fff | |
} | |
::-moz-selection { | |
background: #5B93FC; | |
color: #fff | |
} | |
.columns-2 { | |
width: 50%; | |
position: relative; | |
float: left; | |
display: block; | |
margin-bottom: 28px | |
} | |
.columns-1 { | |
width: 100%; | |
position: relative; | |
display: block | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment