63 lines
775 B
CSS
63 lines
775 B
CSS
body {
|
|
font-family: 'Noto Sans KR', sans-serif;
|
|
}
|
|
|
|
#title, #tour, #preset, .sampler
|
|
{
|
|
color: #00DCD8;
|
|
}
|
|
|
|
#wrapper {
|
|
max-width: 650px;
|
|
}
|
|
|
|
#preset {
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#mix {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, 80px);
|
|
grid-gap: 1rem;
|
|
justify-content: space-between;
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
.sampler {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.sampler div {
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.label {
|
|
text-align: center;
|
|
word-break: keep-all;
|
|
}
|
|
|
|
#nav {
|
|
position: sticky;
|
|
top: 1em;
|
|
text-align: end;
|
|
}
|
|
|
|
#intro, #survey, .interview {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
#survey {
|
|
color: black;
|
|
}
|
|
|
|
#survey ul {
|
|
margin: 0;
|
|
padding-left: 1.2em;
|
|
list-style-type: "💬 ";
|
|
}
|
|
|
|
#survey li {
|
|
}
|