Skip to content

Commit

Permalink
base
Browse files Browse the repository at this point in the history
  • Loading branch information
ElizabethBil committed Sep 29, 2023
1 parent 44bd24b commit a73f9ff
Show file tree
Hide file tree
Showing 9 changed files with 176 additions and 20 deletions.
11 changes: 11 additions & 0 deletions src/css/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@media screen and (min-width: 768px) {

}

@media screen and (min-width: 1280px) {

}

@media screen and (min-width: 1440px) {

}
14 changes: 13 additions & 1 deletion src/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,23 @@ main {
/* ==== CONTAINER ==== */

.container {
width: 375px;
width: 100%;
margin-left: auto;
margin-right: auto;
}

@media screen and (min-width: 375px) {
.container {
max-width: 375px;
}
}

@media screen and (max-width: 375px) {
.container {
width: 100%;
}
}

@media screen and (min-width: 768px) {
.container {
width: 768px;
Expand Down
5 changes: 5 additions & 0 deletions src/css/collection.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@media screen and (min-width: 768px) {}

@media screen and (min-width: 1280px) {}

@media screen and (min-width: 1440px) {}
5 changes: 5 additions & 0 deletions src/css/footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@media screen and (min-width: 768px) {}

@media screen and (min-width: 1280px) {}

@media screen and (min-width: 1440px) {}
22 changes: 3 additions & 19 deletions src/css/header.css
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
.header {
padding: 20px 0;
}
@media screen and (min-width: 768px) {}

.nav-list {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 40px;
}
@media screen and (min-width: 1280px) {}

.nav-link {
font-weight: 500;
letter-spacing: 0.02em;
line-height: 1.5;
}

.nav-link:hover,
.nav-link:focus {
color: #747bff;
}
@media screen and (min-width: 1440px) {}
5 changes: 5 additions & 0 deletions src/css/hero.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@media screen and (min-width: 768px) {}

@media screen and (min-width: 1280px) {}

@media screen and (min-width: 1440px) {}
5 changes: 5 additions & 0 deletions src/css/order.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@media screen and (min-width: 768px) {}

@media screen and (min-width: 1280px) {}

@media screen and (min-width: 1440px) {}
5 changes: 5 additions & 0 deletions src/css/testimonials.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@media screen and (min-width: 768px) {}

@media screen and (min-width: 1280px) {}

@media screen and (min-width: 1440px) {}
124 changes: 124 additions & 0 deletions src/img/icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a73f9ff

Please sign in to comment.