v0.1.8 메인 히어로 및 카드 디테일 수정
This commit is contained in:
@@ -593,6 +593,11 @@ input {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.hero__title em {
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero__description,
|
||||
.section-description {
|
||||
max-width: 620px;
|
||||
@@ -654,12 +659,19 @@ input {
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.tab-row-wrap {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: space-between;
|
||||
gap: 14px;
|
||||
padding-bottom: 14px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.tab-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 22px;
|
||||
padding-bottom: 14px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.tab-row__button {
|
||||
@@ -677,6 +689,54 @@ input {
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
.view-toggle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px 10px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 14px;
|
||||
background: var(--surface);
|
||||
color: var(--text-soft);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.view-toggle__grid {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
}
|
||||
|
||||
.view-toggle__grid::before,
|
||||
.view-toggle__grid::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 14px;
|
||||
height: 2px;
|
||||
background: currentColor;
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
.view-toggle__grid::before {
|
||||
top: 3px;
|
||||
box-shadow: 0 6px 0 currentColor;
|
||||
}
|
||||
|
||||
.view-toggle__grid::after {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 2px;
|
||||
height: 14px;
|
||||
box-shadow: 6px 0 0 currentColor;
|
||||
}
|
||||
|
||||
.view-toggle__chevron {
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.tab-panel {
|
||||
display: none;
|
||||
}
|
||||
@@ -735,6 +795,7 @@ input {
|
||||
gap: 8px;
|
||||
color: var(--text-soft);
|
||||
font-size: 13px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.meta-pill {
|
||||
@@ -748,6 +809,26 @@ input {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.meta-item {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.meta-item + .meta-item::before,
|
||||
.meta-pill + .meta-item::before,
|
||||
.meta-item + .meta-pill::before {
|
||||
content: "/";
|
||||
color: var(--border-strong);
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
.meta-item__icon {
|
||||
font-size: 11px;
|
||||
line-height: 1;
|
||||
color: var(--text-dim);
|
||||
}
|
||||
|
||||
.category-overview {
|
||||
display: grid;
|
||||
}
|
||||
@@ -825,6 +906,10 @@ input {
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
|
||||
.social-row a:hover {
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.recommended-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@@ -844,6 +929,22 @@ input {
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.recommended-list li {
|
||||
position: relative;
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
.recommended-list li::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 11px;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-radius: 999px;
|
||||
background: var(--surface-strong);
|
||||
}
|
||||
|
||||
.author-feature {
|
||||
display: flex;
|
||||
gap: 14px;
|
||||
@@ -1232,6 +1333,10 @@ input {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.tab-row-wrap {
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
@@ -1269,4 +1374,12 @@ input {
|
||||
.post-title {
|
||||
font-size: 2.15rem;
|
||||
}
|
||||
|
||||
.tab-row-wrap {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.view-toggle {
|
||||
padding: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user