解决首页不显示的问题
This commit is contained in:
parent
6b8f8a1749
commit
783c6ad628
|
@ -55,9 +55,9 @@
|
|||
<noscript>您的浏览器不支持 JavaScript!<br/>Your browser does not support JavaScript!</noscript>
|
||||
<h1 class="title">智龙急速阵型<br>Puzzle & Dragons Dash Formation</h1>
|
||||
<ul class="control-box">
|
||||
<li><a id="btn-solo-link" href="solo.html"><!--单人模式--></a></li>
|
||||
<li><a id="btn-multi-link" href="multi.html"><!--多人模式--></a></li>
|
||||
<li><a id="btn-triple-link" href="triple.html"><!--三人模式--></a></li>
|
||||
<li><a href="solo.html"><!--单人模式--><label for="player-number-1"></label></a></li>
|
||||
<li><a href="multi.html"><!--多人模式--><label for="player-number-2"></label></a></li>
|
||||
<li><a href="triple.html"><!--三人模式--><label for="player-number-3"></label></a></li>
|
||||
<li><br></li>
|
||||
<li><a class="btn-guide-link" href="solo.html?guide=1"><!--图鉴模式--> - パズル&ドラゴンズ</a></li>
|
||||
<li><a class="btn-guide-link" href="solo.html?guide=1&s=en"><!--图鉴模式--> - Puzzle & Dragons</a></li>
|
||||
|
|
|
@ -353,7 +353,7 @@ input[type="checkbox"].switch-ipt+label::before{
|
|||
width: 2em;
|
||||
height: 1.1em;
|
||||
border-radius: 0.5em;
|
||||
background-image: radial-gradient(white 40%, black 50%, transparent 50%);
|
||||
background-image: radial-gradient(white 40%, black 50%, transparent 55%);
|
||||
background-size: 1.1em 1.1em;
|
||||
background-repeat: no-repeat;
|
||||
transition: .3s ease-out;
|
||||
|
@ -3145,8 +3145,11 @@ a.series-search::before {
|
|||
font-family: var(--font-family);
|
||||
}
|
||||
.team-awoken-effect>ul {
|
||||
--gap: 3px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(6, 110px);
|
||||
gap: var(--gap);
|
||||
margin-bottom: var(--gap);
|
||||
grid-template-columns: repeat(6, calc(var(--head-block-width) - var(--gap)));
|
||||
}
|
||||
.team-awoken-effect .team-flags {
|
||||
display: inline-flex;
|
||||
|
|
Loading…
Reference in New Issue