2,719
回編集
編集の要約なし |
編集の要約なし |
||
| 1,988行目: | 1,988行目: | ||
/* ResourceLoader cache refresh 2026-08-28 */ | /* ResourceLoader cache refresh 2026-08-28 */ | ||
/* 案内・お知らせボックス */ | |||
.ts-notice-box { | |||
display: flex; | |||
align-items: center; | |||
gap: 12px; | |||
margin: 12px 0 20px; | |||
padding: 12px 16px; | |||
background: #f5f9ff; | |||
border: 1px solid #a2a9b1; | |||
border-left: 5px solid #36c; | |||
border-radius: 2px; | |||
box-sizing: border-box; | |||
} | |||
.ts-notice-icon { | |||
flex: 0 0 auto; | |||
width: 28px; | |||
height: 28px; | |||
border: 2px solid #36c; | |||
border-radius: 50%; | |||
color: #36c; | |||
font-size: 18px; | |||
font-weight: bold; | |||
line-height: 24px; | |||
text-align: center; | |||
} | |||
.ts-notice-content { | |||
flex: 1; | |||
line-height: 1.6; | |||
} | |||
@media screen and (max-width: 600px) { | |||
.ts-notice-box { | |||
align-items: flex-start; | |||
padding: 10px 12px; | |||
} | |||
} | |||