Initial setup

This commit is contained in:
2025-09-23 21:12:15 +02:00
commit 246506b177
20 changed files with 2275 additions and 0 deletions

24
contentStyle.css Normal file
View File

@@ -0,0 +1,24 @@
.ai-assistant-container {
position: fixed;
top: 20px;
right: 20px;
width: 300px;
background-color: white;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
z-index: 9999;
}
#ai-assistant-header {
padding: 10px;
background-color: #f0f0f0;
border-bottom: 1px solid #ccc;
cursor: move;
}
#ai-assistant-content {
padding: 10px;
}
/* Add more styles as needed */