-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_layout.html
More file actions
63 lines (56 loc) · 1.91 KB
/
test_layout.html
File metadata and controls
63 lines (56 loc) · 1.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Layout Test</title>
<link rel="stylesheet" href="popup.css">
<style>
/* Test styles to visualize layout */
.settings-column {
background: rgba(100, 200, 100, 0.2);
border: 2px solid green;
min-height: 400px;
}
.results-column {
background: rgba(200, 100, 100, 0.2);
border: 2px solid red;
min-height: 400px;
}
.test-box {
padding: 20px;
margin: 10px;
background: white;
color: black;
border-radius: 8px;
}
</style>
</head>
<body>
<div class="container">
<h1 style="text-align: center; color: white;">Layout Test - Should be 2 columns</h1>
<div class="main-wrapper">
<!-- Left Column -->
<div class="settings-column">
<div class="test-box">
<h2>LEFT COLUMN (Settings)</h2>
<p>This should be on the LEFT side (50% width)</p>
<p>Main Idea should be here</p>
<p>Main Action should be here</p>
<p>Generate/Reset buttons should be here</p>
</div>
</div>
<!-- Right Column -->
<div class="results-column">
<div class="test-box">
<h2>RIGHT COLUMN (Results)</h2>
<p>This should be on the RIGHT side (50% width)</p>
<p>Copy buttons should be here</p>
<p>Generated Prompt should be here</p>
<p>Negative Prompt should be here</p>
</div>
</div>
</div>
</div>
</body>
</html>