studycode129 commited on
Commit
167d610
·
verified ·
1 Parent(s): abadc05

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -166
style.css DELETED
@@ -1,166 +0,0 @@
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
- input[type="file"] {
83
- display: none;
84
- }
85
-
86
- /* File name preview */
87
- #fileName {
88
- font-weight: 500;
89
- color: #4c1d95;
90
- margin-bottom: 12px;
91
- }
92
-
93
- /* Textarea style */
94
- textarea {
95
- min-height: 120px;
96
- resize: vertical;
97
- }
98
-
99
- /* Button style */
100
- button {
101
- background-color: #8b5cf6;
102
- color: white;
103
- font-weight: 600;
104
- border: none;
105
- padding: 14px;
106
- border-radius: 10px;
107
- font-size: 16px;
108
- cursor: pointer;
109
- width: 100%;
110
- transition: background-color 0.3s ease, transform 0.2s ease;
111
- }
112
-
113
- button:hover {
114
- background-color: #7c3aed;
115
- transform: scale(1.02);
116
- }
117
-
118
- /* Loading animation */
119
- .loading {
120
- font-size: 16px;
121
- font-weight: bold;
122
- color: #6b21a8;
123
- animation: pulse 1s infinite;
124
- margin: 14px 0;
125
- text-align: center;
126
- }
127
-
128
- @keyframes pulse {
129
- 0% { opacity: 0.3; }
130
- 50% { opacity: 1; }
131
- 100% { opacity: 0.3; }
132
- }
133
-
134
- /* Response box */
135
- pre {
136
- background: #f5f3ff;
137
- border: 1px solid #e9d5ff;
138
- padding: 16px;
139
- border-radius: 10px;
140
- white-space: pre-wrap;
141
- margin-top: 10px;
142
- }
143
-
144
- /* Download button wrapper */
145
- .download {
146
- text-align: center;
147
- margin-top: 20px;
148
- }
149
-
150
- /* Responsive styles */
151
- @media (max-width: 768px) {
152
- body {
153
- padding: 10px;
154
- }
155
- .container {
156
- padding: 20px;
157
- }
158
- h1 {
159
- font-size: 24px;
160
- }
161
- button {
162
- font-size: 15px;
163
- padding: 12px;
164
- }
165
- }
166
-