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

提供:JcpNanseI
編集の要約なし
編集の要約なし
 
(同じ利用者による、間の3版が非表示)
1行目: 1行目:
/* ここに記述したCSSはすべての外装に反映されます */
/* ここに記述したCSSはすべての外装に反映されます */
blockquote {
blockquote {
     border-left: solid medium Orange;
     border-left: solid medium purple;
     background-image: linear-gradient(Cornsilk, White);
     background-image: linear-gradient(to right, lavender, White);
     padding: 0.5em;
     padding: 0.5em;
}
table.normal {
    border-collapse: collapse;
    border: skyblue 1px solid;
    box-shadow: 1px 1px 2px skyblue;
}
table.normal tr {
    background: white;
    border: skyblue 1px solid;
}
table.normal tr:nth-child(odd) {
    background: azure;
}
table.normal tr:nth-child(even) {
    background: white;
}
table.normal th {
    background: lightcyan;
}
table.normal td,
table.normal th {
    padding: 5px;
    border-left: solid skyblue 1px;
    border-right: solid skyblue 1px;
}
table.normal td:first-child,
table.normal th:first-child {
    border-left: 0;
}
table.normal td:last-child,
table.normal th:last-child {
    border-right: 0;
}
}

2025年1月29日 (水) 23:10時点における最新版

/* ここに記述したCSSはすべての外装に反映されます */
blockquote {
    border-left: solid medium purple;
    background-image: linear-gradient(to right, lavender, White);
    padding: 0.5em;
}
table.normal {
    border-collapse: collapse;
    border: skyblue 1px solid;
    box-shadow: 1px 1px 2px skyblue;
}
table.normal tr {
    background: white;
    border: skyblue 1px solid;
}
table.normal tr:nth-child(odd) {
    background: azure;
}
table.normal tr:nth-child(even) {
    background: white;
}
table.normal th {
    background: lightcyan;
}
table.normal td,
table.normal th {
    padding: 5px;
    border-left: solid skyblue 1px;
    border-right: solid skyblue 1px;
}
table.normal td:first-child,
table.normal th:first-child {
    border-left: 0;
}
table.normal td:last-child,
table.normal th:last-child {
    border-right: 0;
}