-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
83 lines (72 loc) · 1.67 KB
/
main.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
/*Fixed header code copied from: https://www.w3schools.com/howto/howto_js_sticky_header.asp
but JavaScript seemed problematic, so was abandoned
26/6/21 Nev "fixed" header is very temperamental on Android mobile - Chrome v91.0.4472.101
it was broken by this 40 character email with the normal font:
Also broken by long web links - avoided with a short "display text" or small font.
If fixed header is broken - delete sections 1 by 1 to find the problem
*/
body {
margin: 0;
/* font-family: Calibri, sans-serif;*/
}
table {
border-collapse: collapse;
width: 100%;
border: 1px solid #000;
}
th, td {
/* text-align: center;*/
padding: 16px;
font-size: 18pt;
border: 1px solid #000;
}
.header {
position: fixed;
text-align: center;
font-size: 22pt;
width: 100%;
padding: 10px 10px;
background: #FDBD35;
/* color: #f1f1f1;*/
}
.content {
padding: 16px;
}
.text-red {
color: red;
}
.h1-18ptBold {
text-align: center;
font-size: 18pt;
/* font-family: Calibri, sans-serif;*/
/* margin: 0cm;*/
font-weight: bold;
}
.h2-BlueBG {
font-size: 20pt;
text-align: center;
color: white;
background-color: rgb(65,70,152);
font-weight: bold;
/* font-family: Calibri;*/
}
.body-calibri {
font-family: Calibri;
}
.body-purple {
/* font-family: Calibri;*/
color: #7030A0;
}
.body-acknowledgement {
/* font-family: Calibri;*/
font-style: italic;
font-size: 9.0pt;
color: #595959;
}
.body-smallFont {
font-family: 'Arial Narrow';
/* font-style: italic;*/
font-size: 7.0pt;
/* color: #595959;*/
}