Skip to content

Commit

Permalink
Merge pull request #30 from pedrozle/29-adicionar-pagina-de-changelog…
Browse files Browse the repository at this point in the history
…-nos-docs

29 adicionar pagina de changelog nos docs
  • Loading branch information
pedrozle authored Dec 7, 2023
2 parents 9f5545f + 8326a61 commit 653d5a1
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 13 deletions.
30 changes: 28 additions & 2 deletions docs/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -454,14 +454,40 @@ nav .links .link {
/* ############### FOOTER ################## */

footer {
padding: 20px;
padding: 40px 20px;
background-color: var(--grafite);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.footer-content {
display: flex;
align-items: flex-end;
justify-content: center;
gap: 60px;
}

.footer-title {
& p {
font-size: 1.5em;
font-weight: bold;
margin-bottom: 10px;
}
}

.footer-contato {
& p {
font-weight: bold;
margin-bottom: 10px;
};
& a {
color: white;
text-decoration: none;
}

}

@media only screen and (max-width: 768px) {
/* header */
.logo {
Expand Down
35 changes: 27 additions & 8 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -443,14 +443,33 @@
</section>
</main>
<footer>
<a
href="https://discord.com/api/oauth2/authorize?client_id=1030981696528584795&permissions=0&scope=bot"
target="_blank"
class="btn btn-glow"
>Adicionar Bot</a
>
<p>Jotchua &copy; 2022-2023</p>
<div class="footer-content">
<div class="footer-title">
<p>Jotchua Bot</p>
<span>&copy; 2022-2023</span>
</div>
<div class="footer-contato">
<p>Contato</p>
<a href="https://twitter.com/pedrozle" target="_blank">
<svg
class="link-icon"
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-twitter"
viewBox="0 0 16 16"
>
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"
/>
</svg>
Twitter
</a>
</div>
<p>v2.1.2</p>
</div>
</footer>
<script src="js/scripts.js"></script>
<script type="module" src="js/scripts.js"></script>
</body>
</html>
5 changes: 2 additions & 3 deletions docs/js/scripts.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
var listaDeTextos = [
var indice = 0;
const listaDeTextos = [
"animar",
"bagunçar",
"moderar",
Expand All @@ -7,8 +8,6 @@ var listaDeTextos = [
"colorir",
"impulsionar",
];
var indice = 0;

// Função para atualizar o texto do parágrafo
function atualizarTexto() {
var paragrafo = document.getElementById("changeText");
Expand Down

0 comments on commit 653d5a1

Please sign in to comment.