-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (37 loc) · 692 Bytes
/
style.css
File metadata and controls
44 lines (37 loc) · 692 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
h1 {
color: #333;
}
.table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
.table th,
.table td {
padding: 10px;
border: 1px solid #ccc;
}
.loader {
display: none;
border: 4px solid #f3f3f3;
border-top: 4px solid #3498db;
border-radius: 50%;
width: 50px;
height: 50px;
margin: 20px auto;
animation: spin 2s linear infinite;
}
.download-button button {
background-color: #28a745; /* Green color */
color: white;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}