-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththinking_data_ribbon.snippet.html
More file actions
112 lines (108 loc) · 3.36 KB
/
thinking_data_ribbon.snippet.html
File metadata and controls
112 lines (108 loc) · 3.36 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
<style>
@keyframes shine {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.tooltip {
visibility: hidden;
width: 300px;
background-color: #fff;
color: #333;
text-align: center;
border-radius: 20px;
padding: 15px;
position: fixed;
z-index: 900;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
transition: opacity 0.3s, visibility 0.3s;
font-size: 9px;
line-height: 1.5;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
border: 2px solid #ddd;
}
/* Thought bubble pointer */
.tooltip:after {
content: '';
position: absolute;
top: -15px;
right: 30px;
border-width: 0 15px 15px;
border-style: solid;
border-color: #fff transparent;
display: block;
width: 0;
}
#thinking-data-ribbon:hover .tooltip {
visibility: visible;
opacity: 1;
}
#thinking-data-ribbon .close-btn{
position: relative;
z-index: 1001;
}
</style>
<div id="thinking-data-ribbon"
style="position: fixed;
top: 0;
right: 0;
width: 350px;
z-index: 999;
padding: 15px 0;
text-align: center;
background: linear-gradient(135deg,
rgba(255,200,200,0.9), rgba(255,255,200,0.9),
rgba(200,255,200,0.9), rgba(200,255,255,0.9),
rgba(200,200,255,0.9), rgba(255,200,255,0.9));
background-size: 200% 200%;
animation: shine 6s ease-in-out infinite;
color: #333;
font-family: Arial, sans-serif;
font-size: 15px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 0 30px rgba(255,255,255,0.4);
transform: rotate(45deg) translate(100px, -45px);
transform-origin: center;
border: 1px solid rgba(255,255,255,0.6);
border-left: 2px solid rgba(255,255,255,0.9);
border-bottom: 2px solid rgba(255,255,255,0.9);
clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);">
<a href=""
style="font-family: 'Arial Black', Arial, sans-serif;
font-weight: bold;
font-size: 14px;
background: linear-gradient(90deg,
#ff0000, #ff9900, #ffff00,
#00ff00, #00ffff, #0000ff,
#9900ff, #ff0099, #ff0000);
background-size: 200% 100%;
animation: shine 3s linear infinite;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-decoration: none;
text-shadow: 0 0 2px rgba(255,255,255,0.7);
letter-spacing: 0px;
display: inline-block;
padding: 0 3px;">
Thinking Data
</a>
<span class="close-btn" style="cursor: pointer;
transform: translate(20px, 10px);
padding: 0 3px;
margin-left: 1px;
font-size: 14px;
font-weight: bold;
text-shadow: 0 0 2px #fff;
display: inline-block;
vertical-align: middle;"
title="Close"
onclick="document.getElementById('thinking-data-ribbon').style.display='none';">
×
</span>
<div class="tooltip">
Save page <br/> drag to LLM to activate embedded instructions <br/> view source to inspect instructions
</div>
</div>