-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.css
96 lines (81 loc) · 1.53 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
88
89
90
91
92
93
94
95
96
body{
background-color:#051425 ;
}
.input-field{
background: #eaeaea;
margin: 15px 0;
display: flex;
align-items: center;
max-height: 65px;
transition: max-height 0.5s;
overflow: hidden;
padding-left: 13px;
width: 95%;
}
input{
width: 98%;
background: transparent;
border: 0;
outline: 0;
padding: 18px 15px;
}
.input-group{
height: 280px;
}
table {
height: 100%;
width: 100%;
}
table th {
pointer-events: none;
}
.styled-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
margin-left: 0;
margin-right: 0;
}
.styled-table thead tr {
background-color: #2c74b3;
color: #ffffff;
text-align: left;
border-top-left-radius: 2cm;
}
.styled-table th,
.styled-table td {
padding: 12px 15px;
}
.styled-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.styled-table tbody tr:nth-of-type(odd) {
background-color: #f9fcff;
}
.styled-table tbody tr:last-of-type {
border-bottom: 2px solid #051425;
}
.styled-table tbody tr.active-row {
font-weight: bold;
color: #051425;
}
.borderLeft{
border-top-left-radius: 5px;
}
.borderRight{
border-top-right-radius: 5px;
}
table tr:hover {
font-weight: bold;
color: #051425;
}
.styled-table th{
background-color: #2c74b3;
color: #fff;
}