124 lines
1.8 KiB
CSS
124 lines
1.8 KiB
CSS
:root {
|
|
font-family: 'Pretendard', 'Inter', 'Segoe UI', sans-serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
color: rgba(255, 255, 255, 0.92);
|
|
background: #121212;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: #121212;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font: inherit;
|
|
}
|
|
|
|
button {
|
|
appearance: none;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
color: rgba(255, 255, 255, 0.92);
|
|
}
|
|
|
|
select {
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
background-image:
|
|
linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
|
|
linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
|
|
background-position:
|
|
calc(100% - 20px) calc(50% - 2px),
|
|
calc(100% - 14px) calc(50% - 2px);
|
|
background-size: 6px 6px, 6px 6px;
|
|
background-repeat: no-repeat;
|
|
padding-right: 40px;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
}
|
|
|
|
.pageWrap {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.pageHead {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
min-height: 96px;
|
|
padding: 0;
|
|
}
|
|
|
|
.pageHead__main {
|
|
display: grid;
|
|
align-content: start;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.pageHead__eyebrow {
|
|
font-size: 11px;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: rgba(255, 255, 255, 0.42);
|
|
}
|
|
|
|
.pageHead__title {
|
|
font-size: 32px;
|
|
line-height: 1.05;
|
|
letter-spacing: -0.04em;
|
|
color: rgba(255, 255, 255, 0.96);
|
|
}
|
|
|
|
.pageHead__desc {
|
|
max-width: 720px;
|
|
color: rgba(255, 255, 255, 0.58);
|
|
}
|
|
|
|
.pageHead__aside {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|