-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransactions.css
83 lines (78 loc) · 1.49 KB
/
transactions.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
table{
border-collapse: collapse;
width: 90%;
margin-top: 10px;
}
table, th,td{
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border: 1px solid #ddd ;
}
th{
background-color: #008080;
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #f2f2f2;}
#shortlist_length{
margin-top: 5px;
margin-bottom: 5px;
}
.container {
position: relative;
width: 150%;
max-width: 300px;
}
.container .btn {
position: absolute;
top: -100%;
left: 5%;
background-color: #f1f1f1;
color: black;
font-size: 16px;
padding: 16px 30px;
border: none;
cursor: pointer;
border-radius: 5px;
text-align: left;
}
.container .btn:hover {
background-color: black;
color: white;
}
.edit {
color: #494949 !important;
width: 50%;
text-transform: uppercase;
text-decoration: none;
background: #ffffff;
padding: 8px;
border: 4px solid #494949 !important;
display: inline-block;
transition: all 0.4s ease 0s;
}
.edit:hover {
color: #ffffff !important;
background: blue;
border-color: blue !important;
transition: all 0.4s ease 0s;
}
.delete {
color: #494949 !important;
width: 50%;
text-transform: uppercase;
text-decoration: none;
background: #ffffff;
padding: 8px;
border: 4px solid #494949 !important;
display: inline-block;
transition: all 0.4s ease 0s;
}
.delete:hover {
color: #ffffff !important;
background: red;
border-color: red !important;
transition: all 0.4s ease 0s;
}