mirror of
https://gitee.com/coder-xiaomo/notes
synced 2025-01-11 20:18:16 +08:00
25 lines
417 B
CSS
25 lines
417 B
CSS
/* 搜索框样式 */
|
|
:root {
|
|
--search-input-width: 12rem;
|
|
--search-result-width: 25rem;
|
|
}
|
|
|
|
/*
|
|
|
|
:root {
|
|
--search-bg-color: #ffffff;
|
|
--search-accent-color: #3eaf7c;
|
|
--search-text-color: #2c3e50;
|
|
--search-border-color: #eaecef;
|
|
|
|
--search-item-text-color: #5d81a5;
|
|
--search-item-focus-bg-color: #f3f4f5;
|
|
|
|
--search-input-width: 8rem;
|
|
--search-result-width: 20rem;
|
|
}
|
|
|
|
body {
|
|
background: black;
|
|
}
|
|
*/ |