-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
149 lines (128 loc) · 2.45 KB
/
index.css
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
width: 100%;
max-width: 800px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 20px;
}
header h1 {
font-size: 2em;
color: #007BFF;
margin-bottom: 10px;
}
header p {
font-size: 1.1em;
color: #555;
}
.upload-area {
border: 2px dashed #007BFF;
border-radius: 8px;
padding: 40px 20px;
background-color: #f9f9f9;
text-align: center;
}
.upload-zone {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
}
.upload-zone span {
font-size: 1.2em;
color: #888;
}
button {
padding: 12px 24px;
background-color: #007BFF;
color: #fff;
font-size: 1.1em;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
input[type="file"] {
display: none;
}
#status {
margin-top: 20px;
font-size: 1.1em;
color: #888;
}
footer {
margin-top: 30px;
font-size: 0.9em;
color: #777;
}
/* Drag & Drop Styles */
.upload-area.dragover {
background-color: #e8f5fe;
border-color: #0056b3;
}
#footer{
text-decoration: none;
}
#image-area {
margin-top: 20px;
text-align: center;
background-color: black;
}
#output-image {
background-color: white;
width: 100px;
height: 100px;
object-fit: cover;
border: 1px solid #ccc;
border-radius: 8px;
margin-bottom: 10px;
}
.download-options {
margin-top: 20px;
}
.download-button {
margin: 5px;
padding: 10px 15px;
font-size: 14px;
border: none;
background-color: #007bff;
color: white;
border-radius: 5px;
cursor: pointer;
}
.download-button:hover {
background-color: #0056b3;
}
.upload-another-image{
margin: 5px;
padding: 10px 15px;
font-size: 14px;
border: none;
background-color: #007bff;
color: white;
border-radius: 5px;
cursor: pointer;
}
.upload-another-image:hover {
background-color: #0056b3;
}