新增了多个字体图标文件(SVG格式),包括品牌图标和常规图标。添加了相关的样式文件(LESS和SCSS)用于管理图标样式。更新了配置文件如.gitignore、composer.json和.htaccess等。新增了开发者相关的PHP文件如logout.php。添加了项目规则文档和字体相关的样式文件。
27 lines
717 B
Plaintext
27 lines
717 B
Plaintext
/*!
|
|
* Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
* Copyright 2023 Fonticons, Inc.
|
|
*/
|
|
@import "_variables.less";
|
|
|
|
:root, :host {
|
|
--@{fa-css-prefix}-style-family-classic: '@{fa-style-family}';
|
|
--@{fa-css-prefix}-font-solid: normal 900 1em/1 '@{fa-style-family}';
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Font Awesome 6 Free';
|
|
font-style: normal;
|
|
font-weight: 900;
|
|
font-display: @fa-font-display;
|
|
src: url('@{fa-font-path}/fa-solid-900.woff2') format('woff2'),
|
|
url('@{fa-font-path}/fa-solid-900.ttf') format('truetype');
|
|
}
|
|
|
|
|
|
.fas,
|
|
.@{fa-css-prefix}-solid {
|
|
font-weight: 900;
|
|
}
|