-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (51 loc) · 930 Bytes
/
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
body {
background-color: #f4f4f9;
}
.container {
background: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.header h1 {
margin: 0;
flex-grow: 1;
}
.header .btn-danger {
margin-left: auto;
}
.table thead {
background: #343a40;
color: white;
}
.table tbody tr:nth-of-type(even) {
background: #f8f9fa;
}
.table tbody tr:hover {
background: #e9ecef;
}
.btn {
padding: 8px 12px;
border-radius: 5px;
transition: background 0.3s;
margin-bottom: 5px; /* Add margin to create space between buttons */
}
.btn-primary:hover {
background: #0056b3;
}
.btn-info:hover {
background: #17a2b8;
}
.btn-warning:hover {
background: #e0a800;
}
.container-custom {
max-width: 500px;
margin: auto;
}