打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

style.css:修订间差异

来自电棍ottowiki
第1行: 第1行:
.citizen-search-trigger {
.citizen-search-trigger {
     background-color: var(--color-surface-0);
     background-color: var(--color-surface-1);
     width: 100%;
     width: 100%;
     height: 50px;
     height: 50px;
第11行: 第11行:
     justify-content: flex-start;
     justify-content: flex-start;
     padding-left: 10px;
     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;
}
}

2025年6月13日 (五) 18:55的版本

.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;
}