-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.css
87 lines (80 loc) · 1.57 KB
/
table.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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
.table {
width: 100%;
/* border: red 2px solid; */
/* height: max-content; */
}
.table_header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 20px 100px;
background-color: rgb(240, 240, 240);
}
.table_header p {
color: #000000;
}
/******************************************************************************************/
button , td a , div#btn-in-table-header a {
outline: none;
border: none;
border-radius: 6px;
cursor: pointer;
padding: 5px 7px;
color: #ffffff;
text-decoration: none;
}
#add-admin-btn{
background-color: #0298cf;
}
td a:nth-child(1) {
background-color: #0298cf;
}
td a:nth-child(2) {
background-color: #f80000;
}
td a:nth-child(3) {
background-color: #ffcc00;
}
.add_new {
padding: 10px 20px;
color: #ffffff;
background-color: #0298cf;
}
.table_section {
height:95vh;
overflow: auto;
/* border: red 2px solid; */
}
table {
width: 100%;
table-layout: fixed;
min-width: 900px;
border-collapse: collapse;
}
thead th {
position: sticky;
top: 0;
background-color: #f6f9fc;
color: #8493a5;
font-size: 15px;
}
th,
td {
border-bottom: 1px solid #dddddd;
padding: 10px 20px;
word-break: break-all;
text-align: center;
/* overflow: hidden; */
}
tr:hover td {
color: #0298cf;
background-color: #f6f9fc;
}
p.error{
color :rgb(164, 0, 0) ;
}
p.success{
color :rgb(26, 141, 0) ;
}