-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
97 lines (96 loc) · 1.72 KB
/
index.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
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
color: #333;
margin-top: 20px;
}
.search-container {
width: 80%;
display: flex;
justify-content: flex-start;
margin-bottom: 20px;
}
.search-container form {
display: flex;
}
.search-container input[type="text"] {
width: 300px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px 0 0 4px;
}
.search-container button {
padding: 10px;
border: none;
background-color: #007BFF;
color: white;
border-radius: 0 4px 4px 0;
cursor: pointer;
}
.search-container button:hover {
background-color: #0056b3;
}
table {
border-collapse: collapse;
width: 80%;
margin: 20px 0;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 12px;
text-align: center;
}
th {
background-color: #007BFF;
color: white;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #ddd;
}
a {
text-decoration: none;
color: #007BFF;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.pagination {
display: flex;
justify-content: center;
margin: 20px 0;
}
.pagination a {
color: #007BFF;
padding: 8px 16px;
text-decoration: none;
border: 1px solid #ddd;
margin: 0 4px;
border-radius: 4px;
}
.pagination a.active {
background-color: #007BFF;
color: white;
border: 1px solid #007BFF;
}
.pagination a:hover:not(.active) {
background-color: #ddd;
}
@media print{
.tambah, .page , .aksi, .logout, .search-container{
display: none;
}
}