新增了多个字体图标文件(SVG格式),包括品牌图标和常规图标。添加了相关的样式文件(LESS和SCSS)用于管理图标样式。更新了配置文件如.gitignore、composer.json和.htaccess等。新增了开发者相关的PHP文件如logout.php。添加了项目规则文档和字体相关的样式文件。
32 lines
604 B
Plaintext
32 lines
604 B
Plaintext
// rotating + flipping icons
|
|
// -------------------------
|
|
|
|
.@{fa-css-prefix}-rotate-90 {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.@{fa-css-prefix}-rotate-180 {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.@{fa-css-prefix}-rotate-270 {
|
|
transform: rotate(270deg);
|
|
}
|
|
|
|
.@{fa-css-prefix}-flip-horizontal {
|
|
transform: scale(-1, 1);
|
|
}
|
|
|
|
.@{fa-css-prefix}-flip-vertical {
|
|
transform: scale(1, -1);
|
|
}
|
|
|
|
.@{fa-css-prefix}-flip-both,
|
|
.@{fa-css-prefix}-flip-horizontal.@{fa-css-prefix}-flip-vertical {
|
|
transform: scale(-1, -1);
|
|
}
|
|
|
|
.@{fa-css-prefix}-rotate-by {
|
|
transform: rotate(~'var(--@{fa-css-prefix}-rotate-angle, none)');
|
|
}
|