nothing-simulator/docs/main.css

58 lines
933 B
CSS
Raw Permalink Normal View History

2025-03-04 05:04:38 -05:00
canvas {
width: 100vw;
height: 100vh;
}
2025-03-05 13:53:35 -05:00
body,
html {
2025-03-04 05:04:38 -05:00
margin: 0;
padding: 0;
2025-03-05 01:00:00 -05:00
overflow: hidden;
2025-03-04 05:04:38 -05:00
}
2025-03-05 13:53:35 -05:00
2025-03-04 05:04:38 -05:00
.hud {
position: fixed;
top: 0;
left: 0;
2025-03-05 13:53:35 -05:00
background: rgba(201, 177, 206, 0.7);
2025-03-04 05:04:38 -05:00
color: rgb(0, 0, 0);
2025-03-05 13:53:35 -05:00
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
2025-03-04 05:04:38 -05:00
padding: 10px;
min-width: 200px;
min-height: 50px;
2025-03-05 13:53:35 -05:00
font-size: 24px;
2025-03-05 13:24:24 -05:00
user-select: none;
}
2025-03-05 13:53:35 -05:00
.main-hud {
margin-top: 25px;
}
.item a {
color: inherit;
text-decoration: none;
}
2025-03-05 13:24:24 -05:00
.item {
font-size: 0.6em;
2025-03-05 13:53:35 -05:00
background: rgb(238, 222, 245);
2025-03-05 13:24:24 -05:00
padding: 5px;
width: 300px;
2025-03-05 13:53:35 -05:00
font-weight: bold;
margin-top: 5px;
2025-03-06 17:14:22 -05:00
}
2025-03-12 20:54:20 -04:00
.item, .desc, .main-hud {
2025-03-06 17:14:22 -05:00
white-space: pre-wrap;
2025-03-11 06:29:48 -04:00
}
.desc {
2025-03-06 17:14:22 -05:00
font-size: 0.5em;
background: rgb(204, 191, 209);
padding: 5px;
width: 300px;
font-style: italic;
2025-03-04 05:04:38 -05:00
}