Schedule posts to Bluesky with Cloudflare workers.
skyscheduler.work
cf
tool
bsky-tool
cloudflare
bluesky
schedule
bsky
service
social-media
cloudflare-workers
1.tribute-container {
2 position: absolute;
3 top: 0;
4 left: 0;
5 height: auto;
6 overflow: auto;
7 display: block;
8 z-index: 999999;
9 margin-top: 20px;
10 background-color: var(--pico-card-sectioning-background-color);
11 box-shadow: 3px 2px lightgray;
12}
13.tribute-container ul {
14 margin: 0;
15 margin-top: 2px;
16 padding: 0;
17 list-style: none;
18}
19.tribute-container li {
20 border-top: 1px solid var(--pico-muted-border-color);
21 padding: 5px 5px;
22 color: var(--pico-code-color);
23 cursor: pointer;
24}
25.tribute-container li.highlight {
26 background-color: var(--pico-text-selection-color);
27}
28
29.tribute-container li {
30 img {
31 width: 20px;
32 height: 20px;
33 margin-right: 5px;
34 border-radius: 50%;
35 display: inline-block;
36 }
37 small {
38 color: gray;
39 margin-left: 10px;
40 }
41 code {
42 display: inline;
43 }
44}
45
46.tribute-container li.no-match {
47 cursor: default;
48}
49.tribute-container .menu-highlighted {
50 font-weight: bold;
51}