20 lines
522 B
CSS
20 lines
522 B
CSS
.icon{
|
|
display: table-cell;
|
|
min-height: 24px;
|
|
max-width: 24px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 24px;
|
|
color: green;
|
|
}
|
|
|
|
.icon:hover{
|
|
transition: ease-in-out 100ms;
|
|
background-size: 16px;
|
|
}
|
|
|
|
|
|
.icon-archive{
|
|
/*background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Ic_archive_48px.svg/48px-Ic_archive_48px.svg.png)*/
|
|
background-image: url(https://upload.wikimedia.org/wikipedia/commons/f/fb/Ic_archive_48px.svg)
|
|
} |