Skip to content

Instantly share code, notes, and snippets.

@EmilSabitov
Created May 31, 2016 07:49
Show Gist options
  • Save EmilSabitov/62c4dbb57cf31cceb87eb5995323c1c5 to your computer and use it in GitHub Desktop.
Save EmilSabitov/62c4dbb57cf31cceb87eb5995323c1c5 to your computer and use it in GitHub Desktop.
Template for style css
html * {
max-height: 1000000px;
}
* {
-webkit-text-size-adjust: none;
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
outline: none;
}
html, body {
font-family: "Etelka_light_pro", Arial, sans-serif;
font-size: 14px;
background: #FFF;
min-width: 1024px;
}
li {
list-style: none;
}
a img {
border: none;
}
a {
text-decoration: none;
color: inherit;
}
input, select, button, textarea {
outline: none;
-moz-appearance: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-webkit-appearance: none;
}
textarea {
outline: none;
}
input[type=file],
input[type=file]::-webkit-file-upload-button {
cursor: pointer;
}
input[type="submit"] {
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment