-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (55 loc) · 817 Bytes
/
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
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f9;
}
h1 {
color: #333;
}
#drop-area {
border: 2px dashed #bbb;
padding: 40px;
width: 50%;
margin: 20px auto;
cursor: pointer;
transition: 0.3s ease;
}
#drop-area.dragover {
border-color: #333;
background-color: #e8e8e8;
}
#table-container {
width: 80%;
margin: 20px auto;
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
padding: 10px;
border: 1px solid #ccc;
text-align: left;
}
th {
background-color: #333;
color: white;
}
td {
background-color: #f9f9f9;
}
#buttons-container {
margin-top: 20px;
}
button {
padding: 10px 20px;
margin: 5px;
font-size: 16px;
cursor: pointer;
}
button:disabled {
cursor: not-allowed;
opacity: 0.5;
}