beathaven/app/assets/stylesheets/artist.css.scss

71 lines
1.5 KiB
SCSS
Raw Normal View History

2012-08-27 03:53:30 +04:00
.artist-page {
h1 {
2012-09-01 21:55:01 +04:00
font-family: "Lobster Two", Georgia, serif;
font-weight: 700;
2012-08-27 03:53:30 +04:00
font-size: 42px;
line-height: 64px;
letter-spacing: 1px;
2012-09-01 21:55:01 +04:00
text-shadow: 0 0 1px rgba(0, 0, 0, .3);
2012-08-27 03:53:30 +04:00
}
.artist-info {
min-height: 250px;
2012-09-01 21:55:01 +04:00
margin-bottom: 20px;
2012-08-27 03:53:30 +04:00
.pic {
float: left;
img {
width: 250px;
2012-09-01 21:55:01 +04:00
margin-top: 5px;
2012-08-27 03:53:30 +04:00
border-size: 1px;
border-style: solid;
border-color: rgba(255, 255, 255, .2);
border-radius: 5px;
2012-09-01 21:55:01 +04:00
@include box-shadow(0 0 3px 1px hsla(0, 0%, 0%, 0.3));
2012-08-27 03:53:30 +04:00
}
}
.bio {
margin-left: 270px;
font-family: "Source Sans Pro", Helvetica, sans-serif;
font-size: 22px;
line-height: 26px;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}
}
.album {
2012-09-01 21:55:01 +04:00
min-height: 280px;
2012-08-27 03:53:30 +04:00
margin-bottom: 30px;
h2 {
2012-09-01 21:55:01 +04:00
font-family: "Lobster Two", Georgia, Serif;
font-weight: 700;
2012-08-27 03:53:30 +04:00
font-size: 26px;
2012-09-01 21:55:01 +04:00
text-shadow: 0 0 1px rgba(0, 0, 0, .3);
2012-08-27 03:53:30 +04:00
}
.pic {
float: left;
height: 300px;
text-align: center;
img {
background-color: #a0a0a0;
width: 250px;
height: 250px;
2012-09-01 21:55:01 +04:00
margin-top: 5px;
2012-08-27 03:53:30 +04:00
border-size: 1px;
border-style: solid;
border-color: rgba(255, 255, 255, .2);
border-radius: 5px;
2012-09-01 21:55:01 +04:00
@include box-shadow(0 0 3px 1px hsla(0, 0%, 0%, 0.3));
2012-08-27 03:53:30 +04:00
margin-bottom: 10px;
}
}
2012-09-01 21:55:01 +04:00
& > .title {
2012-08-27 03:53:30 +04:00
margin-left: 270px;
margin-bottom: 10px;
}
}
}