Created
July 3, 2018 22:28
-
-
Save codigoconjuan/f621f882e790dbda30d7923b7feb58ed to your computer and use it in GitHub Desktop.
Index para curso React proyecto de Eventos
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 { | |
| height: 100%; | |
| } | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| font-family: 'Lato', sans-serif; | |
| background-color: #e5e5e5; | |
| min-height: 100%; | |
| } | |
| header { | |
| background-color: #ec3a49; | |
| color: white; | |
| padding: 5rem 0; | |
| } | |
| h1 { | |
| color: white; | |
| font-weight: 900; | |
| } | |
| .uk-button { | |
| width: 100%; | |
| background-color: #ec3a49; | |
| } |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta name="theme-color" content="#000000"> | |
| <!-- | |
| manifest.json provides metadata used when your web app is added to the | |
| homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ | |
| --> | |
| <link rel="manifest" href="%PUBLIC_URL%/manifest.json"> | |
| <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> | |
| <link href="https://fonts.googleapis.com/css?family=Lato:400,900" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/css/uikit.min.css" /> | |
| <title>React App</title> | |
| </head> | |
| <body> | |
| <noscript> | |
| You need to enable JavaScript to run this app. | |
| </noscript> | |
| <div id="root"></div> | |
| <!-- UIkit JS --> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/js/uikit.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/js/uikit-icons.min.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment