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

Exercicios #16

Open
wants to merge 2 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
1 change: 1 addition & 0 deletions exercicio1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS I - Prática Guiada 1</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
Expand Down
38 changes: 38 additions & 0 deletions exercicio1/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
*{
margin: 0px;
padding: 0px;
}



h1 {
background-color: blue;
color: aliceblue;
}
#titulo-importante {
background-color: blueviolet;

}


.sub-titulo {
background-color: yellow;
}
section {
background-color: green;
border: 10px solid black;
margin: 50px;
}
.titulo-secao {
color: aliceblue;
font-weight: bold
}
.texto-generico {
font-weight: bold
}
.titulo-pouco-importante {
background-color: black;
color: aliceblue

}

1 change: 1 addition & 0 deletions exercicio2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title> CSS I - Prática Guiada 2</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
Expand Down
22 changes: 21 additions & 1 deletion exercicio2/style.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,42 @@
*{
margin: 0;
padding: 0;
}

.longe-bordas{
background-color: #FFA6A9;
padding: 10px;
display: block;


}

.afastado{
background-color: #77C0ED;
margin: 40px;
display: block;



}
.alto{
background-color: #C3E887;
height: 300px;


}

.largo{
background-color: #FFE396;
width: 500px;
}

.bordado{
background-color: #AF9BCC;
border: 1px dotted black;
display: block;
}

.sumido{

display: none;
}
7 changes: 4 additions & 3 deletions exercicio3/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS I - Prática Guiada 3</title>
<link rel="stylesheet" type="text/CSS" href="./style.css">
</head>

<body>
Expand All @@ -13,11 +14,11 @@ <h1>Jornal Labenu</h1>
</header>
<main>
<section>
<h2>A coleção completa de manuais do Super Nintendo</h2>
<h2>SECTION AQUI A coleção completa de manuais do Super Nintendo</h2>
<h3>Acervo digital conta com 1.757 livretos que acompanharam os jogos lançados para o console da empresa japonesa.
</h3>
<img
src="https://www.nexojornal.com.br/incoming/imagens/super-mario.jpg/alternates/LANDSCAPE_640/super-mario.jpg" />
src="https://www.estadao.com.br/resizer/v2/BSRFGPQARVI7ZHFPKHOT4RBE54.jpg?quality=80&auth=0fb141aba7938edf2932f0dafbc63165c3151231df494465528ad86ffa466ad9&width=768&height=542&focal=0,0" />
<p>Lançado em 1990, o Super Nintendo foi um dos videogames mais populares da história. Foram 49 milhões de
consoles vendidos no mundo todo entre sua chegada ao mercado e o fim da produção em 2003.

Expand All @@ -27,7 +28,7 @@ <h3>Acervo digital conta com 1.757 livretos que acompanharam os jogos lançados
formato PDF, disponível para download gratuito.</p>
</section>
<aside>
<h2>Leia mais</h2>
<h2>AQUI COMEÇA ASIDE Leia mais</h2>
<article>
<h3>Um documentário totalmente gravado em realidade virtual</h3>
<h5>por Kelly Ribeiro</h5>
Expand Down
34 changes: 28 additions & 6 deletions exercicio3/style.css
Original file line number Diff line number Diff line change
@@ -1,25 +1,47 @@
html {
font-size: 10px;

}

*{
padding: 0;
margin: 0;
}
header{

}
main {
font-family: Helvetica;
width: 100vw;
background-color: blueviolet;
padding: 0px;
font-size: 20px;

}

section{
float: left;
/* float: left; */
/*float é uma propriedade que permite deixar elementos à direita ou à esquerda da tela. Não costuma ser usado. Aqui, é usado apenas para ilustrar diferenças.*/
width: 840px;
padding: 40px;
max-width: 70vw;
padding: 0px;
min-height: 60vh;
background-color: aqua;
font-size: 2rem;
}

img {
width: 60%;

}

aside{
float:right;
/* float:right; */
/*float é uma propriedade que permite deixar elementos à direita ou à esquerda da tela. Não costuma ser usado. Aqui, é usado apenas para ilustrar diferenças.*/
padding: 20px;
width: 340px;
width: 600px;
background-color: burlywood;
}

article{
margin: 10px 0;
}
}