mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-08-28 13:00:15 +03:00
37 lines
581 B
CSS
37 lines
581 B
CSS
@font-face {
|
|
font-family: "materialicons";
|
|
src: url(../icons/materialicons-regular.woff) format("woff");
|
|
}
|
|
|
|
.Icon,
|
|
*[data-icon]:before {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
|
|
font-family: "materialicons";
|
|
font-size: 24px;
|
|
text-align: center;
|
|
|
|
color: black;
|
|
|
|
content: attr(data-icon);
|
|
|
|
/* This is important for IE, which has it off by default */
|
|
font-feature-settings: "liga" 1;
|
|
}
|
|
|
|
.Icon.-small {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.icon-toggled:before {
|
|
color: #777777;
|
|
}
|
|
|
|
.icon-paused:before {
|
|
color: gold;
|
|
}
|