-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.css
More file actions
92 lines (80 loc) · 1.58 KB
/
tools.css
File metadata and controls
92 lines (80 loc) · 1.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.tools-grid {
display: grid;
gap: 1rem;
}
.tool-panel {
border: 1px solid rgba(255, 255, 255, 0.14);
border-radius: 12px;
padding: 1rem;
display: grid;
gap: 0.6rem;
}
.tool-panel label {
display: grid;
gap: 0.35rem;
font-size: 0.9rem;
}
.tool-panel input,
.tool-panel textarea,
.tool-panel select,
.tool-panel button {
width: 100%;
}
.tool-panel textarea,
.tool-panel pre,
.tool-panel input,
.tool-panel select {
background: rgba(12, 17, 28, 0.92);
color: #f3f7ff;
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 8px;
padding: 0.6rem 0.75rem;
}
.tool-panel button {
border: 0;
border-radius: 8px;
padding: 0.55rem 0.75rem;
background: var(--accent);
color: #05070f;
font-weight: 700;
cursor: pointer;
}
.tool-actions {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 0.5rem;
}
.chip-row {
display: flex;
gap: 0.45rem;
flex-wrap: wrap;
}
.tool-chip {
width: auto !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
background: rgba(255, 255, 255, 0.08) !important;
color: #f3f7ff !important;
font-weight: 600 !important;
}
.tool-chip.is-active {
background: var(--accent) !important;
color: #05070f !important;
}
.tool-output {
min-height: 120px;
max-height: 280px;
overflow: auto;
white-space: pre-wrap;
word-break: break-word;
}
.embed-slot {
min-height: 80px;
border: 1px dashed rgba(255, 255, 255, 0.2);
border-radius: 8px;
padding: 0.4rem;
}
.embed-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 0.6rem;
}