-
Notifications
You must be signed in to change notification settings - Fork 1
/
artists1.css
82 lines (73 loc) · 1.21 KB
/
artists1.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.artists-container {
display: flex;
justify-content: center;
background-color: #010101;
color: white;
}
.artist-heading {
margin-top: 25px;
align-items: center;
margin-bottom: 0;
}
.artists-box-container {
display: flex;
flex-direction: column;
background-color: #010101;
}
.artists-box {
display: flex;
flex-direction: row;
justify-content: center;
background-color: #010101;
}
.artist-box {
align-items: center;
width: 20rem;
height: 25rem;
padding: 1.5%;
margin: 1.5%;
color: white;
background-color: #010101;
}
.artist-pic {
width: 100%;
height: 100%;
overflow: hidden;
}
.artist-pic img {
object-fit: contain;
}
.artist-name {
font-size: 1.3rem;
font-family: "gotham";
margin-top: 10px;
}
.artist-link {
margin: 25px;
}
@media only screen and (max-width: 1000px) {
.artists-box {
display: flex;
align-items: center;
}
.artist-box {
display: flex;
width: 15rem;
}
.artist-pic {
width: 100%;
height: 20rem;
overflow: hidden;
}
}
@media only screen and (max-width: 700px) {
.artists-box {
display: flex;
flex-direction: column;
align-items: center;
}
.artist-box {
display: flex;
width: 15rem;
}
}