Created
May 12, 2017 16:23
-
-
Save ozknozsrt/78771fe0697de457084ef38437429dc4 to your computer and use it in GitHub Desktop.
My fav reset and responsive 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
@charset "utf-8"; | |
/* CSS Document */ | |
html, form { | |
width: 100%; | |
height: 100%; | |
} | |
body { | |
width: 100%; | |
height: 100%; | |
margin: 0; | |
padding: 0; | |
} | |
a { | |
-webkit-transition: all 0.2s; | |
-moz-transition: all 0.2s; | |
-o-transition: all 0.2s; | |
transition: all 0.2s; | |
} | |
a, a img { | |
text-decoration: none; | |
outline: none; | |
border: none; | |
} | |
.clr { | |
clear: both; | |
height: 0; | |
} | |
::-webkit-input-placeholder { | |
color:#979a9b; | |
} | |
:-moz-placeholder { | |
color:#979a9b; | |
} | |
::-moz-placeholder { | |
color:#979a9b; | |
} | |
:-ms-input-placeholder { | |
color:#979a9b; | |
} | |
body, input, textarea, select, option { | |
font-family: 'Celias'; | |
} | |
*, *:after, *::before { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
text-decoration: none; | |
list-style-type: none; | |
outline: none; | |
} | |
@media screen and (max-width:1920px) { | |
} | |
@media screen and (max-width:1400px) { | |
} | |
@media screen and (max-width:1024px) { | |
} | |
@media screen and (max-width:768px) { | |
} | |
@media screen and (max-width:480px) { | |
} | |
@media screen and (max-width:384px) { | |
} | |
@media screen and (max-width:320px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment