File size: 2,834 Bytes
ae10069 c6713d3 ae10069 2e5b78f ae10069 c6713d3 2e5b78f c6713d3 ae10069 c6713d3 2e5b78f ae10069 c6713d3 2e5b78f ae10069 c6713d3 ae10069 2e5b78f ae10069 2e5b78f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
/* Base Styles */
:root {
--primary: #8e44ad;
--secondary: #9b59b6;
--dark: #2c3e50;
--light: #ecf0f1;
--success: #2ecc71;
--danger: #e74c3c;
--warning: #f39c12;
--info: #3498db;
}
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow-x: hidden;
color: var(--light);
}
/* Video Background */
#video-background {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
overflow: hidden;
}
#funk-video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translate(-50%, -50%);
opacity: 0.15;
filter: blur(4px);
}
#video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(22, 33, 62, 0.85) 0%, rgba(10, 15, 30, 0.95) 100%);
}
/* Main Panel */
.panel {
max-width: 1200px;
margin: 2rem auto;
padding: 2rem;
background: rgba(25, 35, 65, 0.8);
backdrop-filter: blur(10px);
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Terminal Styles */
.terminal {
background: rgba(0, 0, 0, 0.7);
border-radius: 8px;
padding: 1.5rem;
margin-top: 1.5rem;
border: 2px solid var(--primary);
}
#output {
height: 50vh;
overflow-y: auto;
background: #111;
color: #0f0;
font-family: 'Courier New', monospace;
padding: 1rem;
margin-bottom: 1rem;
white-space: pre-wrap;
border-radius: 5px;
}
.input-group {
display: flex;
gap: 0.5rem;
}
#command-input {
flex: 1;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.1);
border: 1px solid var(--primary);
border-radius: 5px;
color: white;
font-family: 'Courier New', monospace;
}
#send-command {
background: var(--primary);
color: white;
border: none;
border-radius: 5px;
padding: 0 1.5rem;
cursor: pointer;
transition: all 0.3s;
}
#send-command:hover {
background: var(--secondary);
}
/* Connection Status */
#connection-status {
position: fixed;
bottom: 10px;
right: 10px;
padding: 0.5rem 1rem;
background: #333;
color: white;
border-radius: 5px;
font-size: 0.9rem;
z-index: 1000;
}
/* Message Classes */
.message {
padding: 0.75rem;
border-radius: 5px;
margin-top: 1rem;
text-align: center;
}
.success {
background: rgba(46, 204, 113, 0.2);
color: #2ecc71;
}
.error {
background: rgba(231, 76, 60, 0.2);
color: #e74c3c;
}
.warning {
background: rgba(243, 156, 18, 0.2);
color: #f39c12;
}
.info {
background: rgba(52, 152, 219, 0.2);
color: #3498db;
} |