| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* Material Icons - Local Font Files */
- @font-face {
- font-family: 'Material Icons';
- font-style: normal;
- font-weight: 400;
- src: url('/static/fonts/material-icons/MaterialIcons-Regular.woff2') format('woff2'),
- url('/static/fonts/material-icons/MaterialIcons-Regular.woff') format('woff');
- font-display: swap;
- }
- @font-face {
- font-family: 'Material Icons Outlined';
- font-style: normal;
- font-weight: 400;
- src: url('/static/fonts/material-icons/MaterialIconsOutlined-Regular.woff2') format('woff2'),
- url('/static/fonts/material-icons/MaterialIconsOutlined-Regular.woff') format('woff');
- font-display: swap;
- }
- .material-icons {
- font-family: 'Material Icons';
- font-weight: normal;
- font-style: normal;
- font-size: 24px;
- display: inline-block;
- line-height: 1;
- text-transform: none;
- letter-spacing: normal;
- word-wrap: normal;
- white-space: nowrap;
- direction: ltr;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- -moz-osx-font-smoothing: grayscale;
- font-feature-settings: "liga";
- }
- .material-icons-outlined {
- font-family: 'Material Icons Outlined';
- font-weight: normal;
- font-style: normal;
- font-size: 24px;
- display: inline-block;
- line-height: 1;
- text-transform: none;
- letter-spacing: normal;
- word-wrap: normal;
- white-space: nowrap;
- direction: ltr;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- -moz-osx-font-smoothing: grayscale;
- font-feature-settings: "liga";
- }
|