Files
Code-Create/src/style.css

35 lines
337 B
CSS
Raw Normal View History

2026-05-14 17:14:37 +08:00
html,
body {
margin: 0;
padding: 0;
2026-05-14 09:53:22 +08:00
}
2026-05-14 17:14:37 +08:00
.flex {
display: flex;
}
2026-05-14 09:53:22 +08:00
2026-05-14 17:14:37 +08:00
.flex-col {
flex-direction: column;
}
2026-05-14 09:53:22 +08:00
2026-05-14 17:14:37 +08:00
.flex-center {
justify-content: center;
align-items: center;
}
2026-05-14 09:53:22 +08:00
2026-05-14 17:14:37 +08:00
.flex-1 {
flex: 1;
}
2026-05-14 09:53:22 +08:00
2026-05-14 17:14:37 +08:00
.space-between {
justify-content: space-between;
}
2026-05-14 09:53:22 +08:00
2026-05-14 17:14:37 +08:00
.justify-center {
justify-content: center;
}
2026-05-14 09:53:22 +08:00
2026-05-14 17:14:37 +08:00
.align-center {
align-items: center;
}