forked from Rockachopa/Timmy-time-dashboard
- Add Fund Session button to Matrix UI overlay (green plus icon) - Create modal with three explanatory sections: * What are Sats? - explains satoshis as smallest Bitcoin unit * Why Fund Your Session? - explains how sats power Workshop AI agents * Approximate Costs - shows cost ranges for different interaction types - Add input field for funding amount (min 100 sats) - Style modal with green theme to match Lightning/sats concept - Add proper keyboard support (Enter to submit, Escape to close) - Mobile-responsive design Fixes #753
577 lines
10 KiB
CSS
577 lines
10 KiB
CSS
/* Workshop 3D scene overlay styles */
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
overflow: hidden;
|
|
background: #0a0a14;
|
|
font-family: "Courier New", monospace;
|
|
color: #e0e0e0;
|
|
touch-action: none;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
}
|
|
|
|
#overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: 10;
|
|
}
|
|
|
|
#status {
|
|
position: absolute;
|
|
top: 16px;
|
|
left: 16px;
|
|
font-size: 14px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
#status .name {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: #daa520;
|
|
}
|
|
|
|
#status .mood {
|
|
font-size: 13px;
|
|
color: #aaa;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
#speech-area {
|
|
position: absolute;
|
|
bottom: 24px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
max-width: 480px;
|
|
width: 90%;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
line-height: 1.5;
|
|
color: #ccc;
|
|
opacity: 0;
|
|
transition: opacity 0.4s ease;
|
|
}
|
|
|
|
#speech-area.visible {
|
|
opacity: 1;
|
|
}
|
|
|
|
#speech-area .bubble {
|
|
background: rgba(10, 10, 20, 0.85);
|
|
border: 1px solid rgba(218, 165, 32, 0.3);
|
|
border-radius: 8px;
|
|
padding: 12px 20px;
|
|
}
|
|
|
|
#connection-dot {
|
|
position: absolute;
|
|
top: 18px;
|
|
right: 16px;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: #555;
|
|
}
|
|
|
|
#connection-dot.connected {
|
|
background: #00b450;
|
|
}
|
|
|
|
/* Info button */
|
|
.info-button {
|
|
position: absolute;
|
|
top: 14px;
|
|
right: 70px;
|
|
width: 28px;
|
|
height: 28px;
|
|
padding: 0;
|
|
background: rgba(10, 10, 20, 0.7);
|
|
border: 1px solid rgba(218, 165, 32, 0.4);
|
|
border-radius: 50%;
|
|
color: #daa520;
|
|
cursor: pointer;
|
|
pointer-events: auto;
|
|
transition: all 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.info-button:hover {
|
|
background: rgba(218, 165, 32, 0.15);
|
|
border-color: rgba(218, 165, 32, 0.7);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.info-button svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
/* Fund Session button */
|
|
.fund-button {
|
|
position: absolute;
|
|
top: 14px;
|
|
right: 36px;
|
|
width: 28px;
|
|
height: 28px;
|
|
padding: 0;
|
|
background: rgba(10, 10, 20, 0.7);
|
|
border: 1px solid rgba(0, 180, 80, 0.4);
|
|
border-radius: 50%;
|
|
color: #00b450;
|
|
cursor: pointer;
|
|
pointer-events: auto;
|
|
transition: all 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.fund-button:hover {
|
|
background: rgba(0, 180, 80, 0.15);
|
|
border-color: rgba(0, 180, 80, 0.7);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.fund-button svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
/* Fund Session Modal */
|
|
.fund-modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 100;
|
|
pointer-events: none;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
|
}
|
|
|
|
.fund-modal.open {
|
|
pointer-events: auto;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.fund-modal-content {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 420px;
|
|
max-width: 90%;
|
|
height: 100%;
|
|
background: rgba(10, 10, 20, 0.97);
|
|
border-left: 1px solid rgba(0, 180, 80, 0.3);
|
|
padding: 60px 24px 24px 24px;
|
|
overflow-y: auto;
|
|
transform: translateX(100%);
|
|
transition: transform 0.3s ease;
|
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.fund-modal.open .fund-modal-content {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.fund-close {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 16px;
|
|
width: 32px;
|
|
height: 32px;
|
|
padding: 0;
|
|
background: transparent;
|
|
border: 1px solid rgba(160, 160, 160, 0.3);
|
|
border-radius: 50%;
|
|
color: #aaa;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.fund-close:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(0, 180, 80, 0.5);
|
|
color: #00b450;
|
|
}
|
|
|
|
.fund-close svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.fund-modal-content h2 {
|
|
font-size: 20px;
|
|
color: #00b450;
|
|
margin-bottom: 24px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.fund-info {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.fund-info h3 {
|
|
font-size: 14px;
|
|
color: #e0e0e0;
|
|
margin-bottom: 10px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.fund-info p {
|
|
font-size: 13px;
|
|
line-height: 1.6;
|
|
color: #aaa;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.fund-info ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.fund-info li {
|
|
font-size: 13px;
|
|
line-height: 1.6;
|
|
color: #aaa;
|
|
margin-bottom: 8px;
|
|
padding-left: 16px;
|
|
position: relative;
|
|
}
|
|
|
|
.fund-info li::before {
|
|
content: "•";
|
|
position: absolute;
|
|
left: 0;
|
|
color: #00b450;
|
|
}
|
|
|
|
.fund-info li strong {
|
|
color: #ccc;
|
|
}
|
|
|
|
/* Cost table */
|
|
.cost-table {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border: 1px solid rgba(0, 180, 80, 0.2);
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.cost-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.cost-row:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.cost-row span:first-child {
|
|
color: #aaa;
|
|
}
|
|
|
|
.cost-value {
|
|
color: #00b450;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.cost-note {
|
|
font-size: 12px;
|
|
color: #666;
|
|
font-style: italic;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
/* Fund actions */
|
|
.fund-actions {
|
|
margin-top: 32px;
|
|
padding: 20px;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border: 1px solid rgba(0, 180, 80, 0.2);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.fund-input-group {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.fund-input-group label {
|
|
display: block;
|
|
font-size: 13px;
|
|
color: #ccc;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.fund-input {
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(0, 180, 80, 0.3);
|
|
border-radius: 6px;
|
|
color: #e0e0e0;
|
|
font-family: "Courier New", monospace;
|
|
font-size: 16px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.fund-input:focus {
|
|
outline: none;
|
|
border-color: rgba(0, 180, 80, 0.6);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.fund-input::placeholder {
|
|
color: #666;
|
|
}
|
|
|
|
.fund-submit-btn {
|
|
width: 100%;
|
|
padding: 12px;
|
|
background: linear-gradient(135deg, rgba(0, 180, 80, 0.8), rgba(0, 140, 60, 0.9));
|
|
border: none;
|
|
border-radius: 6px;
|
|
color: #fff;
|
|
font-family: "Courier New", monospace;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.fund-submit-btn:hover {
|
|
background: linear-gradient(135deg, rgba(0, 200, 90, 0.9), rgba(0, 160, 70, 1));
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(0, 180, 80, 0.3);
|
|
}
|
|
|
|
.fund-submit-btn:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.fund-footer {
|
|
margin-top: 24px;
|
|
padding-top: 16px;
|
|
border-top: 1px solid rgba(160, 160, 160, 0.2);
|
|
font-size: 12px;
|
|
color: #666;
|
|
text-align: center;
|
|
}
|
|
|
|
.fund-backdrop {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.fund-modal.open .fund-backdrop {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* About Panel */
|
|
.about-panel {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 100;
|
|
pointer-events: none;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
|
}
|
|
|
|
.about-panel.open {
|
|
pointer-events: auto;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.about-panel-content {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 380px;
|
|
max-width: 90%;
|
|
height: 100%;
|
|
background: rgba(10, 10, 20, 0.97);
|
|
border-left: 1px solid rgba(218, 165, 32, 0.3);
|
|
padding: 60px 24px 24px 24px;
|
|
overflow-y: auto;
|
|
transform: translateX(100%);
|
|
transition: transform 0.3s ease;
|
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.about-panel.open .about-panel-content {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.about-close {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 16px;
|
|
width: 32px;
|
|
height: 32px;
|
|
padding: 0;
|
|
background: transparent;
|
|
border: 1px solid rgba(160, 160, 160, 0.3);
|
|
border-radius: 50%;
|
|
color: #aaa;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.about-close:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(218, 165, 32, 0.5);
|
|
color: #daa520;
|
|
}
|
|
|
|
.about-close svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.about-panel-content h2 {
|
|
font-size: 20px;
|
|
color: #daa520;
|
|
margin-bottom: 24px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.about-panel-content section {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.about-panel-content h3 {
|
|
font-size: 14px;
|
|
color: #e0e0e0;
|
|
margin-bottom: 10px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.about-panel-content p {
|
|
font-size: 13px;
|
|
line-height: 1.6;
|
|
color: #aaa;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.about-panel-content ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.about-panel-content li {
|
|
font-size: 13px;
|
|
line-height: 1.6;
|
|
color: #aaa;
|
|
margin-bottom: 8px;
|
|
padding-left: 16px;
|
|
position: relative;
|
|
}
|
|
|
|
.about-panel-content li::before {
|
|
content: "•";
|
|
position: absolute;
|
|
left: 0;
|
|
color: #daa520;
|
|
}
|
|
|
|
.about-panel-content li strong {
|
|
color: #ccc;
|
|
}
|
|
|
|
.about-footer {
|
|
margin-top: 32px;
|
|
padding-top: 16px;
|
|
border-top: 1px solid rgba(160, 160, 160, 0.2);
|
|
font-size: 12px;
|
|
color: #666;
|
|
text-align: center;
|
|
}
|
|
|
|
.about-backdrop {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.about-panel.open .about-backdrop {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Mobile adjustments */
|
|
@media (max-width: 480px) {
|
|
.about-panel-content,
|
|
.fund-modal-content {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
padding: 56px 20px 20px 20px;
|
|
}
|
|
|
|
.info-button {
|
|
right: 66px;
|
|
width: 26px;
|
|
height: 26px;
|
|
}
|
|
|
|
.info-button svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
|
|
.fund-button {
|
|
right: 32px;
|
|
width: 26px;
|
|
height: 26px;
|
|
}
|
|
|
|
.fund-button svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
}
|