-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26f0d35
commit af3a41a
Showing
1 changed file
with
30 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 |
---|---|---|
|
@@ -228,6 +228,25 @@ | |
grid-template-columns: 1fr; | ||
} | ||
} | ||
/* Estilos para o rodapé */ | ||
.footer { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 20px; | ||
background-color: #111; | ||
color: #fff; | ||
font-size: 0.9em; | ||
border-top: 1px solid #444; | ||
margin-top: 40px; | ||
} | ||
.footer a { | ||
color: #8a2be2; | ||
text-decoration: none; | ||
} | ||
.footer a:hover { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
@@ -333,6 +352,17 @@ <h2>Quais conhecimentos prévios devo ter para que consiga acompanhar o curso?</ | |
</div> | ||
</div> | ||
|
||
<div class="footer"> | ||
<div class="contact"> | ||
<a href="mailto:[email protected]">Contato: [email protected]</a> | ||
</div> | ||
<div class="rights"> | ||
© 2024 Dois Físicos e um Vetor.<br>Todos os direitos reservados. | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
<script> | ||
function togglePricing() { | ||
const toggle = document.querySelector('.toggle'); | ||
|