-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (98 loc) · 2.09 KB
/
styles.css
File metadata and controls
112 lines (98 loc) · 2.09 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
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
:root {
--primary-color: #3498db;
--secondary-color: #2ecc71;
--background-color: #f5f6fa;
--text-color: #2c3e50;
--border-radius: 8px;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--background-color);
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background-color: #ffffff;
border-radius: var(--border-radius);
padding: 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 600px;
width: 100%;
}
h1 {
color: var(--primary-color);
text-align: center;
margin-bottom: 1.5rem;
}
.file-input-wrapper {
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 1.5rem;
}
#csvFile {
display: none;
}
.file-input-label {
background-color: var(--primary-color);
color: #ffffff;
padding: 0.75rem 1rem;
border-radius: var(--border-radius);
cursor: pointer;
text-align: center;
transition: background-color 0.3s ease;
}
.file-input-label:hover {
background-color: #2980b9;
}
button {
background-color: var(--secondary-color);
color: #ffffff;
border: none;
padding: 0.75rem 1rem;
border-radius: var(--border-radius);
cursor: pointer;
width: 100%;
font-size: 1rem;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #27ae60;
}
#result {
margin-top: 1.5rem;
padding: 1rem;
background-color: #ecf0f1;
border-radius: var(--border-radius);
text-align: center;
font-weight: bold;
}
.loading {
display: none;
text-align: center;
margin-top: 1rem;
}
.loading::after {
content: '';
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid #ccc;
border-radius: 50%;
border-top-color: var(--primary-color);
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@media (max-width: 480px) {
.container {
padding: 1rem;
}
}