32 lines
471 B
CSS
32 lines
471 B
CSS
#artists {
|
|
text-align: center;
|
|
width: 700px;
|
|
margin: auto;
|
|
}
|
|
|
|
#artists .artist {
|
|
display: inline-block;
|
|
width: 120px;
|
|
margin: 5px;
|
|
}
|
|
|
|
#artists .artist a {
|
|
color: #929292;
|
|
text-decoration: none;
|
|
-o-transition: .5s;
|
|
-ms-transition: .5s;
|
|
-moz-transition: .5s;
|
|
-webkit-transition: .5s;
|
|
transition: .5s;
|
|
}
|
|
|
|
#artists .artist a:hover {
|
|
color: #c9c9c9;
|
|
}
|
|
|
|
#artists .artist img {
|
|
width: 120px;
|
|
height: 120px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
} |