-
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.
Merge pull request #1 from Willyang10x/development
Merge development in main
- Loading branch information
Showing
81 changed files
with
1,956 additions
and
339 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
File renamed without changes
File renamed without changes
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
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,238 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
|
||
body { | ||
font-family: 'Arial', sans-serif; | ||
background-color: #f0f0f0; | ||
color: #333; | ||
} | ||
|
||
|
||
.footer-container { | ||
max-width: 100%; | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-around; | ||
align-items: center; | ||
background: linear-gradient(90deg, rgba(0, 109, 179, 1) 0%, rgba(0, 157, 255, 1) 100%); /* Suas cores */ | ||
border-radius: 15px 15px 0 0; | ||
color: #fff; | ||
margin-top: 20px; | ||
padding: 20px; | ||
} | ||
|
||
|
||
.footer-logo { | ||
text-align: center; | ||
} | ||
|
||
.logo-img:hover { | ||
transform: scale(1.1); | ||
} | ||
|
||
.logo-img { | ||
max-width: 100px; | ||
border-radius: 50%; | ||
margin-bottom: 10px; | ||
transition: transform 0.2s ease; | ||
} | ||
|
||
.company-desc { | ||
font-size: 14px; | ||
font-style: italic; | ||
transition: color 0.3s ease; | ||
} | ||
|
||
.footer-logo a:hover .company-desc { | ||
color: #00e1ff; | ||
} | ||
|
||
|
||
.footer-info p { | ||
margin-bottom: 8px; | ||
text-align: center; | ||
} | ||
|
||
.footer-info a { | ||
color: #ffffff; | ||
text-decoration: none; | ||
} | ||
|
||
.footer-info a:hover { | ||
color: #00e1ff; | ||
} | ||
|
||
|
||
.footer-subscribe form { | ||
margin-top: 10px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.subscribe-label { | ||
font-weight: bold; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.footer-subscribe input { | ||
width: 100%; | ||
padding: 10px; | ||
border-radius: 8px; | ||
border: 2px solid #08507c; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.footer-subscribe button { | ||
width: 100%; | ||
padding: 10px 20px; | ||
border-radius: 8px; | ||
background-color: #ffffff; | ||
color: #009dff; | ||
border: none; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.banner { | ||
width: 100%; | ||
max-width: 100%; | ||
margin: 0 auto; | ||
overflow: hidden; | ||
} | ||
|
||
.banner img { | ||
width: 100%; | ||
height: auto; | ||
display: block; | ||
} | ||
|
||
|
||
.footer-subscribe button:hover { | ||
background-color: #0e4a6e; | ||
} | ||
|
||
|
||
.footer-social { | ||
text-align: center; | ||
margin-top: 20px; | ||
} | ||
|
||
.footer-social p { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.footer-social a { | ||
margin: 0 10px; | ||
color: #fff; | ||
font-size: 24px; | ||
transition: color 0.3s; | ||
} | ||
|
||
.footer-social a:hover { | ||
color: #00e1ff; | ||
} | ||
|
||
|
||
.footer-copyright { | ||
text-align: center; | ||
padding-top: 20px; | ||
font-size: 14px; | ||
color: #fff; | ||
width: 100%; | ||
} | ||
|
||
|
||
@media (max-width: 1024px) { | ||
.footer-container { | ||
flex-direction: column; | ||
text-align: center; | ||
} | ||
|
||
.footer-logo, | ||
.footer-info, | ||
.footer-subscribe, | ||
.footer-social { | ||
flex: 1 1 100%; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.footer-subscribe form { | ||
align-items: center; | ||
} | ||
} | ||
|
||
|
||
@media (max-width: 768px) { | ||
.footer-container { | ||
flex-direction: column; | ||
text-align: center; | ||
} | ||
|
||
.footer-logo, | ||
.footer-info, | ||
.footer-subscribe, | ||
.footer-social { | ||
flex: 1 1 100%; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.footer-subscribe form { | ||
align-items: center; | ||
} | ||
|
||
.footer-social a { | ||
font-size: 20px; | ||
margin: 0 5px; | ||
} | ||
|
||
.footer-copyright { | ||
font-size: 12px; | ||
} | ||
} | ||
|
||
|
||
@media (max-width: 480px) { | ||
.footer-social a { | ||
font-size: 18px; | ||
margin: 0 5px; | ||
} | ||
|
||
.footer-container { | ||
padding: 20px 10px; | ||
} | ||
|
||
.footer-subscribe input, | ||
.footer-subscribe button { | ||
width: 90%; | ||
} | ||
|
||
.footer-copyright { | ||
font-size: 10px; | ||
} | ||
|
||
.footer-info p { | ||
font-size: 12px; | ||
} | ||
} | ||
|
||
|
||
@media (min-width: 1200px) { | ||
.footer-container { | ||
padding: 30px; | ||
} | ||
|
||
.footer-logo img { | ||
max-width: 150px; | ||
} | ||
|
||
.footer-info p, .footer-social p { | ||
font-size: 16px; | ||
} | ||
} | ||
|
||
|
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,63 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="footer.css"> | ||
<title>Footer</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | ||
</head> | ||
<body> | ||
|
||
<div class="banner"> | ||
<a href="/Assets/imagens/banner-wg.png" target="_blank" rel="noopener noreferrer"> | ||
<img src="/Assets/imagens/banner-wg.png" alt="banner-wg"> | ||
</a> | ||
</div> | ||
|
||
<footer> | ||
<div class="footer-container"> | ||
|
||
<div class="footer-logo"> | ||
<a href="/Components/Home/index.html" style="text-decoration: none; color: inherit;"> | ||
<img src="/Assets/icons/logo wg.png" alt="Logo WG" class="logo-img"> | ||
<p class="company-desc">Criando designs únicos e experiências visuais.</p> | ||
</a> | ||
</div> | ||
|
||
|
||
|
||
|
||
<div class="footer-info"> | ||
<p>Entre em contato:</p> | ||
<p>E-mail: <a href="mailto:willyangabrielfxt@gmail.com">willyangabrielfxt@gmail.com</a></p> | ||
<p>Telefone: <a href="tel:+5583988688864">+55 83 98868-8864</a></p> | ||
</div> | ||
|
||
|
||
<div class="footer-subscribe"> | ||
<label class="subscribe-label" for="newsletter">Assine nossa Newsletter</label> | ||
<form> | ||
<input type="email" id="newsletter" placeholder="Seu email" required> | ||
<button type="submit">Assinar</button> | ||
</form> | ||
</div> | ||
|
||
|
||
<div class="footer-social"> | ||
<p>Me siga nas redes sociais:</p> | ||
<a href="https://github.com/Willyang10x" target="_blank"><i class="fab fa-github"></i></a> | ||
<a href="https://www.instagram.com/willdsg07/" target="_blank"><i class="fab fa-instagram"></i></a> | ||
<a href="https://www.linkedin.com/in/willyan-gabriel-70b53b344" target="_blank"><i class="fab fa-linkedin"></i></a> | ||
</div> | ||
|
||
|
||
<div class="footer-copyright"> | ||
<p>© 2024 WG - Designer. Todos os direitos reservados.</p> | ||
</div> | ||
</div> | ||
|
||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.