-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (64 loc) · 1.17 KB
/
style.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
.discogs-container {
max-width: 700px;
min-width: 200px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.discogs-block-parent {
max-width: 700px;
min-width: 200px;
margin: auto;
}
.discogs-card {
height: 350px;
width: 100%;
text-align: center;
margin-bottom: 10px;
margin-top: 0px;
padding: 0px;
}
p {
padding: 0px;
margin: 0px;
}
.album-cover-div {
height: 150px;
}
.album-title-div {
height: 75px;
background-color: rgb(246, 246, 246);
}
/* loader */
.loader {
display: inline-block;
position: relative;
width: 100%;
height: 80px;
opacity: 0;
}
.loader.show {
opacity: 1;
}
.loader {
display: inline-block;
height: 80px;
}
.loader:after {
content: " ";
display: block;
width: 64px;
height: 64px;
margin: auto;
border-radius: 50%;
border: 6px solid rgb(0, 0, 0);
border-color: rgb(0, 0, 0) transparent rgb(0, 0, 0) transparent;
animation: loader 1.2s linear infinite;
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}