blob: 5417318cd65a0c265515944e6e52d3dd74f9ef9d (
plain)
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
93
|
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0f172a;
color: #e2e8f0;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 24px;
}
h1 {
margin: 0 0 20px;
}
.panel {
background: #111827;
border: 1px solid #334155;
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
}
textarea {
width: 100%;
background: #0b1220;
color: #e2e8f0;
border: 1px solid #334155;
border-radius: 6px;
padding: 10px;
}
button {
margin-top: 10px;
background: #2563eb;
border: none;
color: white;
border-radius: 6px;
padding: 8px 12px;
cursor: pointer;
}
button:hover {
background: #1d4ed8;
}
.hint {
margin-top: 0;
color: #94a3b8;
}
#permissionsOutput {
white-space: pre-wrap;
background: #0b1220;
border: 1px solid #334155;
border-radius: 6px;
padding: 10px;
min-height: 50px;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 14px;
}
.card {
background: #0b1220;
border: 1px solid #334155;
border-radius: 8px;
padding: 10px;
}
.thumb {
width: 100%;
height: 140px;
object-fit: cover;
border-radius: 6px;
background: #1e293b;
}
.key {
margin: 8px 0;
font-size: 12px;
word-break: break-all;
color: #cbd5e1;
}
|