Last active
November 7, 2018 14:36
-
-
Save bermartinv/249be8bc1c86dcbcf33f3f8b1a29530d to your computer and use it in GitHub Desktop.
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{ | |
font-size: 14px; | |
} | |
html, body { | |
width: 100%; | |
height: 100%; | |
font-family: "Open Sans", sans-serif; | |
background-color: #fafafa; | |
} | |
img, embed, object, video{ | |
max-width: 100%; | |
} | |
*{ | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
color: #333; | |
-webkit-tap-highlight-color: transparent; | |
user-select: none; | |
-ms-user-select: none; | |
-moz-user-select: none; | |
transition: all, .3s; | |
} | |
ul, li { | |
list-style: none; | |
} | |
a:link, a:visited, a:hover, a:active { | |
text-decoration: none; | |
} | |
input[type="text"], | |
textarea{ | |
outline: none; | |
} | |
input{ | |
// border: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment