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

編集の要約なし
編集の要約なし
14行目: 14行目:
   --font-size-small: 14px;
   --font-size-small: 14px;
   --font-size-large: 18px;
   --font-size-large: 18px;
  --marker-color: var(--color-accent);
}
}


68行目: 69行目:
a.new:visited {
a.new:visited {
   color: #ff6ed8;
   color: #ff6ed8;
}
/* List Markers */
li::marker {
    color: var(--marker-color);
}
/* Unordered Lists */
ul {
    list-style-type: disc;
    margin-left: 1.5em;
}
ul ul {
    list-style-type: circle;
}
ul ul ul {
    list-style-type: square;
}
/* Ordered Lists */
ol {
    list-style-type: decimal;
    margin-left: 1.5em;
}
ol ol {
    list-style-type: lower-alpha;
}
ol ol ol {
    list-style-type: lower-roman;
}
/* List Items */
li {
    line-height: 1.6;
    margin-bottom: 0.5em;
}
/* Definition Lists */
dl {
    margin-left: 1.5em;
}
dt {
    font-weight: bold;
    color: var(--color-accent);
}
dd {
    margin-left: 2em;
    margin-bottom: 0.5em;
}
}