Skip to content

Instantly share code, notes, and snippets.

@ramiromoctezuma
Forked from Klerith/estilos-basicos.css
Created March 24, 2021 15:38
Show Gist options
  • Save ramiromoctezuma/96a6edfc0e2d8ef44664f0d0e66bd761 to your computer and use it in GitHub Desktop.
Save ramiromoctezuma/96a6edfc0e2d8ef44664f0d0e66bd761 to your computer and use it in GitHub Desktop.
Estilos básicos para la introducción de Angular
* {
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