Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:45:16 +08:00
commit 684fd0de77
12 changed files with 1344 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/**
* @file
* Basic CSS reset and normalization.
*/
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
line-height: 1.5;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: #333;
background-color: #fff;
}
img {
max-width: 100%;
height: auto;
}