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

Ammal a luiz paulo pinheiro #13

Open
wants to merge 3 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
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ <h1>Eu sou um bloco com estilo!</h1>
<p>O CSS me deixou nos trinques</p>
</article>

<article>
<article class="bloco" id="bloco-2">
<h1>Eu sou um bloco com estilo!</h1>
<p>O CSS me deixou nos trinques</p>
</article>

<article>
<article class="bloco" id="bloco-3">
<h1>Eu sou um bloco com estilo!</h1>
<p>O CSS me deixou nos trinques</p>
</article>

<article>
<article class="bloco" id="bloco-4">
<h1>Eu sou um bloco com estilo!</h1>
<p>O CSS me deixou nos trinques</p>
</article>
Expand Down
37 changes: 37 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

.bloco{
display: block;
height: 80px;
width: 300px;
margin: 5px 5px 5px 5px;
padding-left: 15px;
line-height: 5px;
color: white;
}


#bloco-1{
background-color: chocolate;
border: 5px solid orange;
}

#bloco-2{
background-color: darkgreen;
border: 5px solid rgb(4, 192, 4);
}

#bloco-3{
background-color: rgb(3, 68, 30);
border: 5px dashed rgb(75, 233, 75);
}

#bloco-4{
background-color: red;
border: 5px dashed rgb(250, 64, 95);
}



main{
font-family: helvetica;
}