mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-08 20:19:06 +03:00
383 lines
6.5 KiB
CSS
383 lines
6.5 KiB
CSS
:root {
|
|
--bg-color: #0d0d0d;
|
|
--text-color: #f0f0f0;
|
|
--input-bg: #1a1a1a;
|
|
--input-border: #333;
|
|
--button-bg: #222;
|
|
--button-hover: #444;
|
|
--button-text: white;
|
|
--accent: #ec9c23;
|
|
--accent-text: #000;
|
|
--highlight-tag: #292929;
|
|
--highlight-tag-border: #444;
|
|
--danger: #b00020;
|
|
--success: #00c853;
|
|
--shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
|
|
--border-radius: 12px;
|
|
--section-bg: #111;
|
|
--switch-bg: #444;
|
|
--checkbox-accent: #ec9c23;
|
|
--checkbox-border: #666;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background: var(--bg-color);
|
|
color: var(--text-color);
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 400px;
|
|
max-height: 600px;
|
|
overflow-y: auto;
|
|
transition: background 0.3s ease, color 0.3s ease;
|
|
}
|
|
|
|
body.light {
|
|
--bg-color: #f5f5f5;
|
|
--text-color: #222;
|
|
--input-bg: #ffffff;
|
|
--input-border: #ccc;
|
|
--button-bg: #e0e0e0;
|
|
--button-hover: #d0d0d0;
|
|
--button-text: #222;
|
|
--accent: #ec9c23;
|
|
--accent-text: #000;
|
|
--highlight-tag: #f0f0f0;
|
|
--highlight-tag-border: #d0d0d0;
|
|
--danger: #b00020;
|
|
--success: #00c853;
|
|
--shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
--section-bg: #fff;
|
|
--switch-bg: #ccc;
|
|
--checkbox-accent: #ec9c23;
|
|
--checkbox-border: #999;
|
|
}
|
|
|
|
.container {
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.3em;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
justify-content: center;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.section {
|
|
background: var(--section-bg);
|
|
border: 1px solid var(--input-border);
|
|
border-radius: var(--border-radius);
|
|
padding: 14px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.section-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.section h2 {
|
|
font-size: 1em;
|
|
margin-bottom: 10px;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
input[type="text"],
|
|
textarea,
|
|
select {
|
|
width: 100%;
|
|
padding: 8px;
|
|
border-radius: 6px;
|
|
border: 1px solid var(--input-border);
|
|
background-color: var(--input-bg);
|
|
color: var(--text-color);
|
|
font-size: 0.9em;
|
|
box-sizing: border-box;
|
|
margin-top: 4px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
height: 60px;
|
|
}
|
|
|
|
input[type="color"] {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 36px;
|
|
height: 36px;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
background-color: var(--input-bg);
|
|
border: 1px solid var(--checkbox-border);
|
|
border-radius: 4px;
|
|
width: 16px;
|
|
height: 16px;
|
|
transform: scale(1.2);
|
|
cursor: pointer;
|
|
position: relative;
|
|
}
|
|
|
|
input[type="checkbox"]:checked::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 5px;
|
|
width: 4px;
|
|
height: 9px;
|
|
border: solid var(--checkbox-accent);
|
|
border-width: 0 2px 2px 0;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
input[type="checkbox"]:checked {
|
|
background-color: var(--input-bg);
|
|
}
|
|
|
|
input[type="checkbox"].switch {
|
|
appearance: none;
|
|
width: 40px;
|
|
height: 20px;
|
|
background: var(--switch-bg);
|
|
border: 0px;
|
|
border-radius: 20px;
|
|
position: relative;
|
|
outline: none;
|
|
cursor: pointer;
|
|
transition: background 0.3s;
|
|
}
|
|
|
|
input[type="checkbox"].switch::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 2px;
|
|
width: 16px;
|
|
height: 16px;
|
|
background: white;
|
|
border-radius: 50%;
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
input[type="checkbox"].switch:checked {
|
|
background: var(--accent);
|
|
}
|
|
|
|
input[type="checkbox"].switch:checked::before {
|
|
transform: translateX(20px);
|
|
}
|
|
|
|
button {
|
|
background: var(--button-bg);
|
|
color: var(--button-text);
|
|
border: 1px solid var(--input-border);
|
|
padding: 6px 12px;
|
|
border-radius: 8px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
button:hover {
|
|
background: var(--button-hover);
|
|
}
|
|
|
|
button.danger {
|
|
background: var(--danger);
|
|
color: white !important;
|
|
}
|
|
|
|
button.danger:hover {
|
|
background: #d32f2f;
|
|
}
|
|
|
|
.button-row {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.button-row.wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.color-row {
|
|
display: flex;
|
|
gap: 24px;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.color-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
#wordList {
|
|
margin-top: 8px;
|
|
position: relative;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
flex: 1;
|
|
min-height: 200px;
|
|
max-height: 300px;
|
|
}
|
|
|
|
#wordList>div {
|
|
position: absolute;
|
|
width: calc(100% - 8px);
|
|
left: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#wordList input[type="text"] {
|
|
flex-grow: 1;
|
|
min-width: 0;
|
|
background-color: var(--input-bg) !important;
|
|
color: var(--text-color) !important;
|
|
border: 1px solid var(--input-border) !important;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#wordList input[type="color"] {
|
|
width: 24px;
|
|
height: 24px;
|
|
padding: 0;
|
|
border-radius: 4px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
#wordList input[type="checkbox"] {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
input[type="file"] {
|
|
display: none;
|
|
}
|
|
|
|
.section-header label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.section-header input[type="checkbox"] {
|
|
margin-right: 6px;
|
|
}
|
|
|
|
#wordCount {
|
|
font-weight: normal;
|
|
margin-left: -8px;
|
|
margin-right: -8px;
|
|
}
|
|
|
|
.header-bar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px 16px;
|
|
background: var(--bg-color);
|
|
border-radius: 12px;
|
|
color: var(--fg-color);
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.icon-toggles {
|
|
display: flex;
|
|
gap: 12px;
|
|
}
|
|
|
|
.icon-toggle {
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
color: #ffa500;
|
|
display: flex;
|
|
align-items: center;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.icon-toggle:hover {
|
|
color: #ffd580;
|
|
}
|
|
|
|
.hidden-toggle {
|
|
display: none;
|
|
}
|
|
|
|
.icon-toggle {
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
color: #ffa500;
|
|
display: flex;
|
|
align-items: center;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.icon-toggle:hover {
|
|
color: #ffd580;
|
|
}
|
|
|
|
/* GLOBAL HIGHLIGHT ICON: toggle-on/off */
|
|
.global-icon::before {
|
|
content: "\f204";
|
|
/* fa-toggle-off (default) */
|
|
}
|
|
|
|
#globalHighlightToggle:checked+.global-icon::before {
|
|
content: "\f205";
|
|
/* fa-toggle-on */
|
|
}
|
|
|
|
/* THEME ICON: sun/moon */
|
|
.theme-icon::before {
|
|
content: "\f185";
|
|
/* fa-sun (light mode) */
|
|
}
|
|
|
|
#themeToggle:checked+.theme-icon::before {
|
|
content: "\f186";
|
|
/* fa-moon (dark mode) */
|
|
}
|
|
|
|
/* Font Awesome fallback settings */
|
|
.toggle-icon {
|
|
font-family: "Font Awesome 6 Free";
|
|
font-weight: 900;
|
|
}
|
|
|
|
label:has(input.switch) {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
} |