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
3,367 changes: 3,352 additions & 15 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion part-2/10-media-queries/columns.css

This file was deleted.

1 change: 0 additions & 1 deletion part-2/17-nav-menu/styles.css

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Add your own CSS code below */
.link {
color: #4491db;
color: red;
font-weight: 700;
text-decoration: none;
}
15 changes: 15 additions & 0 deletions week-2/10-media-queries/columns.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* Add your own CSS code below */
.countries {
columns: 1;
}

@media only screen and (min-width: 1200px) {
.countries {
columns: 3;
}
}
@media only screen and (min-width: 769px) {
.countries {
columns: 2;
}
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/* Add your own CSS code below */
.container {
display: flex;
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Flexbox
columns: 3;# Flexbox

Flexbox is used to change the layout of elements on the HTML page. In this exercise, you'll apply the `flex-direction` property to change how the countries are displayed. Follow the steps below to complete this exercise.

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 18 additions & 0 deletions week-2/17-nav-menu/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/* Write your media queries and flexbox CSS below */
@media only screen and (min-width: 480px) {
.site-header__nav {
display: flex;
}
}
@media only screen and (min-width: 700px) {
.site-header {
display: flex;
}
}
@media only screen and (min-width: 900px) {
.site-header {
justify-content: space-around;
align-items: center;
background-color: red;
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.