-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.css
124 lines (110 loc) · 2.68 KB
/
report.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/***
Formatting to try to make the tables pretty.
They were initially generated with https://divtable.com/table-styler/
and then custom modified
***/
table.grades {
border: 1px solid #ccc;
width: 100%;
}
table.grades tr:nth-child(odd){background-color: #f2f2f2;}
table.paleGrayRows {
border: 1px solid #ccc;
border-collapse: collapse;
margin: 0;
padding: 0;
table-layout: fixed;
width: 100%;
/* border: 1px solid #000000; */
background-color: #EEEEEE;
/* width: 350px; */
/* /\* height: 200px; *\/ */
text-align: center;
}
table.paleGrayRows td, table.paleGrayRows th {
border: 1px solid #FFFFFF;
}
table.paleGrayRows tbody td {
font-size: 13px;
}
table.paleGrayRows tr:nth-child(even) {
background: #FFFFFF;
}
table.paleGrayRows thead th {
background: #ffc217; /* 0B6FA4;*/
color: #000000;
border-bottom: 1px solid #000000;
}
table.paleGrayRows th {
font-size: 13px;
font-weight: bold;
color: #000000;
text-align: center;
border-left: 2px solid #FFFFFF;
}
table.paleGrayRows thead th:first-child {
border-left: none;
}
/* table.paleGrayRows tbody tr:nth-last-child(1) { */
/* font-size: 13px; */
/* font-weight: normal; */
/* color: #333333; */
/* background: #DFE0DF; */
/* border-top: 2px solid #444444; */
/* } */
table.paleGrayRows tfoot td th {
font-size: 1em;
}
table.paleGrayRows td {
font-size: 1em;
font-weight: normal;
}
/* table.paleGrayRows td:nth-last-child(1) { */
/* font-size: 13px; */
/* font-weight: normal; */
/* color: #333333; */
/* background: #DFE0DF; */
/* border-left: 2px solid #444444; */
/* } */
/*
Page styling
================================== */
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,700);
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Titillium+Web&display=swap');
html {
height: 100%;
background-color: #EEE;
}
body {
box-sizing: border-box;
min-height: 100%;
margin: 0 auto;
padding: 2em;
max-width: 800px;
font-family: 'Titillium Web', sans-serif;
/* font-family: 'Josefin Sans', sans-serif;*/
font-size: 1.em;
background-color: white;
/* border: double 3px #DDD; */
/* border-top: none; border-bottom: none; */
}
h1, h2, h3, h4, h5, h6 { margin-top: 0; font-family: 'Roboto', sans-serif; }
h3 { font-size: 1.2em; }
h4 { font-size: 1em; }
small { font-size: 0.750em; }
strong { color: darken(slategrey,20%);}
.message {
font-weight: normal;
}
@media screen and (max-width: 600px) {
table thead {
border: none;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
}