-
-
Save ramiromoctezuma/96a6edfc0e2d8ef44664f0d0e66bd761 to your computer and use it in GitHub Desktop.
Estilos básicos para la introducción de Angular
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
* { | |
font-family: Helvetica, Arial, sans-serif; | |
font-weight: 200; | |
} | |
html, body { | |
background: white; | |
margin: 20px; | |
color: #3e4144; | |
-webkit-font-smoothing: antialiased; | |
} | |
dd { | |
font-weight: bold; | |
} | |
button { | |
background-color: black; | |
border-radius: 5px; | |
border: 0px; | |
color: white; | |
cursor: pointer; | |
margin-right: 5px; | |
margin-left: 5px; | |
padding: 5px 10px; | |
} | |
button:hover { | |
background-color: #3e4144; | |
} | |
button:focus{ | |
outline: none; | |
} | |
.p-1 { | |
padding: 1px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment