- Add setup notes to font CSS files about required downloads - Restore alert-warning class for font note (important setup info) - Fix alignment in success message border Co-authored-by: jmiller-moko <230051081+jmiller-moko@users.noreply.github.com>
65 lines
1.6 KiB
CSS
65 lines
1.6 KiB
CSS
/* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
|
|
This file is part of a Moko Consulting project.
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
# FILE INFORMATION
|
|
DEFGROUP: Joomla.Template.Site
|
|
INGROUP: MokoCassiopeia.Styles
|
|
PATH: ./media/templates/site/mokocassiopeia/css/fonts/fira-sans.css
|
|
VERSION: 03.08.04
|
|
BRIEF: Fira Sans font family definitions (self-hosted)
|
|
*/
|
|
|
|
/*
|
|
* IMPORTANT: Font files must be downloaded separately
|
|
*
|
|
* This CSS file references Fira Sans font files that must be manually downloaded
|
|
* and placed in the fonts directory. See GOOGLE_FONTS_README.md in the fonts
|
|
* directory for download instructions.
|
|
*
|
|
* Required files:
|
|
* - fira-sans-v17-latin-100.woff2
|
|
* - fira-sans-v17-latin-300.woff2
|
|
* - fira-sans-v17-latin-regular.woff2
|
|
* - fira-sans-v17-latin-700.woff2
|
|
*/
|
|
|
|
/* Fira Sans Thin (100) */
|
|
@font-face {
|
|
font-family: 'Fira Sans';
|
|
font-style: normal;
|
|
font-weight: 100;
|
|
font-display: swap;
|
|
src: url('../../fonts/fira-sans-v17-latin-100.woff2') format('woff2');
|
|
}
|
|
|
|
/* Fira Sans Light (300) */
|
|
@font-face {
|
|
font-family: 'Fira Sans';
|
|
font-style: normal;
|
|
font-weight: 300;
|
|
font-display: swap;
|
|
src: url('../../fonts/fira-sans-v17-latin-300.woff2') format('woff2');
|
|
}
|
|
|
|
/* Fira Sans Regular (400) */
|
|
@font-face {
|
|
font-family: 'Fira Sans';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
src: url('../../fonts/fira-sans-v17-latin-regular.woff2') format('woff2');
|
|
}
|
|
|
|
/* Fira Sans Bold (700) */
|
|
@font-face {
|
|
font-family: 'Fira Sans';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-display: swap;
|
|
src: url('../../fonts/fira-sans-v17-latin-700.woff2') format('woff2');
|
|
}
|