Last active
April 25, 2025 11:08
-
-
Save Maransatto/bd95e294c8e2383c78e54d716236aed5 to your computer and use it in GitHub Desktop.
Introdução React index.css
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
* { | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
} | |
:root { | |
min-height: 100vh; | |
font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 18px; | |
line-height: 1.6; | |
font-weight: 400; | |
background: linear-gradient(135deg, #ff7e5f, #feb47b); | |
color: #333; | |
font-synthesis: none; | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
-webkit-text-size-adjust: 100%; | |
} | |
body { | |
margin: 0; | |
text-align: center; | |
color: #333; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
font-family: "Montserrat", sans-serif; | |
margin-bottom: 1rem; | |
} | |
p { | |
margin-bottom: 1rem; | |
font-size: 1.125rem; | |
line-height: 1.8; | |
} | |
a { | |
color: #ff7e5f; | |
text-decoration: none; | |
} | |
a:hover { | |
text-decoration: underline; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment