17 lines
313 B
CSS
Raw Normal View History

2023-02-15 13:07:17 +08:00
html {
2023-02-17 18:34:10 +08:00
background-image: url("./assets/img/bg/bg_01.jpg");
background-attachment: fixed;
background-size: contain;
/* background-position: center; */
/* background-repeat: no-repeat; */
2023-02-15 13:07:17 +08:00
}
body {
2023-02-17 18:34:10 +08:00
width: 100vw;
height: 100vh;
padding: 0px;
margin: 0px;
2023-03-01 17:31:20 +08:00
overflow: hidden;
2023-02-15 13:07:17 +08:00
}