45 lines
1.1 KiB
CSS
45 lines
1.1 KiB
CSS
/* Usage <span class="material-icons">search</span>
|
|
Change font-size to resize the icon
|
|
*/
|
|
.material-icons {
|
|
font-family: 'Material Icons';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
letter-spacing: normal;
|
|
text-transform: none;
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
word-wrap: normal;
|
|
direction: ltr;
|
|
/* Support for all WebKit browsers. */
|
|
-webkit-font-smoothing: antialiased;
|
|
/* Support for Safari and Chrome. */
|
|
text-rendering: optimizeLegibility;
|
|
/* Support for Firefox. */
|
|
-moz-osx-font-smoothing: grayscale;
|
|
/* Support for IE. */
|
|
font-feature-settings: 'liga';
|
|
}
|
|
|
|
/* Usage <span class="material-icons outlined">search</span> */
|
|
.material-icons.outlined{
|
|
font-family: 'Material Icons Outlined';
|
|
}
|
|
|
|
/* Usage <span class="material-icons round">search</span> */
|
|
.material-icons.round {
|
|
font-family: 'Material Icons Round';
|
|
}
|
|
|
|
/* Usage <span class="material-icons sharp">search</span> */
|
|
.material-icons.sharp {
|
|
font-family: 'Material Icons Sharp';
|
|
}
|
|
|
|
/* Usage <span class="material-icons two-tone">search</span> */
|
|
.material-icons.two-tone {
|
|
font-family: 'Material Icons Two Tone';
|
|
}
|