tylerperkins.xyz/static/css/background.css

17 lines
272 B
CSS
Raw Normal View History

2023-07-18 03:17:11 +00:00
.background {
2023-07-15 22:44:31 +00:00
background-image: url("/img/webb-dark.png");
2023-07-18 03:17:11 +00:00
position: absolute;
2023-07-19 02:44:03 +00:00
top: 0;
bottom: 0;
left: 0;
2023-07-18 03:17:11 +00:00
width: 100%;
2023-07-20 02:14:23 +00:00
height: 200%;
2023-07-19 02:44:03 +00:00
overflow-y: hidden;
2023-07-18 03:17:11 +00:00
z-index: -1;
2023-07-15 22:44:31 +00:00
background-position: center;
2023-07-18 03:17:11 +00:00
background-repeat: repeat;
2023-07-15 22:44:31 +00:00
}
2023-07-18 03:17:11 +00:00