1
1
mirror of https://github.com/rsms/inter.git synced 2024-12-13 12:14:53 +03:00
inter/docs/inter.css

53 lines
1.6 KiB
CSS
Raw Normal View History

---
layout: none
---
2021-03-29 01:30:11 +03:00
{% assign font_v = site.data.fontinfo[0].version | append: "b" %}
/*
Font families defined by this CSS:
2019-02-03 01:29:56 +03:00
- "Inter" static "traditional" fonts for older web browsers
- "Inter var" single-axis variable fonts for all modern browsers
- "Inter var experimental" multi-axis variable fonts for modern web browsers
2019-02-03 01:29:56 +03:00
Use like this in your CSS:
2019-02-03 01:29:56 +03:00
:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
:root { font-family: 'Inter var', sans-serif; }
}
2019-02-03 01:29:56 +03:00
------------------------- static ------------------------- */
{% include Inter-static.css %}
2019-02-03 01:29:56 +03:00
/* ----------------------- variable ----------------------- */
{% include Inter-italic.var.css %}
{% include Inter-roman.var.css %}
2019-02-03 01:29:56 +03:00
/* ----------- experimental multi-axis variable -----------
2019-02-03 01:29:56 +03:00
Slant axis is not yet widely supported (as of February 2019) and thus this
multi-axis single-file variable font is opt-in rather than the default.
When using this, you will likely need to set font-variation-settings explicitly, e.g:
* { font-variation-settings: "slnt" 0deg }
.italic { font-variation-settings: "slnt" 10deg }
2019-02-03 01:29:56 +03:00
*/
{% include Inter.var.css %}
2019-02-03 01:29:56 +03:00
/* Legacy name (became legacy on Feb 2, 2019) */
2019-02-03 01:29:56 +03:00
@font-face {
font-family: 'Inter var alt';
font-weight: 100 900;
font-style: normal;
font-named-instance: 'Regular';
font-display: swap;
2020-08-20 21:18:18 +03:00
src: url("font-files/Inter-roman.var.woff2?v={{font_v}}") format("woff2");
2019-02-03 01:29:56 +03:00
}
@font-face {
font-family: 'Inter var alt';
font-weight: 100 900;
font-style: italic;
font-named-instance: 'Italic';
font-display: swap;
2020-08-20 21:18:18 +03:00
src: url("font-files/Inter-italic.var.woff2?v={{font_v}}") format("woff2");
2019-02-03 01:29:56 +03:00
}