移除无用,迁移
This commit is contained in:
+144
-22
@@ -142,6 +142,9 @@ a {
|
||||
.nav-random,
|
||||
.nav-search,
|
||||
.theme-toggle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 999px;
|
||||
padding: 7px 12px;
|
||||
@@ -156,9 +159,6 @@ a {
|
||||
.nav-search,
|
||||
.nav-random,
|
||||
.theme-toggle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
line-height: inherit;
|
||||
@@ -166,16 +166,14 @@ a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nav-search svg,
|
||||
.nav-random svg,
|
||||
.theme-toggle svg {
|
||||
.nav-icon {
|
||||
display: inline-grid;
|
||||
width: 16px;
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
fill: none;
|
||||
stroke: currentColor;
|
||||
stroke-width: 2;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
place-items: center;
|
||||
font-size: 0.95em;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.theme-toggle {
|
||||
@@ -2378,6 +2376,121 @@ meting-js {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.native-page {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.native-page-article {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.native-feature-grid,
|
||||
.friend-link-grid {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.native-feature-grid {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
margin: 28px 0;
|
||||
}
|
||||
|
||||
.native-feature-grid section,
|
||||
.friend-link-card {
|
||||
border: 1px solid rgba(15, 118, 110, 0.14);
|
||||
border-radius: 8px;
|
||||
background: rgba(236, 253, 245, 0.58);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
|
||||
}
|
||||
|
||||
.native-feature-grid section {
|
||||
padding: 18px;
|
||||
}
|
||||
|
||||
.native-feature-grid i {
|
||||
display: grid;
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
margin-bottom: 12px;
|
||||
place-items: center;
|
||||
border-radius: 8px;
|
||||
color: #fff;
|
||||
background: #3eb8be;
|
||||
}
|
||||
|
||||
.native-feature-grid h2 {
|
||||
margin: 0 0 8px;
|
||||
font-size: 1.12rem;
|
||||
}
|
||||
|
||||
.native-feature-grid p {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.native-table-wrap {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.friend-link-grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
margin: 0 0 24px;
|
||||
}
|
||||
|
||||
.friend-link-card {
|
||||
display: grid;
|
||||
grid-template-columns: 58px minmax(0, 1fr) auto;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
padding: 16px;
|
||||
transition:
|
||||
border-color 0.2s ease,
|
||||
background-color 0.2s ease,
|
||||
transform 0.2s ease;
|
||||
}
|
||||
|
||||
.friend-link-card:hover {
|
||||
border-color: rgba(15, 118, 110, 0.28);
|
||||
background: rgba(236, 253, 245, 0.78);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.friend-link-card img {
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
border-radius: 8px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.friend-link-card span {
|
||||
display: grid;
|
||||
min-width: 0;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
.friend-link-card strong {
|
||||
color: #33433f;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.friend-link-card em {
|
||||
overflow: hidden;
|
||||
color: var(--muted);
|
||||
font-size: 0.9rem;
|
||||
font-style: normal;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.friend-link-card i {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.link-apply-card {
|
||||
width: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
:root[data-theme='dark'] .external-redirect-panel {
|
||||
border-color: rgba(174, 205, 197, 0.18);
|
||||
background:
|
||||
@@ -2402,6 +2515,16 @@ meting-js {
|
||||
color: #dce9e6;
|
||||
}
|
||||
|
||||
:root[data-theme='dark'] .native-feature-grid section,
|
||||
:root[data-theme='dark'] .friend-link-card {
|
||||
border-color: rgba(114, 222, 210, 0.2);
|
||||
background: rgba(114, 222, 210, 0.1);
|
||||
}
|
||||
|
||||
:root[data-theme='dark'] .friend-link-card strong {
|
||||
color: #edf7f5;
|
||||
}
|
||||
|
||||
.site-footer {
|
||||
position: relative;
|
||||
margin-top: 64px;
|
||||
@@ -2506,19 +2629,13 @@ meting-js {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.footer-socials svg {
|
||||
.footer-socials i {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
fill: none;
|
||||
stroke: currentColor;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-width: 2;
|
||||
}
|
||||
|
||||
.footer-socials a:last-child svg {
|
||||
fill: currentColor;
|
||||
stroke: none;
|
||||
display: inline-grid;
|
||||
place-items: center;
|
||||
font-size: 1.08rem;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.footer-contact-links,
|
||||
@@ -2794,6 +2911,11 @@ meting-js {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.native-feature-grid,
|
||||
.friend-link-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
#talk .talk_item {
|
||||
width: 100%;
|
||||
margin-right: 0;
|
||||
|
||||
Reference in New Issue
Block a user