mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-12 23:54:59 +00:00
126 lines
2.6 KiB
CSS
126 lines
2.6 KiB
CSS
/* Terminal header styling */
|
|
.terminal-header {
|
|
background-color: #e0e0e0;
|
|
border-top-left-radius: 6px;
|
|
border-top-right-radius: 6px;
|
|
padding: 4px 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid #c0c0c0;
|
|
}
|
|
|
|
.terminal-buttons {
|
|
display: flex;
|
|
gap: 4px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.terminal-button {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.terminal-close {
|
|
background-color: #ff5f56;
|
|
border: 1px solid #e0443e;
|
|
}
|
|
|
|
.terminal-minimize {
|
|
background-color: #ffbd2e;
|
|
border: 1px solid #dea123;
|
|
}
|
|
|
|
.terminal-expand {
|
|
background-color: #27c93f;
|
|
border: 1px solid #1aab29;
|
|
}
|
|
|
|
.terminal-title {
|
|
flex-grow: 1;
|
|
text-align: center;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
font-size: 11px;
|
|
color: #666;
|
|
}
|
|
|
|
/* Toast notification styling */
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 9999;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.toast-notification {
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
color: white;
|
|
padding: 12px 25px;
|
|
border-radius: 8px;
|
|
margin-bottom: 10px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease-in-out;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
font-size: 18px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
min-width: 200px;
|
|
max-width: 90%;
|
|
}
|
|
|
|
/* Page container styling */
|
|
.page-container {
|
|
max-height: 80vh;
|
|
max-width: 900px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.terminal-container {
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
/* Timestamp link styling */
|
|
.timestamp-link {
|
|
color: #0366d6;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.timestamp-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.asciinema-player-theme-aider {
|
|
/* Foreground (default text) color */
|
|
--term-color-foreground: #444444; /* colour238 */
|
|
|
|
/* Background color */
|
|
--term-color-background: #dadada; /* colour253 */
|
|
|
|
/* Palette of 16 standard ANSI colors */
|
|
--term-color-0: #21222c;
|
|
--term-color-1: #ff5555;
|
|
--term-color-2: #50fa7b;
|
|
--term-color-3: #f1fa8c;
|
|
--term-color-4: #bd93f9;
|
|
--term-color-5: #ff79c6;
|
|
--term-color-6: #8be9fd;
|
|
--term-color-7: #f8f8f2;
|
|
--term-color-8: #6272a4;
|
|
--term-color-9: #ff6e6e;
|
|
--term-color-10: #69ff94;
|
|
--term-color-11: #ffffa5;
|
|
--term-color-12: #d6acff;
|
|
--term-color-13: #ff92df;
|
|
--term-color-14: #a4ffff;
|
|
--term-color-15: #ffffff;
|
|
}
|