7c51ea30a4
Removes a bunch of unused files: - Removed old font formats such as .otf, .woff, and .ttf; WOFF2 has baseline support - Removed mailer.js/.scss (no mailer functionality in masto-fe) - Removed vanilla reset - Removed vanilla/Win95 theme - Removed all vanilla styles (contrast, mastodon, mastodon-light) - Removed FontAwesome (from package.json and common.js) - Fixed some lint issues commit53242a3967Author: Zoë Bijl <code@moiety.me> Date: Tue Oct 14 17:08:47 2025 +0200 [chore] remove font-awesome commit3cc1792b8eAuthor: Zoë Bijl <code@moiety.me> Date: Tue Oct 14 16:32:28 2025 +0200 [chore] remove old font formats WOFF2 has baseline support: https://caniuse.com/woff2 commite7b495de1fAuthor: Zoë Bijl <code@moiety.me> Date: Tue Oct 14 16:17:59 2025 +0200 [chore] remove font-awesome from common.css commit3913415ca6Author: Zoë Bijl <code@moiety.me> Date: Tue Oct 14 16:17:32 2025 +0200 [chore] remove mailer.js/.scss there’s no mailer functionality in masto-fe commitfa9f9a758bAuthor: Zoë Bijl <code@moiety.me> Date: Tue Oct 14 16:07:21 2025 +0200 [chore] remove unused css files from “styles” commit49a7820b99Author: Zoë Bijl <code@moiety.me> Date: Tue Oct 14 15:38:37 2025 +0200 [bugfix] remove unused css commit84025f44c7Author: Zoë Bijl <code@moiety.me> Date: Tue Oct 14 15:38:19 2025 +0200 [bugfix] lint issues
40 lines
900 B
SCSS
40 lines
900 B
SCSS
@font-face {
|
|
font-family: mastodon-font-sans-serif;
|
|
src:
|
|
local('Roboto Italic'),
|
|
url('~fonts/roboto/roboto-italic-webfont.woff2') format('woff2');
|
|
font-weight: normal;
|
|
font-display: swap;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: mastodon-font-sans-serif;
|
|
src:
|
|
local('Roboto Bold'),
|
|
url('~fonts/roboto/roboto-bold-webfont.woff2') format('woff2');
|
|
font-weight: bold;
|
|
font-display: swap;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: mastodon-font-sans-serif;
|
|
src:
|
|
local('Roboto Medium'),
|
|
url('~fonts/roboto/roboto-medium-webfont.woff2') format('woff2');
|
|
font-weight: 500;
|
|
font-display: swap;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: mastodon-font-sans-serif;
|
|
src:
|
|
local('Roboto'),
|
|
url('~fonts/roboto/roboto-regular-webfont.woff2') format('woff2');
|
|
font-weight: normal;
|
|
font-display: swap;
|
|
font-style: normal;
|
|
}
|