-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: catlenc <[email protected]> Co-authored-by: anajbsouza <[email protected]>
- Loading branch information
1 parent
05a2914
commit cb9ac5c
Showing
1 changed file
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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); | ||
} |