| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /framework7/node_modules/material-icons/css/ |
Upload File : |
@import 'variables';
@import 'mixins';
@each $font-family
in (
'Material Icons',
'Material Icons Outlined',
'Material Icons Round',
'Material Icons Sharp',
'Material Icons Two Tone'
)
{
$full-class-name: to-lower-case($font-family);
$full-class-name: material-icons-str-replace($full-class-name, ' ', '-');
$class-name: material-icons-str-replace(
$full-class-name,
'material-icons',
$material-icons-css-prefix
);
/**
* @deprecated As of 1.0, use .#{$full-class-name} instead of .#{$class-name}
*/
.#{$class-name} {
@include material-icons-font-class($font-family);
}
}
@each $name, $codepoint in $material-icons-codepoints {
$class-name: material-icons-str-replace(
$name,
$material-icons-css-search,
$material-icons-css-replace
);
.#{$material-icons-css-prefix}-#{$class-name} {
@include material-icon($name);
}
}