Skip to content
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 @@ -4,6 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="style.css">
<title>CSS I - Prática Guiada 1</title>
</head>

Expand Down
21 changes: 21 additions & 0 deletions exercicio1/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
header {
color: white;
background-color: blue;
}

.sub-titulo{
background-color: yellow;
}

section{
background-color: green;
}

.titulo-secao{
color: white;
}

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

Expand Down
50 changes: 30 additions & 20 deletions exercicio2/style.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,32 @@
.longe-bordas{
background-color: #FFA6A9;
}
.longe-bordas {
background-color: #FFA6A9;
padding: 10px;
}

.afastado {
background-color: #77C0ED;
margin: 85px;
}

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

.afastado{
background-color: #77C0ED;
}
.alto{
background-color: #C3E887;
}

.largo{
}

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

.bordado{
background-color: #AF9BCC;
}

.sumido{

}

}

.bordado {
background-color: #AF9BCC;
border: 3px dotted black;

}

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

Expand Down
16 changes: 12 additions & 4 deletions exercicio3/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,26 @@ header{

}

main{
font-family: Helvetica;
}

section{
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;
width: 60vw;
padding: 5vh;
}

aside{
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;
padding: 2.3vw;
width: 25vw;
}

img {
width: 95%
}

article{
Expand Down
3 changes: 3 additions & 0 deletions fixacao/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
main {
font-family: helvetica;
}