17 lines
316 B
CSS
17 lines
316 B
CSS
|
.icon {
|
||
|
display: inline-block;
|
||
|
width: 1em;
|
||
|
height: 1em;
|
||
|
stroke-width: 0;
|
||
|
stroke: currentColor;
|
||
|
fill: currentColor;
|
||
|
}
|
||
|
|
||
|
/* ==========================================
|
||
|
Single-colored icons can be modified like so:
|
||
|
.icon-name {
|
||
|
font-size: 32px;
|
||
|
color: red;
|
||
|
}
|
||
|
========================================== */
|