56 lines
1.0 KiB
CSS
56 lines
1.0 KiB
CSS
/* ~/.config/wofi/style.css */
|
|
|
|
/* 整体窗口 */
|
|
window {
|
|
margin: 0px;
|
|
border: 2px solid #5e81ac; /* 边框颜色 (Nord Blue) */
|
|
background-color: #2e3440; /* 背景颜色 (Nord Dark) */
|
|
border-radius: 10px; /* 窗口圆角 */
|
|
font-family: "JetBrains Mono", monospace; /* 字体 */
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* 输入框区域 */
|
|
#input {
|
|
margin: 5px;
|
|
border: none;
|
|
color: #eceff4;
|
|
background-color: #3b4252;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
/* 内部容器 */
|
|
#inner-box {
|
|
margin: 5px;
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/* 每一个条目 */
|
|
#entry {
|
|
margin: 2px 0px;
|
|
border: none;
|
|
background-color: transparent;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
/* 选中的条目 */
|
|
#entry:selected {
|
|
background-color: #5e81ac; /* 选中项背景 */
|
|
color: #eceff4; /* 选中项文字颜色 */
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* 列表中的图标 */
|
|
#img {
|
|
margin-right: 10px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/* 文本 */
|
|
#text {
|
|
margin: 5px;
|
|
border: none;
|
|
color: #d8dee9;
|
|
}
|