Update style.css
Browse files
style.css
CHANGED
@@ -1,133 +1,162 @@
|
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
* {
|
2 |
+
box-sizing: border-box;
|
3 |
+
}
|
4 |
+
|
5 |
+
body {
|
6 |
+
font-family: 'Inter', sans-serif;
|
7 |
+
background: linear-gradient(to right, #ede9fe, #f3e8ff);
|
8 |
+
color: #374151;
|
9 |
+
margin: 0;
|
10 |
+
padding: 20px;
|
11 |
+
display: flex;
|
12 |
+
justify-content: center;
|
13 |
+
align-items: center;
|
14 |
+
min-height: 100vh;
|
15 |
+
}
|
16 |
+
|
17 |
+
.container {
|
18 |
+
background: #faf5ff;
|
19 |
+
padding: 32px;
|
20 |
+
border-radius: 24px;
|
21 |
+
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
22 |
+
width: 100%;
|
23 |
+
max-width: 800px;
|
24 |
+
border: 2px solid #c4b5fd;
|
25 |
+
}
|
26 |
+
|
27 |
+
h1 {
|
28 |
+
text-align: center;
|
29 |
+
margin-bottom: 24px;
|
30 |
+
font-size: 28px;
|
31 |
+
font-weight: 600;
|
32 |
+
color: #6b21a8;
|
33 |
+
}
|
34 |
+
|
35 |
+
label {
|
36 |
+
display: block;
|
37 |
+
margin: 14px 0 6px;
|
38 |
+
font-weight: 600;
|
39 |
+
color: #6b21a8;
|
40 |
+
}
|
41 |
+
|
42 |
+
input[type="text"],
|
43 |
+
select,
|
44 |
+
textarea {
|
45 |
+
width: 100%;
|
46 |
+
padding: 12px;
|
47 |
+
margin-bottom: 16px;
|
48 |
+
border-radius: 10px;
|
49 |
+
border: 1px solid #ddd6fe;
|
50 |
+
font-size: 16px;
|
51 |
+
font-family: inherit;
|
52 |
+
background: #fff;
|
53 |
+
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
54 |
+
}
|
55 |
+
|
56 |
+
input[type="text"]:focus,
|
57 |
+
textarea:focus,
|
58 |
+
select:focus {
|
59 |
+
outline: none;
|
60 |
+
border-color: #a78bfa;
|
61 |
+
box-shadow: 0 0 0 2px #ddd6fe;
|
62 |
+
}
|
63 |
+
|
64 |
+
/* File upload button */
|
65 |
+
.custom-file-upload {
|
66 |
+
display: inline-block;
|
67 |
+
padding: 12px 24px;
|
68 |
+
background-color: #8b5cf6;
|
69 |
+
color: white;
|
70 |
+
font-weight: 600;
|
71 |
+
border-radius: 10px;
|
72 |
+
cursor: pointer;
|
73 |
+
margin-bottom: 16px;
|
74 |
+
transition: background-color 0.3s ease, transform 0.2s ease;
|
75 |
+
}
|
76 |
+
|
77 |
+
.custom-file-upload:hover {
|
78 |
+
background-color: #7c3aed;
|
79 |
+
transform: scale(1.02);
|
80 |
+
}
|
81 |
+
|
82 |
+
/* File name preview */
|
83 |
+
#fileName {
|
84 |
+
font-weight: 500;
|
85 |
+
color: #4c1d95;
|
86 |
+
margin-bottom: 12px;
|
87 |
+
}
|
88 |
+
|
89 |
+
/* Textarea style */
|
90 |
+
textarea {
|
91 |
+
min-height: 120px;
|
92 |
+
resize: vertical;
|
93 |
+
}
|
94 |
+
|
95 |
+
/* Button style */
|
96 |
+
button {
|
97 |
+
background-color: #8b5cf6;
|
98 |
+
color: white;
|
99 |
+
font-weight: 600;
|
100 |
+
border: none;
|
101 |
+
padding: 14px;
|
102 |
+
border-radius: 10px;
|
103 |
+
font-size: 16px;
|
104 |
+
cursor: pointer;
|
105 |
+
width: 100%;
|
106 |
+
transition: background-color 0.3s ease, transform 0.2s ease;
|
107 |
+
}
|
108 |
+
|
109 |
+
button:hover {
|
110 |
+
background-color: #7c3aed;
|
111 |
+
transform: scale(1.02);
|
112 |
+
}
|
113 |
+
|
114 |
+
/* Loading animation */
|
115 |
+
.loading {
|
116 |
+
font-size: 16px;
|
117 |
+
font-weight: bold;
|
118 |
+
color: #6b21a8;
|
119 |
+
animation: pulse 1s infinite;
|
120 |
+
margin: 14px 0;
|
121 |
+
text-align: center;
|
122 |
+
}
|
123 |
+
|
124 |
+
@keyframes pulse {
|
125 |
+
0% { opacity: 0.3; }
|
126 |
+
50% { opacity: 1; }
|
127 |
+
100% { opacity: 0.3; }
|
128 |
+
}
|
129 |
+
|
130 |
+
/* Response box */
|
131 |
+
pre {
|
132 |
+
background: #f5f3ff;
|
133 |
+
border: 1px solid #e9d5ff;
|
134 |
+
padding: 16px;
|
135 |
+
border-radius: 10px;
|
136 |
+
white-space: pre-wrap;
|
137 |
+
margin-top: 10px;
|
138 |
+
}
|
139 |
+
|
140 |
+
/* Download button wrapper */
|
141 |
+
.download {
|
142 |
+
text-align: center;
|
143 |
+
margin-top: 20px;
|
144 |
+
}
|
145 |
+
|
146 |
+
/* Responsive styles */
|
147 |
+
@media (max-width: 768px) {
|
148 |
+
body {
|
149 |
+
padding: 10px;
|
150 |
+
}
|
151 |
+
.container {
|
152 |
+
padding: 20px;
|
153 |
+
}
|
154 |
+
h1 {
|
155 |
+
font-size: 24px;
|
156 |
+
}
|
157 |
+
button {
|
158 |
+
font-size: 15px;
|
159 |
+
padding: 12px;
|
160 |
+
}
|
161 |
+
}
|
162 |
+
|