Last active
April 30, 2021 20:04
-
-
Save arielsalminen/ed950728e562e586890c055869dfeb86 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
/* --------------------------------------------- | |
/ RESET STYLES | |
/ --------------------------------------------- */ | |
html,body,div,span,h1,h2,h3,h4,h5,p,blockquote, | |
pre,a,code,img,svg,small,strike,strong,sub,sup, | |
b,u,i,ol,ul,li,form,label,table,caption,tbody, | |
tfoot,thead,tr,th,td,main,article,aside,canvas, | |
input,footer,header,nav,section,time,button, | |
video,textarea,input { | |
-webkit-appearance: none; | |
appearance: none; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
border: 0; | |
margin: 0; | |
padding: 0; | |
} | |
main,article,aside,footer,header,nav,section { | |
display: block; | |
} | |
@-ms-viewport { | |
width: device-width; | |
} | |
@viewport { | |
width: device-width; | |
} | |
html { | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100%; | |
text-size-adjust: 100%; | |
font-size: 100%; // sass-lint:disable-line variable-for-property | |
} | |
* { | |
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment