unibutton/static/index.css

87 lines
1.4 KiB
CSS
Raw Normal View History

2024-09-27 10:32:50 -04:00
:root {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: rgb(44, 41, 53);
}
section {
max-width: 90vw;
width: 800px;
margin-left: auto;
margin-right: auto;
2024-10-08 20:48:38 -04:00
margin-bottom: 10px;
2024-09-27 10:32:50 -04:00
background: rgb(255, 255, 255);
border: solid rgb(200, 200, 200) 2px;
border-radius: 10px;
min-height: 500px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-align: center;
margin: 10px;
margin-bottom: 0;
height: 40px;
line-height: 40px;
}
2024-10-08 20:48:38 -04:00
p, pre, s {
2024-10-02 19:54:18 -04:00
margin: 10px;
}
body {
2024-10-02 19:46:45 -04:00
user-select: none;
-webkit-user-select: none;
2024-09-27 10:32:50 -04:00
}
.message span {
display: block;
text-align: center;
color: rgb(255, 255, 255);
font-weight: bold;
font-size: 50px;
}
.ui-text {
white-space: pre-wrap;
font-weight: bold;
padding: 10px;
}
2024-09-28 20:06:48 -04:00
#canvas {
2024-09-27 10:32:50 -04:00
width: 768px;
height: 768px;
/*image-rendering: pixelated;*/
background: rgb(63, 63, 71);
2024-10-08 05:46:36 -04:00
display: block;
2024-09-27 10:32:50 -04:00
}
section#main {
width: 1024px;
}
@media (max-width: 1920px) {
2024-09-28 20:06:48 -04:00
#canvas {
2024-09-27 10:32:50 -04:00
width: min(512px, 90vw);
height: min(512px, 90vw);
}
2024-10-08 05:46:36 -04:00
}
.button {
background: rgb(44, 41, 53);
border-radius: 15px;
color: rgb(255,255,255);
display: inline-block;
text-decoration: none;
font-weight: bold;
margin: 10px;
padding: 10px;
2024-10-18 14:40:43 -04:00
}
pre {
white-space: pre-wrap;
2024-09-27 10:32:50 -04:00
}