-
Notifications
You must be signed in to change notification settings - Fork 0
/
hsc.css
85 lines (73 loc) · 1.57 KB
/
hsc.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
.hsc > div {
text-align: center;
margin: 10px;
font-size: 30px;
justify-content: center;
}
.hsc > .album-art {
grid-column: 1 / span 1;
grid-row: 1 / span 3;
border-radius: 10px;
padding: 0;
}
.album-art > img{
width: 100%;
height: 100%;
border-radius: 10px;
}
.hsc > .hsc-text {
grid-column: column-start 1 / span 2;
grid-row: row-start 1 / span 1;
text-align: left;
font-size: 20px;
overflow: hidden;
}
.hsc > .title {
grid-column: column-start 1 / end;
grid-row: 1 / row-start 1;
border-radius: 10px;
background-color: rgb(255, 255, 255);
font-size: 35px;
padding: 30px!important;
overflow: hidden;
}
.hscMoreInfo {
display: inline-flex;
grid-column: column-start 1 / span 2;
grid-row: row-start 2 / span 1;
border-radius: 10px;
}
.seeMore {
border-radius: 10px;
background-color: rgb(242, 242, 242);
font-size: 20px;
padding: 5px;
padding-top: 10px;
margin-right: 20px;
border:1px solid transparent;
cursor: pointer;
}
.hscMoreInfo > img {
height: 55px;
width: 142px;
border:1px solid transparent;
border-radius: 10px;
cursor: pointer;
}
.hscMoreInfo > *:active {
transform: scale(1.05);
}
.hscMoreInfo > *:hover {
border-color: black;
border-width: 2px;
}
.hsc > .image-share {
grid-column: column-start 2 / share-column;
grid-row: 1 / row-start 1;
}
.image-share {
z-index: 10;
}
.image-share > img:active {
transform: scale(1.1);
}