-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (56 loc) · 1.4 KB
/
Copy pathstyles.css
File metadata and controls
67 lines (56 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
/* 🔌 VaultOS Plugin Base Styles
Style guidelines: Clean, readable, consistent spacing
Theme-compatible, non-intrusive by default
*/
:root {
--vaultos-accent: var(--text-accent);
--vaultos-bg: var(--background-secondary);
--vaultos-fg: var(--text-normal);
--vaultos-border: var(--background-modifier-border);
}
.vaultos-panel {
padding: 1rem;
background-color: var(--vaultos-bg);
color: var(--vaultos-fg);
border: 1px solid var(--vaultos-border);
border-radius: 8px;
box-shadow: var(--shadow-s);
margin-bottom: 1rem;
}
.vaultos-heading {
font-size: 1.4rem;
font-weight: bold;
color: var(--vaultos-accent);
margin-bottom: 0.5rem;
}
.vaultos-button {
background-color: var(--vaultos-accent);
color: var(--background-primary);
padding: 0.5rem 1rem;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 500;
transition: background-color 0.2s ease;
}
.vaultos-button:hover {
background-color: var(--text-accent-hover);
}
.vaultos-input {
width: 100%;
padding: 0.4rem;
border: 1px solid var(--vaultos-border);
border-radius: 4px;
background-color: var(--background-primary);
color: var(--vaultos-fg);
}
.vaultos-label {
font-weight: 500;
margin-bottom: 0.3rem;
display: block;
}