메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

:Timeline styles/styles.css

이터널리턴 이스포츠 위키
Mongsil (토론 | 기여)님의 2024년 10월 15일 (화) 03:31 판 (새 문서: 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: "";...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
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-semibold );
    color: var( --color-base--emphasized );
}

table.timeline tr td:first-child:before {
	content: "";
    width: 8px;
    height: 8px;
    display: block;
    background-color: var( --color-base--subtle );
    border-radius: 100%;
    position: absolute;
    left: -4px;
    margin-top: 8px;
}

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