forked from WebDevSimplified/Spotify-Landing-Page-Redesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discover.css
47 lines (41 loc) · 750 Bytes
/
discover.css
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
.discover-main-section {
display: flex;
align-items: center;
justify-content: space-between;
flex-grow: 1;
}
.discover-main-section .covers-image {
width: 30vw;
margin-left: 2rem;
height: auto;
max-width: 350px;
}
.icon-section {
display: flex;
}
.icon {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
margin: .5rem;
padding: .75rem;
width: 100px;
height: 100px;
background-color: #202027;
margin-bottom: 2rem;
}
.icon img {
width: 40px;
}
@media (max-width: 800px) {
.discover-main-section {
flex-direction: column;
justify-content: center;
}
.discover-main-section .covers-image {
margin-top: 2rem;
height: 30vh;
width: auto;
}
}