更改

添加1,820字节 、 2023年10月21日 (六) 12:23
无编辑摘要
第1行: 第1行:  
/* 这里设置了Google Font */
 
/* 这里设置了Google Font */
   −
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600&display=swap');
+
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600&family=Noto+Serif+JP:wght@400;600&family=Noto+Serif:wght@400;600&display=swap');
    
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
 
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
 
body {
 
body {
   font-family: 'Noto Serif SC', serif;
+
   font-family: 'Noto Serif SC','Noto Serif JP', 'Noto Serif', serif;
 
}
 
}
    
blockquote {
 
blockquote {
   font-family: 'Noto Serif SC', serif;
+
   font-family: 'Noto Serif SC','Noto Serif JP', 'Noto Serif', serif;
 
}
 
}
   第15行: 第15行:  
     line-height: 2;
 
     line-height: 2;
 
}
 
}
 +
 +
/* === Collapsible elements. Toggle-link moved to left. ===
 +
/* Margin around it adjusted.
 +
/* https://community.fandom.com/wiki/Thread:1104268
 +
/* https://community.wikia.com/wiki/Thread:499656
 +
/* https://community.wikia.com/wiki/Help:Collapsing
 +
/* https://cannabis.wikia.com/wiki/MediaWiki:Wikia.css */
 +
 +
.mw-collapsible span.mw-collapsible-toggle {
 +
    float:left;
 +
    margin-left:0;
 +
    margin-right:1em;
 +
}
 +
    
.content {
 
.content {
第147行: 第161行:  
.content p {
 
.content p {
 
     margin: 1em 0;
 
     margin: 1em 0;
 +
    text-align: justify;
 +
}
 +
 +
.content table {
 +
    overflow: auto;
 +
    overflow-y: auto;
 +
    overflow-x: auto;
 
}
 
}
   第177行: 第198行:  
.header .search-box {
 
.header .search-box {
 
     padding-left: 1.5em;
 
     padding-left: 1.5em;
 +
}
 +
 +
.minerva-user-navigation {
 +
    min-width: 0;
 
}
 
}
   第193行: 第218行:  
.hidetext:hover {
 
.hidetext:hover {
 
     color: #ffffff;
 
     color: #ffffff;
 +
}
 +
 +
.hidetext a {
 +
    color: #ff9dae;
 +
    transition: all 0.5s;
 +
}
 +
 +
.hidetext:hover a {
 +
    color: #4e66d4;
 +
}
 +
 +
.hidetext a.new {
 +
    color: #ff9dae;
 +
    transition: all 0.5s;
 +
}
 +
 +
.hidetext:hover a.new {
 +
    color: #ff4b6a;
 +
}
 +
 +
.hidetext a:visited {
 +
  color:#ff9dae;
 +
}
 +
 +
.hidetext:hover a:visited {
 +
  color:#9ca5aa;
 +
}
 +
 +
 +
/* === Collapsible elements. Toggle-link moved to left. ===
 +
/* Margin around it adjusted.
 +
/* https://community.fandom.com/wiki/Thread:1104268
 +
/* https://community.wikia.com/wiki/Thread:499656
 +
/* https://community.wikia.com/wiki/Help:Collapsing
 +
/* https://cannabis.wikia.com/wiki/MediaWiki:Wikia.css */
 +
 +
.mw-collapsible span.mw-collapsible-toggle {
 +
    float:left;
 +
    margin-left:0;
 +
    margin-right:1em;
 +
}
 +
 +
@media (max-width: 720px) {
 +
    body .content .character-table {
 +
        width: 1200px !important;
 +
        display: table !important;
 +
        box-sizing: content-box !important;
 +
    }
 +
 +
    body .content table.wikitable {
 +
        border: 1px solid !important;  /* 或者你想要的任何其他边框样式 */
 +
    }
 +
 +
    body .content caption {
 +
        display: table-caption !important;
 +
    }
 
}
 
}