- {require('!!raw-loader!@master/normal.css/src/index.css').default.replace(/(..\/)\b/g, '@master/normal.css/')}
-
-
-{require('!!raw-loader!@master/normal.css/consistent-abbreviation-styles.css').default}
-
-
-### Consistent control styles
-Fixed the inconsistent appearance of controls across browsers.
-
-{require('!!raw-loader!@master/normal.css/consistent-control-styles.css').default}
-
-
-### Consistent horizontal lines
-Fixed the inconsistent appearance of horizontal lines across browsers.
-
-{require('!!raw-loader!@master/normal.css/consistent-horizontal-lines.css').default}
-
-
-### Consistent bold styles
-Fixed the inconsistent font weight of `html ` and `html ` across browsers.
-
-{require('!!raw-loader!@master/normal.css/consistent-bold-styles.css').default}
-
-
-### Consistent code styles
-Fixed the inconsistent font size of code-related elements across browsers.
-
-{require('!!raw-loader!@master/normal.css/consistent-code-styles.css').default}
-
-
-### Consistent small styles
-Fixed the inconsistent font size of `html ` across browsers.
-
-{require('!!raw-loader!@master/normal.css/consistent-small-styles.css').default}
-
-
-### Consistent superscript and subscript styles
-Fixed the inconsistent appearance of superscripts and subscripts across browsers.
-This paragraph contains a subscript and a superscript.
-
-{require('!!raw-loader!@master/normal.css/consistent-superscript-subscript.css').default}
-
-
-### Consistent table styles
-Fixed the inconsistent appearance of tables across browsers.
-
-{require('!!raw-loader!@master/normal.css/consistent-table-styles.css').default}
-
-
-### Intuitive sizing control
-Control the size of elements more intuitively, including content and padding, without worrying about the impact of padding and borders on dimensions.
-
-{require('!!raw-loader!@master/normal.css/intuitive-sizing-control.css').default}
-
-
----
-
-## Elimination
-### Remove anchor styles
-The `html ` element usually serves as more than just an inline text link; it could be a button, navigation, or even a card.
-
-Removing its default underline and inheriting the parent color allows you to start with a clean style.
-
-{require('!!raw-loader!@master/normal.css/remove-anchor-styles.css').default}
-
-
-### Remove control styles
-Inherit the font family, size, and color of control elements from the parent's settings and remove spacing and background as a cleaner starting point.
-
-{require('!!raw-loader!@master/normal.css/remove-control-styles.css').default}
-
-
-### Remove default borders and preset to solid style
-Remove borders from all elements to give you the freedom to fully customize the appearance of your elements, preset to the most used solid style.
-
-{require('!!raw-loader!@master/normal.css/remove-default-borders.css').default}
-
-
-### Remove default spacing
-Setting margins and padding to zero allows you to customize the appearance and spacing of elements without worrying about the impact of default browser styles.
-
-{require('!!raw-loader!@master/normal.css/remove-default-spacing.css').default}
-
-
-### Remove list styles
-Remove the `ul` styles while retaining it as a commonly used structural markup for elements like the navbar and menu.
-
-{require('!!raw-loader!@master/normal.css/remove-list-styles.css').default}
-
-
-### Remove tap highlight color
-You should customize the tap highlight color based on current UI features rather than relying on the default.
-
-{require('!!raw-loader!@master/normal.css/remove-tap-highlight.css').default}
-
-The `-webkit-tap-highlight-color` CSS property controls the highlight color that appears when an element is tapped on a mobile device, such as Safari and some WebKit-based mobile browsers.
-
-### Eliminate click delays
-Disable double-click to zoom on links, input fields, and buttons to improve responsiveness for touch devices.
-
-
-{require('!!raw-loader!@master/normal.css/eliminate-click-delays.css').default}
-
-An instantly responsive UI enables users to confidently press each button without pausing and waiting for a response. To learn more about the influence of human reaction times and web performance, explore the [introduction to RAIL](https://web.dev/articles/rail).
-
-(x) Disabling `user-scalable=no` can harm user experience, accessibility, and mobile-friendliness and have negative SEO implications.
-```html
-
-```
-
----
-
-## Improvement
-### Better text rendering and appearance
-Ensure consistent, clear, high-quality text and font appearance across various browsers.
-
-{require('!!raw-loader!@master/normal.css/better-text-appearance.css').default}
-
-
-### Readable tab size
-Setting the tab size to 4 makes the code more structured and easier to read.
-
-{require('!!raw-loader!@master/normal.css/readable-tab-size.css').default}
-
-
-### Responsive friendly media elements
-Preset the maximum width of media-related elements to the parent container to make them responsive.
-
-{require('!!raw-loader!@master/normal.css/responsive-media-elements.css').default}
-
-Browsers default these elements to `inline` display. `block` can be centered using common tricks like `margin: auto`.
-
-For media that needs to overflow the container, you can cancel the maximum width by selecting descendants:
-```html
-