-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
121 lines (107 loc) · 2.26 KB
/
content.css
File metadata and controls
121 lines (107 loc) · 2.26 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
/* Styles for Vaspian One Click content script */
.vaspian-phone {
color: inherit;
text-decoration: none;
cursor: pointer;
padding: 2px 6px;
margin: -2px -6px;
border-radius: 4px;
background: transparent;
transition: all 0.3s ease;
}
.vaspian-phone:hover {
background: rgba(230, 104, 37, 0.1);
color: #E66825;
}
.vaspian-notification {
position: fixed;
top: 24px;
right: 24px;
min-width: 320px;
padding: 0;
border-radius: 12px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
z-index: 999999;
animation: vaspian-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
overflow: hidden;
backdrop-filter: blur(10px);
}
.vaspian-notification-success {
background: linear-gradient(135deg, #E89029 0%, #E66825 80%, #B88BBD 100%);
color: white;
}
.vaspian-notification-error {
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
color: white;
}
.vaspian-notification-content {
padding: 20px 24px;
display: flex;
align-items: center;
gap: 16px;
}
.vaspian-notification-icon {
flex-shrink: 0;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
}
.vaspian-notification-icon svg {
width: 20px;
height: 20px;
stroke: white;
fill: none;
stroke-width: 2.5;
stroke-linecap: round;
stroke-linejoin: round;
}
.vaspian-notification-body {
flex: 1;
min-width: 0;
}
.vaspian-notification-title {
font-size: 14px;
font-weight: 600;
margin: 0 0 4px 0;
opacity: 0.9;
letter-spacing: 0.01em;
}
.vaspian-notification-subtitle {
font-size: 12px;
font-weight: 500;
margin: 4px 0 2px 0;
opacity: 0.85;
letter-spacing: 0.01em;
}
.vaspian-notification-number {
font-size: 18px;
font-weight: 600;
margin: 0;
letter-spacing: 0.02em;
font-variant-numeric: tabular-nums;
}
@keyframes vaspian-slide-in {
from {
transform: translateX(400px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes vaspian-slide-out {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(400px);
opacity: 0;
}
}