Skip to content

added responsiveness #71

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
13 changes: 12 additions & 1 deletion 25 - Full Bleed Blog Layout/full-bleed-blog-FINISHED.html
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ <h2>Dear Time</h2>
.post {
display: grid;
max-width: 1000px;
margin: 200px auto;
margin: 100px auto;
grid-gap: 10px 50px;
grid-template-columns: 3fr 12fr 5fr;
}
Expand Down Expand Up @@ -200,6 +200,17 @@ <h2>Dear Time</h2>
grid-column: span 1 / -1;
border-left: 2px solid var(--yellow);
}


@media screen and (max-width:640px) {
.post {
display: grid;
max-width: 1000px;
margin: 100px 20px;
grid-gap: 10px 50px;
grid-template-columns: 1fr;
}
}
</style>
</body>

Expand Down