メニューを切り替える
Toggle preferences menu
個人設定を切り替える
ログインしていません
編集を行うと、IPアドレスが公開されます。

「テンプレート:Timeline styles/styles.css」の版間の差分

提供:Sleeping Cocoon-wiki
編集の要約なし
タグ: 差し戻し済み
編集の要約なし
タグ: 手動差し戻し
1行目: 1行目:
<nowiki>
table.timeline {
table.timeline {
box-shadow: none;
box-shadow: none;
52行目: 51行目:
border: 0 !important;
border: 0 !important;
}
}
</nowiki>

2025年1月11日 (土) 04:26時点における版

table.timeline { box-shadow: none; font-size: var( --font-size-small ); }

table.timeline, table.timeline tbody {

   display: block;

}

table.timeline tr { position: relative; margin-left: 8px; padding: var( --space-xs ) var( --space-xs ) var( --space-xs ) 20px;

   display: flex;
   flex-direction: column;
   border-top-right-radius: var( --border-radius-small );
   border-bottom-right-radius: var( --border-radius-small );

}

table.timeline tr:before {

   content: "";
   position: absolute;
   top: 0;
   bottom: 0;
   left: -1px;
   display: block;
   width: 2px;
   background-color: var( --border-color-base );

}

table.timeline tr td:first-child {

   font-size: var( --font-size-medium );
   font-weight: var( --font-weight-semi-bold );
   color: var( --color-emphasized );

}

table.timeline tr td:first-child:before { content: "";

   width: 8px;
   height: 8px;
   display: block;
   background-color: var( --color-subtle );
   border-radius: 100%;
   position: absolute;
   left: -4px;
   margin-top: 8px;

}

table.timeline tr td { padding: 0; border: 0 !important; }