File size: 1,509 Bytes
f41050c 74f50bf f41050c 74f50bf f41050c 74f50bf f41050c 74f50bf f41050c 74f50bf f41050c 74f50bf f41050c 74f50bf f41050c 74f50bf f41050c 74f50bf f41050c 74f50bf f41050c |
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 |
.left_header {
text-align: center;
padding: 2rem;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
border-radius: 15px;
margin-bottom: 1.5rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.left_header img {
max-width: 200px;
margin-bottom: 1rem;
transition: transform 0.3s ease;
}
.left_header img:hover {
transform: scale(1.05);
}
.left_header h1 {
color: white;
font-size: 2rem;
font-weight: 600;
margin: 0;
}
.right_panel {
background: white;
border-radius: 15px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
height: 100%;
}
.render_header {
background: #f3f4f6;
padding: 12px;
border-radius: 15px 15px 0 0;
display: flex;
gap: 8px;
}
.header_btn {
width: 12px;
height: 12px;
border-radius: 50%;
}
.header_btn:nth-child(1) { background: #ef4444; }
.header_btn:nth-child(2) { background: #f59e0b; }
.header_btn:nth-child(3) { background: #10b981; }
.html_content {
height: calc(100vh - 180px);
overflow: auto;
padding: 20px;
}
.right_content {
padding: 2rem;
display: flex;
align-items: center;
justify-content: center;
height: calc(100vh - 180px);
}
/* Mobile Responsive Design */
@media (max-width: 768px) {
.left_header {
padding: 1.5rem;
}
.left_header img {
max-width: 150px;
}
.left_header h1 {
font-size: 1.5rem;
}
.html_content {
height: calc(100vh - 140px);
}
} |