react-spotify-api/src/components/Album.scss

86 lines
1.3 KiB
SCSS
Raw Normal View History

2019-12-16 18:38:48 -05:00
.album {
border: solid thin #b6b6b6;
width: 12em;
height: 18.5em;
.picture {
border-bottom: solid thin #b6b6b6;
background: #d7d7d7;
height: 9em;
overflow: hidden;
img {
min-height: 9em;
max-width: 12em;
}
}
.details {
display: inline-table;
position: relative;
height: 9.5em;
width: 100%;
text-align: left;
.title {
max-height: 44px;
overflow: hidden;
h2 {
font-size: 14pt;
margin: 0 0 3px 0;
font-weight: 500;
color: #444;
}
}
2019-12-16 20:40:52 -05:00
p, li {
2019-12-16 18:38:48 -05:00
font-size: 0.7rem;
color: #787878;
margin: 0;
}
2019-12-16 20:40:52 -05:00
.artists {
display: grid;
max-height: 36px;
ul {
width: 100%;
li {
width: 100%;
margin: 0;
padding: 0;
display: block;
}
}
}
2019-12-16 18:38:48 -05:00
.top {
padding: 10px;
}
.bottom {
padding: 10px;
position: absolute;
bottom: 25px;
}
2019-12-16 20:40:52 -05:00
a {
2019-12-16 18:38:48 -05:00
position: absolute;
bottom: 0;
2019-12-16 20:40:52 -05:00
text-align: center;
padding: 7px 0;
text-decoration: none;
font-size: 9pt;
2019-12-16 18:38:48 -05:00
width: 100%;
color: #868686;
background: #f1f1f1;
font-weight: bold;
border: none;
border-top: solid thin #b6b6b6;
border-bottom: solid thin #b6b6b6;
}
}
}