Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wikipédia OTAKU #3

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Módulo 3 - Trilha HTML

**Título:** Recriando Wikipedia, com um layout melhor :)

## Objetivo
Este desafio consiste em treinar você com relação a estrutura do site, e também aplicar conhecimentos adiquiridos sobre semântica e acessibilidade.

## Desafio
Neste repositório tem uma estrutura básica já pré-montada de um layout simples com um pouco de CSS aplicado. Apenas para deixar mais apresentável.

Fiquem a vontade para criar da forma que desejarem, e sobre os temas que quiserem. O intuito aqui é divertir, e ao mesmo tempo aprender com o desafio.

Sigam as intruções da chamada do vídeo. Acredito que por lá, ficará mais fácil de entenderem como proceder.

## Links úteis
- [Download do NVDA](https://www.nvaccess.org/download/)
- [Wikipedia](https://pt.wikipedia.org/)


# Módulo 3 - Trilha HTML
**Título:** Recriando Wikipedia, com um layout melhor :)
## Objetivo
Este desafio consiste em treinar você com relação a estrutura do site, e também aplicar conhecimentos adiquiridos sobre semântica e acessibilidade.
## Desafio
Neste repositório tem uma estrutura básica já pré-montada de um layout simples com um pouco de CSS aplicado. Apenas para deixar mais apresentável.
Fiquem a vontade para criar da forma que desejarem, e sobre os temas que quiserem. O intuito aqui é divertir, e ao mesmo tempo aprender com o desafio.
Sigam as intruções da chamada do vídeo. Acredito que por lá, ficará mais fácil de entenderem como proceder.
## Links úteis
- [Download do NVDA](https://www.nvaccess.org/download/)
- [Wikipedia](https://pt.wikipedia.org/)
Binary file added assets/audio/voz.mp3
Binary file not shown.
153 changes: 115 additions & 38 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,38 +1,115 @@
body, html {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
ul { list-style: none; padding-left: 5px; }
a { color:blue; text-decoration: none;}
.bar {
background-color: #f9f9fb;
padding:15px;
border-top: solid 1px #cdcdcd;
border-bottom: solid 1px #cdcdcd;
}
.content {
max-width: 1440px;
margin: auto;
grid-gap: 3rem;
display: grid;
gap: 3rem;
grid-template-areas: "sidebar main anchors";
grid-template-columns: minmax(0,15rem) minmax(0,2.5fr) minmax(0,15rem);
padding-left: 1rem;
padding-right: 1rem;
}
.footer {
min-height: 100px;
border-top: solid 1px #cdcdcd;
}
.anchors {
border-left: solid 1px #cdcdcd;
padding-left: 15px;
}
.sidebar {
border-right: solid 1px #cdcdcd;
}
figure {
text-align: center;
}
body, html {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
ul { list-style: none; padding-left: 5px; }
a { color:blue; text-decoration: underline;}
.bar {
background-color: #f9f9fb;
padding:15px;
border-top: solid 1px #cdcdcd;
border-bottom: solid 1px #cdcdcd;
}
content {
max-width: 1440px;
margin: auto;
grid-gap: 3rem;
display: grid;
gap: 3rem;
grid-template-areas: "sidebar main anchors";
grid-template-columns: minmax(0,15rem) minmax(0,2.5fr) minmax(0,15rem);
padding-left: 1rem;
padding-right: 1rem;
}
footer {
text-align: center;
min-height: 100px;
background-color: black;
color: #cdcdcd;
}
nav {
background-color: black;
color: bisque;
border-left: solid 1px #cdcdcd;
padding-left: 10px;


}

nav ul li a{
padding: 2px 6px;
border-radius: 5px 0;
}
nav ul li a:hover{
color: black;
font-size: 110%;
background-color:white;
}
menu {
border-right: solid 1px #cdcdcd;
background-color: black;
color: bisque;
margin: 0px;

}
.figure1 {
text-align: center;
background-color: black;
border-radius: 15px 0px;
width: 400px;
height: 180px;
margin-left: 150px;
}
.figure2 {
text-align: center;
background-color: black;
border-radius: 15px 0px;
width: 400px;
height: 180px;
margin-left: 150px;
}
.figure3 {
text-align: center;
background-color: black;
border-radius: 15px 0px;
width: 400px;
height: 180px;
margin: 20px;
margin-left: 150px;


}
.audio{
margin-top: 5%;
}
header{
background-color: black;
}
.audio{
width: 50%;
}
details ul{
font-size: 85%;
margin-left: 10%;

}
input{
width: 150px;
height: 30px;
margin: 5px;
border-radius: 10px;
border: none;
}
textarea{
width: 200px;
height: 150px;
margin: 5px;
border-radius: 10px;
border: none;
}
.fieldset{
text-align: center;
color: #cdcdcd;
}

Binary file added assets/favicons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/game-of-thrones.png
Binary file not shown.
Binary file added assets/images/logo (2).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/logo.png
Binary file not shown.
Loading