Skip to content

Commit

Permalink
fix: lading page css
Browse files Browse the repository at this point in the history
Co-authored-by: catlenc <[email protected]>
Co-authored-by: anajbsouza <[email protected]>
  • Loading branch information
catlenc and anajbsouza committed Jul 5, 2024
1 parent 05a2914 commit cb9ac5c
Showing 1 changed file with 94 additions and 0 deletions.
94 changes: 94 additions & 0 deletions docs/lading page/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
/* Geral */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background: #6a0dad;
color: #fff;
padding: 1rem;
text-align: center;
}

header img {
max-width: 100px;
display: block;
margin: 0 auto 1rem;
}

header h1 {
margin: 0;
font-size: 2.5rem;
}

header p {
margin: 0.5rem 0 0;
font-size: 1.2rem;
}

main {
padding: 2rem;
}

section {
margin-bottom: 2rem;
padding: 1rem;
background: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
border-bottom: 2px solid #6a0dad;
padding-bottom: 0.5rem;
margin-bottom: 1rem;
font-size: 2rem;
color: #6a0dad;
}

ul, ol {
margin: 1rem 0;
padding-left: 2rem;
}

ul li, ol li {
margin-bottom: 0.5rem;
}

a {
color: #6a0dad;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

.button {
display: inline-block;
background: #6a0dad;
color: #fff;
padding: 0.75rem 1.25rem;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
}

.button:hover {
background: #8a2be2;
}

footer {
background: #6a0dad;
color: #fff;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

0 comments on commit cb9ac5c

Please sign in to comment.