zenjoul80 commited on
Commit
87e6d64
·
verified ·
1 Parent(s): 1dc0da6

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +86 -0
static/style.css ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --primary: #6366f1;
3
+ --bg-dark: #0f111a;
4
+ --card: #1a1d29;
5
+ --input: #252a3d;
6
+ --text: #f8fafc;
7
+ }
8
+
9
+ body {
10
+ background: var(--bg-dark);
11
+ color: var(--text);
12
+ font-family: 'Inter', sans-serif;
13
+ margin: 0;
14
+ padding: 20px;
15
+ display: flex;
16
+ justify-content: center;
17
+ }
18
+
19
+ .box {
20
+ width: 100%;
21
+ max-width: 800px;
22
+ background: var(--card);
23
+ padding: 30px;
24
+ border-radius: 16px;
25
+ box-shadow: 0 10px 40px rgba(0,0,0,0.5);
26
+ }
27
+
28
+ .grid-input {
29
+ display: grid;
30
+ grid-template-columns: 1fr;
31
+ gap: 15px;
32
+ margin-bottom: 15px;
33
+ }
34
+
35
+ /* Tablet/Desktop Grid */
36
+ @media (min-width: 768px) {
37
+ .grid-input { grid-template-columns: 1fr 1fr; }
38
+ .full-width { grid-column: span 2; }
39
+ }
40
+
41
+ input, select, textarea {
42
+ width: 100%;
43
+ padding: 12px;
44
+ background: var(--input);
45
+ border: 1px solid #334155;
46
+ border-radius: 8px;
47
+ color: white;
48
+ font-size: 15px;
49
+ }
50
+
51
+ button {
52
+ background: var(--primary);
53
+ color: white;
54
+ padding: 15px;
55
+ border: none;
56
+ border-radius: 8px;
57
+ font-weight: bold;
58
+ cursor: pointer;
59
+ transition: 0.2s;
60
+ }
61
+
62
+ button:hover { filter: brightness(1.2); }
63
+
64
+ #log {
65
+ margin-top: 20px;
66
+ background: #000;
67
+ padding: 15px;
68
+ border-radius: 8px;
69
+ font-family: monospace;
70
+ font-size: 13px;
71
+ max-height: 150px;
72
+ overflow-y: auto;
73
+ color: #94a3b8;
74
+ }
75
+
76
+ .dl-btn {
77
+ display: none;
78
+ background: #10b981;
79
+ text-align: center;
80
+ text-decoration: none;
81
+ padding: 15px;
82
+ margin-top: 10px;
83
+ border-radius: 8px;
84
+ color: white;
85
+ font-weight: bold;
86
+ }