21 lines
248 B
CSS
21 lines
248 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background-image: url(/img/bg/bg.webp);
|
|
background-repeat: repeat;
|
|
}
|
|
|
|
#container {
|
|
max-width: 996px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.mb-1 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.mb-2 {
|
|
margin-bottom: 2rem;
|
|
} |