ForcePilot/web/src/assets/css/main.css

67 lines
1.0 KiB
CSS
Raw Normal View History

@import './base.css';
@import './sigma.css';
@import './shorts.css';
@import './dashboard.css';
2024-07-14 16:42:38 +08:00
:root {
--header-height: 45px;
--min-width: 450px;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
position: relative;
font-weight: normal;
}
body {
display: flow-root;
min-height: 100vh;
color: var(--gray-900);
line-height: 1.6;
font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans SC', 'Roboto', 'HarmonyOS Sans SC', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
font-size: 15px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2024-09-01 21:14:23 +08:00
}
/* layout */
.layout-container {
2024-09-03 16:37:59 +08:00
width: 100%;
2024-09-06 12:54:17 +08:00
padding: 0px 30px;
2024-09-01 21:14:23 +08:00
h2 {
margin: 20px 0 10px 0;
}
2025-03-28 00:48:33 +08:00
}
.iconfont {
max-width: 100%;
max-height: 100%;
&.icon-10 {
width: 10px;
height: 10px;
}
&.icon-16 {
width: 16px;
height: 16px;
}
&.icon-20 {
width: 20px;
height: 20px;
}
&.icon-24 {
width: 24px;
height: 24px;
}
2024-07-14 16:42:38 +08:00
}