-
Notifications
You must be signed in to change notification settings - Fork 17
/
Album.css
107 lines (94 loc) · 1.74 KB
/
Album.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.albumContent {
padding: 10px 40px;
}
.topBan {
display: flex;
gap:30px;
}
.albumCover {
width:200px;
}
.albumDeets {
display: flex;
flex-direction: column;
justify-content: end;
color: rgb(205, 203, 203);
}
.title {
color:white;
font-size: 40px;
font-weight: bold;
}
.artist {
font-size: 20px;
color:white;
}
.playButton {
padding: 10px;
background-color: #1DB954;
width: 120px;
color:white;
display: flex;
justify-content: center;
margin-top: 35px;
margin-bottom: 35px;
border-radius: 25px;
letter-spacing: 1.5px;
transition: transform 0.4s;
}
.openButton {
padding: 10px;
background-color: transparent;
width: 200px;
color:white;
display: flex;
justify-content: center;
align-items: center;
gap:10px;
margin-top: 35px;
margin-bottom: 35px;
border: 2px solid white;
border-radius: 25px;
letter-spacing: 1.5px;
transition: transform 0.4s;
}
.openLogo{
height:20px;
}
.playButton:hover {
cursor: pointer;
transform: scale(1.05);;
}
.openButton:hover{
cursor: pointer;
transform: scale(1.05);;
}
.tableHeader {
border-bottom: 1px solid rgb(67, 67, 67);
display: flex;
color: rgb(125, 125, 125);
letter-spacing: 1.4px;
font-size: 16px;
font-weight: 500;
padding-bottom: 8px;
}
.numberHeader {
display: flex;
justify-content: center;
width: 10%;
}
.titleHeader {
width: 80%;
padding-left: 5%;
display: flex;
justify-content: start;
}
.tableContent {
border-bottom: 1px solid rgb(67, 67, 67);
display: flex;
color: rgb(125, 125, 125);
font-size: 16px;
font-weight: 500;
padding-bottom: 13px;
padding-top: 13px;
}