新增了多个字体图标文件(SVG格式),包括品牌图标和常规图标。添加了相关的样式文件(LESS和SCSS)用于管理图标样式。更新了配置文件如.gitignore、composer.json和.htaccess等。新增了开发者相关的PHP文件如logout.php。添加了项目规则文档和字体相关的样式文件。
39 lines
792 B
Plaintext
39 lines
792 B
Plaintext
// base icon class definition
|
|
// -------------------------
|
|
|
|
.@{fa-css-prefix} {
|
|
font-family: ~"var(--@{fa-css-prefix}-style-family, '@{fa-style-family}')";
|
|
font-weight: ~'var(--@{fa-css-prefix}-style, @{fa-style})';
|
|
}
|
|
|
|
.@{fa-css-prefix},
|
|
.fas,
|
|
.@{fa-css-prefix}-solid,
|
|
.fass,
|
|
.@{fa-css-prefix}-sharp,
|
|
.far,
|
|
.@{fa-css-prefix}-regular,
|
|
.fab,
|
|
.@{fa-css-prefix}-brands {
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
display: ~'var(--@{fa-css-prefix}-display, @{fa-display})';
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
text-rendering: auto;
|
|
}
|
|
|
|
.fas,
|
|
.@{fa-css-prefix}-classic,
|
|
.@{fa-css-prefix}-solid,
|
|
.far,
|
|
.@{fa-css-prefix}-regular {
|
|
font-family: 'Font Awesome 6 Free';
|
|
}
|
|
|
|
.fab,
|
|
.@{fa-css-prefix}-brands {
|
|
font-family: 'Font Awesome 6 Brands';
|
|
}
|
|
|