Update app.css
Browse files
app.css
CHANGED
@@ -1,57 +1,83 @@
|
|
1 |
.left_header {
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
6 |
}
|
7 |
|
8 |
-
.
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
overflow: hidden;;
|
13 |
}
|
14 |
|
15 |
-
.
|
16 |
-
|
17 |
-
width: 100%;
|
18 |
-
padding: 5px 16px;
|
19 |
-
background-color: #f5f5f5;
|
20 |
}
|
21 |
|
22 |
-
.
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
margin-right: 4px;
|
28 |
}
|
29 |
|
30 |
-
.
|
31 |
-
|
|
|
|
|
|
|
32 |
}
|
33 |
|
34 |
-
.render_header
|
35 |
-
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
39 |
}
|
40 |
|
41 |
-
.
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
47 |
}
|
48 |
|
49 |
-
.
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
52 |
}
|
53 |
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
|
|
1 |
.left_header {
|
2 |
+
text-align: center;
|
3 |
+
padding: 2rem;
|
4 |
+
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
5 |
+
border-radius: 15px;
|
6 |
+
margin-bottom: 1.5rem;
|
7 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
8 |
}
|
9 |
|
10 |
+
.left_header img {
|
11 |
+
max-width: 200px;
|
12 |
+
margin-bottom: 1rem;
|
13 |
+
transition: transform 0.3s ease;
|
|
|
14 |
}
|
15 |
|
16 |
+
.left_header img:hover {
|
17 |
+
transform: scale(1.05);
|
|
|
|
|
|
|
18 |
}
|
19 |
|
20 |
+
.left_header h1 {
|
21 |
+
color: white;
|
22 |
+
font-size: 2rem;
|
23 |
+
font-weight: 600;
|
24 |
+
margin: 0;
|
|
|
25 |
}
|
26 |
|
27 |
+
.right_panel {
|
28 |
+
background: white;
|
29 |
+
border-radius: 15px;
|
30 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
31 |
+
height: 100%;
|
32 |
}
|
33 |
|
34 |
+
.render_header {
|
35 |
+
background: #f3f4f6;
|
36 |
+
padding: 12px;
|
37 |
+
border-radius: 15px 15px 0 0;
|
38 |
+
display: flex;
|
39 |
+
gap: 8px;
|
40 |
}
|
41 |
+
|
42 |
+
.header_btn {
|
43 |
+
width: 12px;
|
44 |
+
height: 12px;
|
45 |
+
border-radius: 50%;
|
46 |
}
|
47 |
|
48 |
+
.header_btn:nth-child(1) { background: #ef4444; }
|
49 |
+
.header_btn:nth-child(2) { background: #f59e0b; }
|
50 |
+
.header_btn:nth-child(3) { background: #10b981; }
|
51 |
+
|
52 |
+
.html_content {
|
53 |
+
height: calc(100vh - 180px);
|
54 |
+
overflow: auto;
|
55 |
+
padding: 20px;
|
56 |
}
|
57 |
|
58 |
+
.right_content {
|
59 |
+
padding: 2rem;
|
60 |
+
display: flex;
|
61 |
+
align-items: center;
|
62 |
+
justify-content: center;
|
63 |
+
height: calc(100vh - 180px);
|
64 |
}
|
65 |
|
66 |
+
/* Mobile Responsive Design */
|
67 |
+
@media (max-width: 768px) {
|
68 |
+
.left_header {
|
69 |
+
padding: 1.5rem;
|
70 |
+
}
|
71 |
+
|
72 |
+
.left_header img {
|
73 |
+
max-width: 150px;
|
74 |
+
}
|
75 |
+
|
76 |
+
.left_header h1 {
|
77 |
+
font-size: 1.5rem;
|
78 |
+
}
|
79 |
+
|
80 |
+
.html_content {
|
81 |
+
height: calc(100vh - 140px);
|
82 |
+
}
|
83 |
}
|