Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
add min resolution
  • Loading branch information
lucasciofe authored Oct 3, 2023
1 parent e043549 commit 0a2f270
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions html/positionweb2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ p {
font-size: 2rem;
}
.button{
display: grid;
background-color: #e21;
color: #fff;
padding: 1rem 2rem;
Expand Down Expand Up @@ -145,4 +146,31 @@ p {
position: absolute;
top: 30px;
right: -30px;
}

/* screen responsive */
@media (max-width: 600px){
.content {
display: grid;
grid-template-columns: 1fr;
max-width: 500px;

}
.introduction::before {
content: "";
width: 4px;
height: 60px;
background-color: #e21;
position: absolute;
top: 260px;
left: 50%;

}
.bar {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;

}

}

0 comments on commit 0a2f270

Please sign in to comment.