-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (105 loc) · 2.09 KB
/
styles.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
:root {
--primary-color: #2196F3;
--hover-color: #1976D2;
--background-color: #f5f5f5;
--text-color: #333;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background-color: var(--background-color);
color: var(--text-color);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
h1 {
text-align: center;
margin-bottom: 2rem;
color: var(--text-color);
}
.upload-container {
border: 2px dashed #dee2e6;
padding: 2rem;
text-align: center;
transition: border-color 0.3s ease;
cursor: pointer;
background: #f8f9fa;
}
.upload-container.drag-over {
border-color: #0d6efd;
background: #fff;
}
.upload-icon {
width: 64px;
height: 64px;
margin-bottom: 1rem;
}
.file-input {
display: none;
}
.upload-button {
display: inline-block;
padding: 0.5rem 1.5rem;
background-color: var(--primary-color);
color: white;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.upload-button:hover {
background-color: var(--hover-color);
}
.file-info {
margin-top: 1.5rem;
text-align: center;
}
.convert-button {
margin-top: 1rem;
padding: 0.5rem 1.5rem;
background-color: var(--primary-color);
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.convert-button:hover:not(:disabled) {
background-color: var(--hover-color);
}
.convert-button:disabled {
background-color: #ccc;
cursor: not-allowed;
}
.hidden {
display: none;
}
.table-responsive {
max-height: 400px;
overflow-y: auto;
}
.table th {
position: sticky;
top: 0;
background: white;
z-index: 1;
}
footer {
margin-top: auto;
font-size: 0.9rem;
}
footer .bi-github {
font-size: 1.2rem;
margin-right: 0.5rem;
vertical-align: -0.2rem;
}