-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
101 lines (92 loc) · 2.22 KB
/
Copy pathcontent.css
File metadata and controls
101 lines (92 loc) · 2.22 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
.ask-gpt-launcher {
position: fixed;
right: 18px;
bottom: 22px;
z-index: 2147483646;
display: inline-flex;
align-items: center;
gap: 9px;
height: 42px;
max-width: calc(100vw - 36px);
padding: 0 16px;
border: 1px solid rgba(22, 24, 29, 0.13);
border-radius: 999px;
background: color-mix(in srgb, #ffffff 90%, transparent);
color: #202124;
font: 600 14px/1.1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
box-shadow: 0 12px 34px rgba(20, 20, 20, 0.15), inset 0 1px 0 rgba(255,255,255,0.8);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
cursor: pointer;
user-select: none;
}
.ask-gpt-launcher:hover {
border-color: rgba(22, 24, 29, 0.22);
box-shadow: 0 16px 42px rgba(20, 20, 20, 0.19), inset 0 1px 0 rgba(255,255,255,0.95);
}
.ask-gpt-launcher:active {
transform: translateY(1px);
}
.ask-gpt-launcher--opening {
cursor: progress;
opacity: 0.82;
}
.ask-gpt-launcher--error {
border-color: rgba(156, 75, 24, 0.48);
box-shadow: 0 12px 34px rgba(156, 75, 24, 0.22), inset 0 1px 0 rgba(255,255,255,0.8);
}
.ask-gpt-launcher__mark {
display: grid;
place-items: center;
width: 22px;
height: 22px;
border-radius: 999px;
background: #111;
color: #fff;
font-size: 13px;
letter-spacing: 0;
}
.ask-gpt-embedded-panel {
position: fixed;
top: 0;
right: 0;
z-index: 2147483647;
width: min(420px, calc(100vw - 18px));
height: 100vh;
height: 100dvh;
border-left: 1px solid rgba(22, 24, 29, 0.16);
background: #fffdfa;
box-shadow: -18px 0 50px rgba(20, 20, 20, 0.2);
}
.ask-gpt-embedded-panel__frame {
display: block;
width: 100%;
height: 100%;
border: 0;
background: #fffdfa;
}
.ask-gpt-embedded-panel__close {
position: absolute;
top: 10px;
right: 10px;
z-index: 1;
display: grid;
place-items: center;
width: 30px;
height: 30px;
border: 1px solid rgba(22, 24, 29, 0.14);
border-radius: 8px;
background: rgba(255, 253, 250, 0.82);
color: #202124;
font: 700 20px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
cursor: pointer;
}
@media (max-width: 520px) {
.ask-gpt-launcher {
right: 12px;
bottom: 14px;
height: 38px;
padding: 0 12px;
font-size: 13px;
}
}