Files
overleaf-cep/services/web/frontend/stylesheets/main-style.scss
T
Antoine Clausse 5a242cd4ac [web] Add font Inter (#29440)
* Add font Inter

Files downloaded from https://rsms.me/inter/
Kept only the woff2 files and CSS definitions for Inter-Regular and Inter-SemiBold

* Delete inter folder

* Add inter to build-fonts.mjs and run it

* Add inter.css

* Update latofonts archive URL

GitOrigin-RevId: 24cd8a48f4566d8a55443eb2cd938ee129dff5f8
2025-11-03 09:05:57 +00:00

56 lines
1.5 KiB
SCSS

// Web fonts
@import '../fonts/noto-sans/noto-sans.css';
@import '../fonts/inter/inter.css';
@import '../fonts/dm-mono/dm-mono.css';
@import '../fonts/merriweather/merriweather.css';
@import '../fonts/source-code-pro/source-code-pro.css';
@import '../fonts/STIXTwoMath/stix-two-math.css';
@import '../fonts/noto-serif/noto-serif.css';
@import '../fonts/open-dyslexic-mono/open-dyslexic-mono.css';
@import '../fonts/material-symbols/material-symbols.css';
// Vendor CSS
// TODO Bootstrap 5: Check whether this works with Bootstrap 5, and whether we can replace it
@import 'vendor/select/select';
// Bootstrap-related
// Note that files containing Bootstrap or Sass files that interact with
// Bootstrap's Sass variables must use @import rather than @use because
// Bootstrap relies on its variables, mixins etc. all being global.
// Include Bootstrap 5 itself, plus overrides and extend Bootstrap styles.
@import 'base/bootstrap';
// Extra colours for the website redesign
@import 'base/colors';
// Components custom style
@import 'components/all';
// Typography-related
@import 'base/typography';
// Custom helpers
@import 'helpers/all';
// Modals
@import 'modals/all';
// Pages custom style
@import 'pages/all';
// Link styles
@import 'base/links';
@import 'base/base';
// Page layout that isn't related to a particular component or page
@import 'base/layout';
// Module styles
// TODO: find a way for modules to add styles dynamically
@import 'modules/all';
// DS unified access styles
@import 'ciam/all';