-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
122 lines (104 loc) · 2.3 KB
/
styles.css
File metadata and controls
122 lines (104 loc) · 2.3 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
.pimg-plugin-active {
--pimg-accent: #8b6cef;
}
.pimg-upload-modal {
padding: 18px;
}
.pimg-modal-title {
margin-top: 0;
color: var(--pimg-accent);
border-bottom: 1px solid var(--background-modifier-border);
padding-bottom: 0.8em;
}
.pimg-file-input {
display: block;
width: 100%;
margin: 1em 0;
}
.pimg-upload-btn {
width: 100%;
margin-top: 1em;
}
.pimg-drag-over {
border: 2px dashed var(--pimg-accent) !important;
background-color: var(--background-modifier-hover);
}
.pimg-settings-group {
margin-bottom: 2em;
padding-bottom: 1.5em;
border-bottom: 1px solid var(--background-modifier-border);
}
.pimg-settings-group:last-child {
border-bottom: none;
margin-bottom: 0;
}
.pimg-ribbon-icon:hover {
color: var(--pimg-accent);
cursor: pointer;
}
.pimg-settings-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1em;
padding-bottom: 0.4em;
}
.pimg-settings-title {
margin: 0;
color: var(--text-normal);
font-size: 1.8em;
font-weight: bold;
flex: 1;
}
.pimg-credits-display {
font-size: 0.9em;
font-weight: 600;
color: var(--pimg-accent);
padding: 0.4em 0.8em;
border: 1px solid var(--background-modifier-border);
border-radius: 6px;
background-color: var(--background-primary);
display: inline-flex;
align-items: center;
white-space: nowrap;
margin-left: 1em;
}
.pimg-low-credits {
color: #ff6b6b;
animation: pulse 1.5s infinite;
}
.pimg-credits {
color: var(--pimg-accent);
font-style: italic;
font-weight: 500;
text-align: center;
margin: 0.5em 0 1.5em 0;
padding: 0.4em 0;
border-bottom: 1px solid rgba(139, 108, 239, 0.2);
background: linear-gradient(90deg, transparent, rgba(139, 108, 239, 0.05), transparent);
border-radius: 4px;
font-size: 0.9em;
letter-spacing: 0.5px;
}
.pimg-section-title {
color: var(--text-normal);
font-size: 1.1em;
font-weight: 600;
margin: 1.5em 0 1em 0;
padding-bottom: 0.5em;
border-bottom: 1px solid var(--background-modifier-border);
}
.pimg-settings-section {
margin-bottom: 2em;
}
@keyframes pulse {
0% {
opacity: 1;
}
50% {
opacity: 0.6;
}
100% {
opacity: 1;
}
}