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

41 lines
443 B
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-05 10:43:18 +08:00
font-family: 'Medium';
2026-02-04 10:09:24 +08:00
}
2026-02-02 13:32:33 +08:00
html,
body,
#app {
width: 100%;
height: 100%;
overflow: hidden;
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
}
.background-pink {
background-color: rgba(248, 247, 245, 1);
background-image: url('@/assets/images/home-bg.png');
background-size: 100% 100%;
2026-02-02 13:32:33 +08:00
}