3d_website/style.css

36 lines
498 B
CSS
Raw Normal View History

2024-02-15 20:59:21 +00:00
canvas {
position: fixed;
top: 0;
left: 0;
}
body {
overflow-x: hidden;
overflow-y: scroll;
padding: 0;
margin: 0;
}
#viewport {
position: fixed;
margin: 0;
padding: 0;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.page-wrapper {
padding: 0px;
margin: 12px 48px;
position: absolute;
left: 0;
top: 0;
width: calc(100% - 2*48px);
word-wrap: break-word;
2024-05-06 20:35:29 +00:00
}
2024-05-06 20:38:44 +00:00
p {
2024-05-06 20:35:29 +00:00
background-color: black;
2024-05-06 20:38:44 +00:00
border-radius: 30px;
2024-05-06 20:35:29 +00:00
2024-02-15 20:59:21 +00:00
}