Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 13 additions & 22 deletions aria_web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -284,15 +284,6 @@
inset -2px -2px 12px rgba(0,0,0,0.25),
0 3px 8px rgba(0,0,0,0.2);
}
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
border: 2px solid #2c2c2c;
border-bottom: none;
z-index: 5;
box-shadow: inset 0 -3px 8px rgba(0,0,0,0.2);
}

/* Hair bangs - Natural brown */
.aria-bangs {
Expand Down Expand Up @@ -773,10 +764,12 @@
animation: wave 1s ease-in-out;
}

@keyframes jump {
0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
50% { transform: translateX(-50%) translateY(-250px) scale(1.15); }
} @keyframes dance {
@keyframes jump {
0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
50% { transform: translateX(-50%) translateY(-250px) scale(1.15); }
}

@keyframes dance {
0%, 100% { transform: translateX(-50%) rotate(-45deg) scale(1.1); }
50% { transform: translateX(-50%) rotate(45deg) scale(1.3); }
}
Expand Down Expand Up @@ -882,19 +875,20 @@

.quick-commands {
margin-top: 20px;
}

.quick-commands h3 {
color: #ff6b9d;
margin-bottom: 10px;
font-size: 1.2em;
} margin-bottom: 10px;
font-size: 1.2em;
}

.command-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}

.quick-btn {
padding: 8px;
background: #f0f0f0;
Expand All @@ -911,7 +905,6 @@
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(255,107,157,0.3);
} color: white;
}

/* Chat panel styles */
Expand Down Expand Up @@ -970,6 +963,8 @@
background: #f9f9f9;
border-radius: 10px;
max-height: 200px;
}

.status-log h3 {
color: #ff6b9d;
margin-bottom: 10px;
Expand All @@ -983,9 +978,6 @@
padding-left: 10px;
font-size: 0.9em;
color: #555;
} padding-left: 10px;
font-size: 0.9em;
color: #555;
}

.command-categories {
Expand All @@ -994,6 +986,8 @@
padding: 25px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
color: #333;
}

.command-categories h2 {
color: #ff6b9d;
margin-bottom: 15px;
Expand All @@ -1007,9 +1001,6 @@
font-weight: bold;
color: #ff8fab;
margin-bottom: 5px;
} font-weight: bold;
color: #764ba2;
margin-bottom: 5px;
}

.category-examples {
Expand Down
Loading