Spaces:
Running
Running
File size: 1,404 Bytes
aa937f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | * {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #f6f7f9;
color: #12151c;
}
.shell {
width: min(980px, calc(100vw - 32px));
margin: 0 auto;
padding: 28px 0;
}
.toolbar,
.controls {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 14px;
}
h1 {
margin: 0;
font-size: 28px;
line-height: 1.1;
}
p {
margin: 4px 0 0;
color: #576071;
}
textarea,
pre {
width: 100%;
min-height: 180px;
border: 1px solid #d4d9e2;
border-radius: 8px;
padding: 14px;
font: 15px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
background: white;
}
pre {
min-height: 260px;
white-space: pre-wrap;
}
label {
display: inline-flex;
align-items: center;
gap: 8px;
color: #333b49;
}
input,
select,
button {
min-height: 36px;
border: 1px solid #c7ced9;
border-radius: 7px;
padding: 0 10px;
background: white;
color: #12151c;
}
button {
min-width: 96px;
border-color: #171a22;
background: #171a22;
color: white;
cursor: pointer;
}
button:disabled {
opacity: 0.6;
cursor: wait;
}
@media (max-width: 680px) {
.toolbar,
.controls {
align-items: stretch;
flex-direction: column;
}
label,
input,
select,
button {
width: 100%;
}
}
|