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

37 lines
442 B
CSS
Raw Normal View History

2026-02-03 13:15:39 +08:00
body,
html,
2026-02-04 10:12:13 +08:00
div,
2026-02-03 13:15:39 +08:00
ul,
2026-02-04 10:12:13 +08:00
li,
h1,
h2,
h3,
p {
2026-02-02 13:32:33 +08:00
margin: 0;
2026-02-03 13:15:39 +08:00
padding: 0;
2026-02-02 13:32:33 +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-02 13:32:33 +08:00
}
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: #f8f7f5;
background-image: url('@/assets/images/home-bg.png');
background-size: 100% 100%;
}