mirror of
https://github.com/He4eT/tabswitcher.git
synced 2026-05-05 01:17:23 +00:00
pages/search: init
This commit is contained in:
parent
b6a89a2713
commit
8d91c80b8b
4 changed files with 48 additions and 1 deletions
30
pages/css/common.css
Normal file
30
pages/css/common.css
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
html, body {
|
||||
font-family: sans;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.popup {
|
||||
--step: 8px;
|
||||
|
||||
--color-bg: #ffffff;
|
||||
--color-text: #333333;
|
||||
--color-accent: #888888;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.popup {
|
||||
--color-bg: #1c1c1c;
|
||||
--color-text: #eeeeee;
|
||||
--color-accent: #cccccc;
|
||||
}
|
||||
}
|
||||
|
||||
/* Controls */
|
||||
|
||||
*:focus-visible {
|
||||
outline-color: var(--color-accent);
|
||||
outline-offset: 4px;
|
||||
outline-style: solid;
|
||||
outline-width: 1px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue