Kumi
932f8f98b1
This commit sets up webpack as the module bundler along with configurations for transforming ES6+ code using Babel and compiling SASS into CSS. It includes necessary dependencies such as `babel-loader`, `sass-loader`, `css-loader`, `style-loader`, and plugins like `mini-css-extract-plugin` to extract CSS into separate files. This setup facilitates the development of a modern web application by enabling the use of the latest JavaScript features and streamlined CSS pre-processing.
21 lines
No EOL
343 B
CSS
21 lines
No EOL
343 B
CSS
body {
|
|
background-color: black;
|
|
color: white;
|
|
font-family: monospace;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
.error-box {
|
|
background-color: black;
|
|
border: 1px solid white;
|
|
padding: 20px;
|
|
max-width: 600px;
|
|
}
|
|
.error-box h1 {
|
|
font-size: 2em;
|
|
margin: 0;
|
|
color: red;
|
|
} |