“MediaWiki:Common.css”的版本间差异

来自橘猪小站
跳到导航 跳到搜索
第31行: 第31行:
     font-weight: bold;
     font-weight: bold;
     width: 0px;
     width: 0px;
}
/* HOMEPAGE LOGO ICON */
.logo-display {
  position: relative;
  display: inline-block;
}
.logo-display > a::before,
.logo-display > a::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.logo-display > a {
  overflow: hidden;
  display: block;
  border-radius: 0.3em;
  border: 2px solid transparent;
  transform: scale(0.90);
  transition: all .14s cubic-bezier(0.33, 1, 0.68, 1);
}
.logo-display > a:hover,
.logo-display > a:focus  {
  border-radius: 0.3em;
  border: 2px solid transparent;
  transform: scale(1);
}
}

2022年3月28日 (一) 15:27的版本

/* 这里放置的CSS将应用于所有皮肤 */
@import url('https://fonts.googleapis.com/css?family=Nunito');
@import url('https://fonts.googleapis.com/css?family=Google Sans'); /* 谷歌的字体 */
@import url('https://fonts.googleapis.com/css?family=Noto Sans SC'); /* 思源黑体 */

/* 全站字体 */
:root {
	font-size:18px !important;
}
body,.mw-body h1,.mw-body h2,.mw-body h3{
  font-family: "Nunito", "Google Sans", "Noto Sans SC", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", sans-serif;
}
.ace_content {
   font-family:monospace !important;
}

td.Quote_Left {
    line-height: 0.7em;
    vertical-align: top;
    text-align: right;
}
td.Quote_Right {
    line-height: 0.1em;
    vertical-align: bottom;
    text-align: left;
}
td.Quote_Left, td.Quote_Right {
    color: #0D9BE3;
    font-size: 40px;
    font-family: 'Arial Black','Times New Roman',serif;
    font-weight: bold;
    width: 0px;
}
/* HOMEPAGE LOGO ICON */
.logo-display {
  position: relative;
  display: inline-block;
}

.logo-display > a::before,
.logo-display > a::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.logo-display > a {
  overflow: hidden;
  display: block;
  border-radius: 0.3em;
  border: 2px solid transparent;
  transform: scale(0.90);
  transition: all .14s cubic-bezier(0.33, 1, 0.68, 1);
}

.logo-display > a:hover, 
.logo-display > a:focus  {
  border-radius: 0.3em;
  border: 2px solid transparent;
  transform: scale(1);
}