Created
December 1, 2020 19:01
-
-
Save Klerith/3ddee04a27c09be05e888d5d4ac1d09f to your computer and use it in GitHub Desktop.
Estilos básicos para la introducción de Angular
This file contains 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
Amen