-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (93 loc) · 1.93 KB
/
style.css
File metadata and controls
95 lines (93 loc) · 1.93 KB
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
/* Stylesheet */
h2 {
color: darkblue;
font-weight: bold;
font-family: "Calibri New", monospace;
font-size: xx-large;
text-align: center;
}
h4 {
font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
font-weight: lighter;
font-size: x-large;
text-align: center;
}
body {
font-family: Helvetica, Arial, sans-serif;
font-size: large;
text-align: center;
}
input[type=checkbox] {
vertical-align: middle;
position: relative;
bottom: 1px;
}
input[type=text] {
width: 90%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
label {
display: block;
}
fieldset {
background-color: rgb(240, 248, 250);
border: 2px solid rgb(67, 131, 200);
display: inline-block;
margin-left: 2px;
margin-right: 2px;
text-align: center;
}
legend {
background-color: rgb(240, 248, 250);
color: darkblue;
padding: 5px 10px;
font-size: x-large;
font-weight: bold;
}
/* Table style */
.txTable {
padding: 0;
margin: auto;
border-collapse: collapse;
width: 90%;
text-align: center;
color: whitesmoke;
}
.txTableHeaderRow {
color: darkblue;
font-weight: bold;
height: 50px;
}
.txTableBodyRow:nth-child(odd) {
background-color: rgba(128, 128, 128, 0.050);
}
.txTableBodyRow:hover {
background-color: lightblue;
}
.txTable tr td {
height: 50px;
color:black;
}
/* Pagination style */
.pager-nav {
margin: 16px 0;
text-align: center;
}
.pager-nav span {
display: inline-block;
padding: 4px 8px;
margin: 1px;
cursor: pointer;
font-size: 14px;
background-color: #FFFFFF;
border: 1px solid #e1e1e1;
border-radius: 3px;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
}
.pager-nav span:hover,
.pager-nav .pg-selected {
background-color: #f9f9f9;
border: 1px solid #CCCCCC;
}