1
0
Fork 0
IdreXyz/static/css/artists.css

53 lines
804 B
CSS
Raw Normal View History

#content h1 {
text-align: center;
}
.artists {
2015-03-14 22:38:12 +01:00
width: 700px;
margin: auto;
2016-02-26 15:20:55 +01:00
text-align: center;
2015-03-14 22:38:12 +01:00
}
.artists .artist {
2017-08-17 15:21:14 +02:00
width: 160px;
2016-02-26 15:20:55 +01:00
position: relative;
2015-03-14 22:38:12 +01:00
margin: 5px;
2016-02-26 15:20:55 +01:00
display: inline-block;
2015-03-14 22:38:12 +01:00
}
.artists .artist a {
2015-03-14 22:38:12 +01:00
color: #929292;
text-decoration: none;
2016-02-26 15:20:55 +01:00
transition: .5s;
2015-03-14 22:38:12 +01:00
}
2017-08-17 15:21:14 +02:00
.artists .artist .logo {
height: 160px;
width: 160px;
background-size: cover;
background-color: white;
2015-03-14 22:38:12 +01:00
border: none;
border-radius: 5px;
2016-02-26 15:20:55 +01:00
}
.artists .artist-genre {
2017-08-17 15:21:14 +02:00
display: flex;
position: absolute;
2016-02-26 15:20:55 +01:00
top: 0px;
left: 0px;
2017-08-17 15:21:14 +02:00
height: 150px;
width: 150px;
padding: 5px;
2016-02-26 15:20:55 +01:00
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.6);
2016-02-26 15:20:55 +01:00
border-radius: 5px;
color: white;
opacity: 0;
transition: all 0.7s ease;
}
.artists .artist-genre:hover {
2016-02-26 15:20:55 +01:00
opacity: 1;
}