mirror of
https://github.com/He4eT/tabswitcher.git
synced 2026-05-04 17:07: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;
|
||||
}
|
||||
3
pages/search/search.css
Normal file
3
pages/search/search.css
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
body {
|
||||
background-color: red;
|
||||
}
|
||||
14
pages/search/search.html
Normal file
14
pages/search/search.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<!doctype html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Tabswhither</title>
|
||||
<link rel='stylesheet' href='../css/common.css' />
|
||||
<link rel='stylesheet' href='./search.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
lorem
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue