Last active
March 22, 2023 23:44
-
-
Save Ezekiel1349/6988ab335700a37aac1861204138abe5 to your computer and use it in GitHub Desktop.
Código base para hacer un reboot file
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
| *, | |
| *::before, | |
| *::after { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| font-size: 16px; | |
| line-height: 1.2; | |
| } | |
| h1, | |
| h2, | |
| h3, | |
| h4, | |
| h5, | |
| h6, | |
| small { | |
| font-size: inherit; | |
| font-weight: inherit; | |
| } | |
| em, | |
| strong, | |
| b { | |
| font-style: normal; | |
| font-weight: normal; | |
| } | |
| a { | |
| text-decoration: none; | |
| &:hover { | |
| text-decoration: none; | |
| } | |
| } | |
| mark { | |
| background: transparent; | |
| } | |
| input { | |
| &:focus { | |
| outline: none; | |
| box-shadow: 0; | |
| } | |
| &::placeholder { | |
| opacity: 1; | |
| } | |
| } | |
| fieldset { | |
| border-width: 0; | |
| } | |
| button { | |
| background: transparent; | |
| border-width: 0; | |
| cursor: pointer; | |
| &:active { | |
| color: inherit; | |
| } | |
| &:focus { | |
| outline: none; | |
| } | |
| &:required { | |
| box-shadow: none; | |
| } | |
| } | |
| ul, | |
| ol { | |
| list-style: none; | |
| } | |
| label, | |
| svg, | |
| video, | |
| canvas, | |
| audio, | |
| iframe, | |
| embed, | |
| object { | |
| display: block; | |
| } | |
| table { | |
| border-collapse: collapse; | |
| } | |
| th { | |
| text-align: inherit; | |
| } | |
| //temporal | |
| span { | |
| vertical-align: unset; | |
| } | |
| [hidden] { | |
| display: none !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment