更多操作
无编辑摘要 标签:已被回退 |
无编辑摘要 |
||
(未显示同一用户的18个中间版本) | |||
第1行: | 第1行: | ||
/* 这里放置的CSS将应用于所有皮肤 */ | /* 这里放置的CSS将应用于所有皮肤 */ | ||
.citizen-page-footer { | |||
z-index: 0; | |||
} | |||
/* Animation */ | |||
.animation-02s { | |||
transition: all 0.2s; | |||
} | |||
.animation-02s:hover { | |||
transition: all 0.2s; | |||
} | |||
.animation-scale:hover { | |||
transform: scale(1.05); | |||
} | |||
/* Blockquote */ | |||
blockquote:before { | |||
content: '“'; | |||
font-size: 4rem; | |||
font-family: Arial; | |||
color: var(--color-base); | |||
opacity: 0.5; | |||
display: block; | |||
position: absolute; | |||
left: 0.5rem; | |||
top: -1.5rem; | |||
z-index: 1; | |||
} | |||
blockquote:after { | |||
content: '”'; | |||
font-size: 4rem; | |||
font-family: Arial; | |||
color: var(--color-base); | |||
opacity: 0.5; | |||
display: block; | |||
position: absolute; | |||
right: 1rem; | |||
top: 1rem; | |||
z-index: 1; | |||
} | |||
.quote-author { | |||
text-align: right; | |||
} | |||
/* Template: LinkButton */ | /* Template: LinkButton */ | ||
第8行: | 第54行: | ||
.link-button a { | .link-button a { | ||
flex-grow: 1; | |||
padding: 0.3rem 0.6rem; | padding: 0.3rem 0.6rem; | ||
border: 1px solid; | border: 1px solid; | ||
第17行: | 第64行: | ||
.link-button a:hover { | .link-button a:hover { | ||
text-decoration: none; | |||
background: var( --color-surface-2--hover ); | background: var( --color-surface-2--hover ); | ||
} | } | ||
第22行: | 第70行: | ||
.link-button a:active { | .link-button a:active { | ||
background: var( --color-surface-2--active ); | background: var( --color-surface-2--active ); | ||
} | |||
/* Gallery */ | |||
li.gallerybox div.thumb { | |||
margin: 4px; | |||
} | } |
2025年6月16日 (一) 19:00的最新版本
/* 这里放置的CSS将应用于所有皮肤 */ .citizen-page-footer { z-index: 0; } /* Animation */ .animation-02s { transition: all 0.2s; } .animation-02s:hover { transition: all 0.2s; } .animation-scale:hover { transform: scale(1.05); } /* Blockquote */ blockquote:before { content: '“'; font-size: 4rem; font-family: Arial; color: var(--color-base); opacity: 0.5; display: block; position: absolute; left: 0.5rem; top: -1.5rem; z-index: 1; } blockquote:after { content: '”'; font-size: 4rem; font-family: Arial; color: var(--color-base); opacity: 0.5; display: block; position: absolute; right: 1rem; top: 1rem; z-index: 1; } .quote-author { text-align: right; } /* Template: LinkButton */ .link-button p { display: flex; text-align: center; } .link-button a { flex-grow: 1; padding: 0.3rem 0.6rem; border: 1px solid; border-color: var( --border-color-base ); background: var( --color-surface-2 ); border-radius: 12px; color: var( --color-base--emphasized ) !important; } .link-button a:hover { text-decoration: none; background: var( --color-surface-2--hover ); } .link-button a:active { background: var( --color-surface-2--active ); } /* Gallery */ li.gallerybox div.thumb { margin: 4px; }