首页:修订间差异
外观
状态:未填写 | 类型:未填写
| 第1行: | 第1行: | ||
{{#css: | |||
.other-sites { | |||
display: grid; | |||
grid-template-columns: repeat(4, 1fr); | |||
justify-items: center; | |||
justify-content: center; | |||
background: rgba(240, 240, 240, 0.8); | |||
} | |||
.other-sites .site { | |||
position: relative; | |||
cursor: pointer; | |||
display: block; | |||
width: 50px; | |||
height: 50px; | |||
background-size: contain; | |||
background-repeat: no-repeat; | |||
background-position: center; | |||
margin-bottom: 30px; | |||
margin-top: 30px; | |||
transition: all 0.3s ease; | |||
} | |||
.other-sites .site a:after { | |||
display: none !important; | |||
} | |||
.other-sites .site:hover { | |||
{{ | transform: scale3d(1.5, 1.5, 1.5); | ||
filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4)); | |||
z-index: 20; | |||
} | |||
.site::after { | |||
content: attr(data-content); | |||
position: absolute; | |||
top: calc(100% + 8px); | |||
left: 50%; | |||
transform: translateX(-50%); | |||
background-color: rgba(255, 255, 255, 0.95); | |||
color: #333; | |||
font-size: 12px; | |||
padding: 4px 8px; | |||
border-radius: 4px; | |||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); | |||
white-space: nowrap; | |||
opacity: 0; | |||
visibility: hidden; | |||
transition: all 0.3s ease; | |||
z-index: 30; | |||
} | |||
.site:hover::after { | |||
opacity: 1; | |||
visibility: visible; | |||
} | |||
.other-sites .site a { | |||
pointer-events: auto; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
z-index: 10; | |||
display: block; | |||
width: 100%; | |||
height: 100%; | |||
} | |||
@media only screen and (max-width: 800px) { | |||
.other-sites { | |||
grid-template-columns: repeat(3, 1fr); | |||
} | |||
.other-sites .site { | |||
margin-bottom: 20px; | |||
margin-top: 20px; | |||
} | |||
.site::after { | |||
white-space: normal; | |||
width: min(75px, 33vw); | |||
} | |||
} | |||
.other-sites:has(.site:hover) .site:not(:hover) { | |||
filter: blur(7px); | |||
transform: scale(0.8); | |||
} | |||
}} | |||
<div style="border: solid 0.15rem #000 !important; padding: 1rem;"> | <div style="border: solid 0.15rem #000 !important; padding: 1rem;"> | ||
| 第49行: | 第127行: | ||
<!-- 友情链接板块 --> | <!-- 友情链接板块 --> | ||
<div class="darkblock" style="margin: auto; margin-bottom: 1rem;"> | <div class="darkblock" style="margin: auto; margin-bottom: 1rem;"> | ||
<h3 | <h3><span>友情链接</span></h3> | ||
</div> | </div> | ||
<div class="other-sites"> | <div class="other-sites"> | ||