-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (56 loc) · 1.05 KB
/
style.css
File metadata and controls
63 lines (56 loc) · 1.05 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
body {
background-color: #f2f2f2;
font-family: "Courier New", Courier, monospace;
justify-content: center;
color: #0455bf;
}
img {
display: block;
margin: auto;
}
#dropZone {
width: 550px;
height: 250px;
border: 3px dashed #ccc;
border-radius: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
margin: 20px auto;
transition: all 0.3s;
}
#dropZone.highlight {
border-color: #4caf50;
background-color: #f0fff0;
transform: scale(1.02);
}
#fileInfo {
margin-top: 15px;
font-size: 14px;
}
.icon {
font-size: 48px;
margin-bottom: 10px;
transition: all 0.3s;
}
.custom-btn {
background-color: #f29422;
color: #0455bf;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
margin: auto;
display: block;
}
#convertBtn:disabled {
background-color: #ccc;
cursor: not-allowed;
}
.custom-btn:hover {
background-color: #f27405;
transform: scale(1.02);
}