SillyBubble/style.css
Sven Olderaan c4a1e493c9 Implement SillyBubble extension for dynamic chat bubble images
- Create extension for generating dynamic chat bubble images via markdown
- Add function that AI models can call to generate properly formatted markdown links
- Implement URL encoding for text parameters
- Add configurable settings for image service URL and bubble styles
- Include test functionality to preview generated bubble markdown

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-03-14 20:20:30 +01:00

44 lines
749 B
CSS

/* SillyBubble Extension Styles */
.sillybubble-settings {
margin-bottom: 10px;
}
.sillybubble_block {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.sillybubble_block label {
margin-right: 10px;
min-width: 150px;
}
.sillybubble_block input[type="text"],
.sillybubble_block select {
flex-grow: 1;
}
.sillybubble_info {
background-color: rgba(0, 0, 0, 0.1);
border-radius: 5px;
padding: 10px;
margin: 10px 0;
font-size: 0.9em;
}
.sillybubble_info code {
background-color: rgba(0, 0, 0, 0.2);
padding: 2px 4px;
border-radius: 3px;
font-family: monospace;
}
.sillybubble-test pre {
background-color: rgba(0, 0, 0, 0.1);
padding: 10px;
border-radius: 5px;
overflow-x: auto;
margin: 10px 0;
}