-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (75 loc) · 1.29 KB
/
style.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
body {
background-color: rgba(211, 209, 209, 0.329);
text-align: center;
}
table {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 80%;
/* height: 500%; */
margin-top: 2%;
text-align: center;
margin-left: 10%;
}
table,
th,
td {
border-collapse: collapse;
text-align: center;
border: 1px solid #ddd;
padding: 4px;
}
th {
font-weight: bold;
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #04aa6d;
color: white;
text-align: center;
}
tr {
height: 4%;
}
.hidden {
display: none;
}
table tr:nth-child(even) {
background-color: #f2f2f2;
}
table tr:hover {
background-color: #ddd;
}
#loadBtn,
#refreshBtn {
border-radius: 4px;
padding: 10px 20px;
font-size: 15px;
background-color: rgb(187, 234, 248);
margin-top: 2%;
}
#refreshBtn {
margin-left: 45%;
}
#Edit,
#Delete,
#New {
border-radius: 10%;
font-size: 90%;
}
#Edit {
background-color: #44cceb;
margin: 6%;
/* float: left; */
}
#Delete {
background-color: #ed5650;
/* float: right; */
}
#New {
background-color: #29f0298a;
}
input {
width: 95%;
}