Last active
February 20, 2018 14:59
-
-
Save bermartinv/d91c3e20be2a3cb49e8dd20964c14a04 to your computer and use it in GitHub Desktop.
archivo inicial 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
html,body{ | |
width: 100%; | |
height: 100%; | |
font-family: 'Open Sans', sans-serif | |
} | |
*, *:after, *:before{ | |
box-sizing: border-box; | |
margin: 0px; | |
padding: 0px; | |
} | |
article,aside,figure,footer,header,nav,section,details,summary{ | |
display:block; | |
} | |
ul, li { | |
list-style: none; | |
} | |
a:link, a:hover, a:visited, a:active{ | |
text-decoration:none; | |
} | |
img,object,video,embed{ | |
max-width:100%; | |
} | |
/* Los botones deben tener un min-width=48px; min-height=48px */ | |
.button { | |
min-width: 48px; | |
min-width: 48px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment