style.css:修订间差异
模板页面
更多操作
![]() OctoberSama(留言 | 贡献) 小 |
![]() OctoberSama(留言 | 贡献) 小 |
||
第11行: | 第11行: | ||
justify-content: flex-start; | justify-content: flex-start; | ||
padding-left: 10px; | padding-left: 10px; | ||
transition-property: background-color,border-width; | |||
transition-property: background-color,border-width | |||
transition-duration: 1000ms; | transition-duration: 1000ms; | ||
} | } | ||
第18行: | 第17行: | ||
background-color: var(--color-surface-0); | background-color: var(--color-surface-0); | ||
border-width: 3px; | border-width: 3px; | ||
} | } |
2025年6月13日 (五) 19:23的版本
.citizen-search-trigger {
background-color: var(--color-surface-1);
width: 100%;
height: 50px;
border-style: solid;
border-color: #ADBEDF;
border-width: 3px;
border-radius: 25px;
display: flex;
align-items: center;
justify-content: flex-start;
padding-left: 10px;
transition-property: background-color,border-width;
transition-duration: 1000ms;
}
.citizen-search-trigger:hover {
background-color: var(--color-surface-0);
border-width: 3px;
}