overleaf-cep/services/web/frontend/fonts/material-symbols/material-symbols.css
Mathias Jakobsen 5b7ca476a7 Merge pull request #22940 from overleaf/mj-font-script
[web] Add script for updating unfilled font

GitOrigin-RevId: c25a470e5263f62a9d445b10e66fa222b9fa8fa5
2025-01-21 09:05:14 +00:00

60 lines
1.3 KiB
CSS

@font-face {
font-family: 'Material Symbols Rounded';
font-style: normal;
font-weight: 400;
font-display: block;
/*
Generated from MaterialSymbolsRounded[FILL,GRAD,opsz,wght].woff2 with specific values:
'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20
*/
src: url('MaterialSymbolsRoundedSlice.woff2') format('woff2');
}
@font-face {
font-family: 'Material Symbols Rounded Unfilled Partial';
font-style: normal;
font-weight: 400;
font-display: block;
/*
Generated by frontend/fonts/material-symbols/build-unfilled.mjs
*/
src: url('MaterialSymbolsRoundedUnfilledPartialSlice.woff2') format('woff2');
}
.material-symbols {
font-family: 'Material Symbols Rounded';
font-weight: normal;
font-style: normal;
font-size: 20px;
font-variation-settings:
'FILL' 1,
'wght' 400,
'GRAD' 0,
'opsz' 20;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
&.size-2x {
font-size: 2em;
}
&.rotate-180 {
transform: rotate(180deg);
}
&.unfilled {
font-family: 'Material Symbols Rounded Unfilled Partial';
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 20;
}
}