diff --git a/construction.html b/construction.html index 285a17e..ee2ae96 100644 --- a/construction.html +++ b/construction.html @@ -3,9 +3,18 @@ - Document + Pata Amiga + + - +
+ +
+
+ + + +
- \ No newline at end of file + diff --git a/documentation/documentation.zip b/documentation/documentation.zip new file mode 100644 index 0000000..4a6c74a Binary files /dev/null and b/documentation/documentation.zip differ diff --git a/images/gatoPedreiro.png b/images/gatoPedreiro.png new file mode 100644 index 0000000..bbc350a Binary files /dev/null and b/images/gatoPedreiro.png differ diff --git a/index.html b/index.html index 23c3155..1b12573 100644 --- a/index.html +++ b/index.html @@ -26,8 +26,12 @@

- - + + + + + +
diff --git a/style.css b/style.css index d685f0a..324fe6d 100644 --- a/style.css +++ b/style.css @@ -18,10 +18,6 @@ html, body { max-width: 100%; } -img { - width: 100%; -} - header { background-color: #0CBFDE; border-radius: 0px 0px 20px 20px; @@ -97,7 +93,7 @@ section#presentation > div > #paLogo { } } -input { +button { margin-top: 20px; font-family: 'Bungee'; font-size: 10pt; @@ -118,14 +114,24 @@ input { flex-wrap: wrap; } -input#documentation { +button#documentation { background-color: #0CBFDE; } -input#webSite { +#documentation:hover { + cursor: pointer; + background-color: #fedd598c; + } + +button#webSite { background-color: #FEDD59; } +#webSite:hover { + cursor: pointer; + background-color: #0cbfde79; +} + section#about{ background-color: #FEDD59; border-top: 1px solid black; @@ -397,4 +403,24 @@ text-decoration: underline; a:visited { color: black; -} \ No newline at end of file +} + +.adjustable-image { + display: flex; + align-items: center; + justify-content: center; + flex-wrap: wrap; + overflow: hidden; /* Impede que a imagem vaze */ +} + +.adjustable-image img { + max-width: 100%; /* A imagem terá no máximo a largura do seu contêiner */ + height: auto; /* Mantém a proporção da imagem */ +} + +/* Ajuste para telas pequenas */ +@media (max-width: 767px) { + .adjustable-image img { + max-width: 90%; /* Ajuste o tamanho da imagem para telas pequenas */ + } +}