75 lines
1.4 KiB
SCSS
75 lines
1.4 KiB
SCSS
.artist-page {
|
|
h1 {
|
|
font: {
|
|
family: "Lobster Two", $helvetica;
|
|
weight: 700;
|
|
size: 42px;
|
|
}
|
|
line-height: 48px;
|
|
letter-spacing: 1px;
|
|
text-shadow: 0 0 1px rgba(0, 0, 0, .3);
|
|
}
|
|
|
|
.artist-info {
|
|
min-height: 300px;
|
|
margin-bottom: 20px;
|
|
|
|
.pic {
|
|
|
|
img {
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
border: {
|
|
size: 1px;
|
|
style: solid;
|
|
color: rgba(255, 255, 255, .2);
|
|
radius: 5px;
|
|
}
|
|
@include box-shadow(0 0 3px 1px hsla(0, 0%, 0%, 0.3));
|
|
}
|
|
}
|
|
.bio {
|
|
font-family: "Source Sans Pro", $helvetica;
|
|
font-size: 22px;
|
|
line-height: 26px;
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
|
|
}
|
|
}
|
|
|
|
.album {
|
|
min-height: 280px;
|
|
margin-bottom: 30px;
|
|
|
|
h2 {
|
|
font: {
|
|
family: "Lobster Two", $helvetica;
|
|
weight: 700;
|
|
size: 28px;
|
|
}
|
|
margin: 5px 0;
|
|
text-shadow: 0 0 1px rgba(0, 0, 0, .3);
|
|
}
|
|
.pic {
|
|
text-align: center;
|
|
|
|
img {
|
|
background-color: #a0a0a0;
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
border: {
|
|
size: 1px;
|
|
style: solid;
|
|
color: rgba(255, 255, 255, .2);
|
|
radius: 5px;
|
|
}
|
|
@include box-shadow(0 0 3px 1px hsla(0, 0%, 0%, 0.3));
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
& > .title {
|
|
margin-left: 270px;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
}
|