![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/soundstudiopro.com/private_html/gocodeme.com/public/ |
/* GoCodeMe.com Styles */
:root {
--primary-color: #6366f1;
--primary-hover: #4f46e5;
--secondary-color: #64748b;
--background-dark: #0f172a;
--background-light: #1e293b;
--surface-dark: #334155;
--text-primary: #f8fafc;
--text-secondary: #cbd5e1;
--border-color: #475569;
--success-color: #10b981;
--error-color: #ef4444;
--warning-color: #f59e0b;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--background-dark);
color: var(--text-primary);
overflow: hidden;
}
.app-container {
display: flex;
flex-direction: column;
height: 100vh;
}
/* Header */
.header {
background: var(--background-light);
border-bottom: 1px solid var(--border-color);
padding: 0.75rem 1rem;
z-index: 100;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 100%;
}
.logo h1 {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
margin: 0;
}
.tagline {
font-size: 0.875rem;
color: var(--text-secondary);
margin-left: 0.5rem;
}
.header-actions {
display: flex;
gap: 0.75rem;
}
/* Buttons */
.btn {
padding: 0.5rem 1rem;
border: none;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-primary {
background: var(--primary-color);
color: white;
}
.btn-primary:hover {
background: var(--primary-hover);
}
.btn-secondary {
background: var(--surface-dark);
color: var(--text-primary);
}
.btn-secondary:hover {
background: var(--border-color);
}
.btn-small {
padding: 0.375rem 0.75rem;
font-size: 0.75rem;
}
/* Main Content */
.main-content {
display: flex;
flex: 1;
overflow: hidden;
}
/* AI Panel */
.ai-panel {
width: 350px;
background: var(--background-light);
border-right: 1px solid var(--border-color);
display: flex;
flex-direction: column;
transition: transform 0.3s ease;
}
.ai-panel.hidden {
transform: translateX(-100%);
}
.ai-header {
padding: 1rem;
border-bottom: 1px solid var(--border-color);
display: flex;
justify-content: space-between;
align-items: center;
}
.ai-header h3 {
font-size: 1rem;
font-weight: 600;
}
.close-btn {
background: none;
border: none;
color: var(--text-secondary);
font-size: 1.5rem;
cursor: pointer;
padding: 0;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}
.close-btn:hover {
color: var(--text-primary);
}
.ai-chat-container {
flex: 1;
display: flex;
flex-direction: column;
}
.chat-messages {
flex: 1;
overflow-y: auto;
padding: 1rem;
}
.ai-message {
display: flex;
gap: 0.75rem;
margin-bottom: 1rem;
}
.ai-avatar {
font-size: 1.5rem;
flex-shrink: 0;
}
.message-content {
background: var(--surface-dark);
padding: 0.75rem;
border-radius: 0.5rem;
flex: 1;
}
.message-content p {
margin-bottom: 0.5rem;
line-height: 1.5;
}
.message-content ul {
margin-left: 1rem;
margin-bottom: 0.5rem;
}
.message-content li {
margin-bottom: 0.25rem;
}
.chat-input-container {
padding: 1rem;
border-top: 1px solid var(--border-color);
display: flex;
gap: 0.5rem;
}
#chat-input {
flex: 1;
background: var(--surface-dark);
border: 1px solid var(--border-color);
border-radius: 0.375rem;
padding: 0.5rem;
color: var(--text-primary);
resize: none;
font-family: inherit;
}
#chat-input:focus {
outline: none;
border-color: var(--primary-color);
}
/* Editor Container */
.editor-container {
flex: 1;
display: flex;
flex-direction: column;
}
.editor-header {
background: var(--background-light);
border-bottom: 1px solid var(--border-color);
padding: 0.5rem 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.editor-tabs {
display: flex;
gap: 0.25rem;
}
.tab-btn {
background: none;
border: none;
color: var(--text-secondary);
padding: 0.5rem 1rem;
border-radius: 0.375rem;
cursor: pointer;
font-size: 0.875rem;
}
.tab-btn.active {
background: var(--primary-color);
color: white;
}
.tab-btn:hover:not(.active) {
background: var(--surface-dark);
color: var(--text-primary);
}
.editor-actions {
display: flex;
gap: 0.5rem;
}
.editor-frame {
flex: 1;
display: none;
}
.editor-frame.active {
display: block;
}
#code-server-frame {
width: 100%;
height: 100%;
border: none;
}
/* AI Features */
.ai-features {
padding: 1rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1rem;
overflow-y: auto;
}
.feature-card {
background: var(--background-light);
border: 1px solid var(--border-color);
border-radius: 0.5rem;
padding: 1rem;
}
.feature-card h4 {
margin-bottom: 0.75rem;
color: var(--primary-color);
}
.feature-card textarea {
width: 100%;
min-height: 120px;
background: var(--surface-dark);
border: 1px solid var(--border-color);
border-radius: 0.375rem;
padding: 0.5rem;
color: var(--text-primary);
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 0.875rem;
resize: vertical;
margin-bottom: 0.75rem;
}
.feature-card textarea:focus {
outline: none;
border-color: var(--primary-color);
}
/* Status Bar */
.status-bar {
background: var(--background-light);
border-top: 1px solid var(--border-color);
padding: 0.5rem 1rem;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.75rem;
color: var(--text-secondary);
}
.status-left, .status-right {
display: flex;
gap: 1rem;
}
.status-item {
display: flex;
align-items: center;
gap: 0.25rem;
}
/* Loading Overlay */
.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(15, 23, 42, 0.9);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 1000;
}
.loading-overlay.hidden {
display: none;
}
.loading-spinner {
width: 40px;
height: 40px;
border: 3px solid var(--border-color);
border-top: 3px solid var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 1rem;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Responsive Design */
@media (max-width: 768px) {
.ai-panel {
width: 100%;
position: absolute;
top: 0;
left: 0;
height: 100%;
z-index: 200;
}
.header-content {
flex-direction: column;
gap: 0.5rem;
}
.ai-features {
grid-template-columns: 1fr;
}
}
/* Utility Classes */
.hidden {
display: none !important;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--background-dark);
}
::-webkit-scrollbar-thumb {
background: var(--border-color);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--surface-dark);
}