-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (72 loc) · 1.55 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Dyslexie&display=swap');
body {
font-family: 'Dyslexie', Arial, sans-serif;
background-color: #272727;
color: #ffffff;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
#dropArea {
border: 2px dashed transparent;
border-radius: 20px;
width: 100%;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background: linear-gradient(135deg, #5A3E7B, #2E2A8E);
transition: border-color 0.3s;
}
#dropArea.highlight {
border-color: #fff;
}
#fileList {
margin-top: 20px;
}
#progressBar {
width: 100%;
background-color: #f0f0f0;
border-radius: 10px;
overflow: hidden;
margin-top: 10px;
}
#progressBar div {
height: 20px;
background-color: #4CAF50;
width: 0%;
transition: width 0.4s;
}
button {
margin-top: 10px;
padding: 10px 20px;
font-size: 16px;
background-color: #5A3E7B;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #4CAF50;
}
body {
font-family: 'Dyslexie', Arial, sans-serif;
background-color: #272727;
color: #ffffff;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
#apiKeyContainer {
display: flex;
flex-direction: column;
align-items: center;
}
input {
margin-top: 10px;
padding: 10px;
font-size: 16px;
}