-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (60 loc) · 1.14 KB
/
style.css
File metadata and controls
70 lines (60 loc) · 1.14 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
/* General page styling */
body {
font-family: Arial, sans-serif;
margin: 30px;
background-color: lightgray;
}
/* Heading */
h2 {
margin-bottom: 15px;
}
/* Search section */
input[type="text"] {
padding: 7px 10px;
width: 220px;
border: 1px solid gray;
border-radius: 4px;
}
button {
padding: 7px 14px;
margin: 3px;
border: 1px solid gray;
background-color: white;
cursor: pointer;
border-radius: 4px;
}
/* Button hover */
button:hover:not(:disabled) {
background-color: skyblue;
}
/* Table styling */
table {
width: 100%;
border-collapse: collapse;
background-color: white;
margin-top: 10px;
}
th, td {
border: 1px solid gray;
padding: 10px;
text-align: left;
}
/* Table header */
th {
background-color: silver ;
}
/* Pagination area */
#pageNumbers button {
min-width: 35px;
}
/* Active page number */
#pageNumbers button:disabled {
background-color: green;
color: white;
border-color: green;
}
/* Disabled buttons */
button:disabled {
opacity: 0.6;
cursor: not-allowed;
}