- 将所有订单班文档从 doc/ 迁移到 data/ 目录 - 保持原有目录结构不变,仅改变顶层路径 - 包含所有12个订单班的完整文档资料 - 文旅、财经商贸、食品、智能开发、智能制造 - 视觉设计、交通物流、土木、大健康 - 能源、化工、环保 - 文件总数:2345个文件(包括文档、图片、Agent配置等)
32 lines
600 B
Plaintext
Executable File
32 lines
600 B
Plaintext
Executable File
// 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, 0)');
|
|
}
|