コンテンツにスキップ

「MediaWiki:Common.css」の版間の差分

Meet your friends!
編集の要約なし
編集の要約なし
24行目: 24行目:


/* リンクの色を鮮やかな緑に */
/* リンクの色を鮮やかな緑に */
a { color: #008000; }
a:visited { color: #228b22; }
a:visited { color: #228b22; }
a:hover { text-decoration: underline; color: #ff9933; }
a:hover { text-decoration: underline; color: #ff9933; }

2026年2月18日 (水) 02:44時点における版

/* ここに記述したCSSはすべての外装に反映されます */
/* 全体の背景色をパーク風のベージュに */
body {
    background-color: #fdfaf2;
    color: #333;
}

/* 見出し(H1, H2)をジャパリパーク風に */
h1, h2 {
    border-bottom: 3px solid #ff9933; /* オレンジのアクセント */
    color: #2e8b57;
    font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    font-weight: bold;
}

/* 左側サイドバーのメニュー見出し */
.portal h3 {
    background: #2e8b57;
    color: white !important;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
}

/* リンクの色を鮮やかな緑に */
a:visited { color: #228b22; }
a:hover { text-decoration: underline; color: #ff9933; }

/* 編集ボタンなどを丸くする */
.mw-ui-button {
    border-radius: 20px;
}