Files
FiDA_Front/src/assets/css/style.less

98 lines
1.3 KiB
Plaintext
Raw Normal View History

2026-02-03 13:15:39 +08:00
body,
html,
div,
ul,
li,
h1,
h2,
h3,
p {
2026-02-04 10:12:13 +08:00
margin: 0;
padding: 0;
2026-02-02 13:32:33 +08:00
}
2026-02-04 10:12:13 +08:00
* {
2026-02-04 10:09:24 +08:00
box-sizing: border-box;
}
2026-02-02 13:32:33 +08:00
html,
body,
#app {
width: 100%;
height: 100%;
overflow: hidden;
2026-02-05 13:55:37 +08:00
font-family: 'Medium';
2026-02-03 11:11:04 +08:00
}
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
2026-02-04 10:01:50 +08:00
}
2026-02-10 17:27:08 +08:00
@keyframes opacity-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes z-index-10to-1 {
0% {
z-index: 10;
}
100% {
z-index: -1;
}
}
.flex {
display: flex;
2026-02-06 09:46:00 +08:00
}
2026-02-10 17:27:08 +08:00
.flex-center {
2026-02-06 09:46:00 +08:00
justify-content: center;
align-items: center;
}
2026-02-10 17:27:08 +08:00
.flex-1 {
2026-02-06 09:46:00 +08:00
flex: 1;
}
2026-02-10 17:27:08 +08:00
.flex-col {
2026-02-06 09:46:00 +08:00
flex-direction: column;
}
2026-02-10 17:27:08 +08:00
.align-center {
2026-02-06 09:46:00 +08:00
align-items: center;
}
2026-02-10 17:27:08 +08:00
.space-between {
2026-02-06 09:46:00 +08:00
justify-content: space-between;
}
2026-02-10 17:27:08 +08:00
.justify-center {
2026-02-06 09:46:00 +08:00
justify-content: center;
}
2026-02-10 17:27:08 +08:00
.relative {
2026-02-06 09:46:00 +08:00
position: relative;
2026-03-05 13:44:53 +08:00
}
.el-overlay {
--el-color-primary: #ff7a51; // 主橙红色
--el-color-primary-light-3: #ffa785; // 较浅的橙红混合20%白)
--el-color-primary-light-5: #ffc2aa; // 更浅的橙红混合33%白)
--el-color-primary-light-7: #ffddcf; // 浅橙红混合47%白)
--el-color-primary-light-8: #ffe8df; // 很浅的橙红混合53%白)
--el-color-primary-light-9: #fff2ec; // 极浅的橙红混合60%白)
--el-color-primary-dark-2: #cc6241; // 深橙红加深20%
2026-02-02 13:32:33 +08:00
}