forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadaptive.css
More file actions
57 lines (47 loc) · 709 Bytes
/
adaptive.css
File metadata and controls
57 lines (47 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.menu__burger {
display: none;
}
body {
max-width: none;
}
section {
justify-content: flex-end;
}
.menu {
justify-content: flex-end;
max-width: none;
}
nav {
display: flex;
justify-content: flex-end;
align-items: center;
height: 75px;
margin: 1.5rem;
background: #eae8e8;
}
.navbar {
display: flex;
column-gap: 2rem;
padding-right: 2rem;
}
.main {
display: flex;
flex-direction: row-reverse;
margin: 1.5rem;
margin-top: 3rem;
}
.grid__img {
height: 450px;
}
.grid {
margin: 3rem 1.5rem 0 1.5rem;
}
@media (min-width: 1100px) {
.grid {
display: flex;
justify-content: center;
}
.grid__img {
height: 270px;
}
}