انتقل إلى المحتوى

مستخدم:Sugi moyo/vector.css

من ويكيبيديا، الموسوعة الحرة

ملاحظة: بعد الحفظ، قد يلزمك إفراغ الكاش لرؤية التغييرات.

/* ここに記述したCSSはベクター・スキンの利用者に影響します */

/* enlarge font-size for ja fonts */
#bodyContent {
	font-size: 0.944em;
	font-size: calc(1em * 0.944);
}

/* for positioning top-right icons, like FA-star */
.topicon {
	position: absolute;
	z-index: 10;
	right: 0;
	top: -3.5em;
	display: block;
}

/* ビジュアルエディターにおける地理座標の表示修正 */
.ve-ce-surface #coordinates {
	margin-right: 2em;
	margin-top: -1em;
}

/* 地理座標の表示位置 */
#coordinates {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 85%;
	line-height: 1.2em;
}

/* [[MediaWiki:Tagline]]表示: 地理座標の表示が直しても毎度ずれるので */
#siteSub {
	display: block;
}

  @keyframes rotateBackground {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  /* 背景要素にアニメーションを適用 */
  .mw-body {
    background: linear-gradient(45deg, cyan, pink);
    background-size: 200% 200%;
    animation: rotateBackground 3s linear infinite;
  }


/*Background from https://www.pixiv.net/artworks/109785071*/
body {
  background-image: url("https://i.imgur.com/DbtbHoA.jpg");
  background-size: 175px;
  background-position: left 80px;
}