Last active
August 29, 2015 14:04
-
-
Save jpcontrerasv/3afc0e622617eb6a4c8d to your computer and use it in GitHub Desktop.
Fix Jp
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
/*Reset JP*/ | |
.box { | |
display:block; | |
height:auto; | |
overflow:hidden; | |
} | |
@mixin box { | |
display:block; | |
height:auto; | |
overflow:hidden; | |
} | |
.fleft { | |
float:left; | |
} | |
.fright { | |
float:right; | |
} | |
.fcenter { | |
margin:0 auto; | |
} | |
.fwidth { | |
width:100%; | |
} | |
p, a { | |
margin:0; | |
padding:0; | |
} | |
.text-center { | |
text-align:center; | |
} | |
.text-left { | |
text-align:left; | |
} | |
.text-right { | |
text-align:right; | |
} | |
a { | |
text-decoration:none; | |
} | |
.ocultar { | |
display:none; | |
visibility:hidden; | |
} | |
.mostrar { | |
display:block; | |
visibility:visible; | |
} | |
.no-column { | |
padding-left:0; | |
padding-right:0; | |
} | |
$em-1: 1em; | |
$em-2: 2em; | |
$em-3: 3em; | |
$em-4: 4em; | |
p { | |
font-size: 16px!important; | |
} | |
@mixin font-family { | |
font-family:"proxima-nova"; | |
} | |
@mixin transicion { | |
transition:All .5s ease; | |
-webkit-transition:All .5s ease; | |
-moz-transition:All .5s ease; | |
-o-transition:All .5s ease; | |
} | |
h1, h2, h3, h4, h5, h6, p, button { | |
font-family:"proxima-nova"; | |
margin:0; | |
padding:0; | |
} | |
body { | |
@include font-family; | |
@include transicion; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
text-rendering: optimizeLegibility !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment