-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
86 lines (68 loc) · 1.13 KB
/
styles.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
/* Header/Logo Title */
.header {
padding: 20px;
text-align: center;
background: #697FCA;
color: white;
font-family: arial, sans-serif;
font-size: 20px;
}
table {
font-family: arial, sans-serif;
font-size: 25px;
border-collapse: collapse;
border: 5px solid #697FCA;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
.entry_header {
background-color: #697FCA;
color: white;
text-align: left;
}
.summary_header {
background-color: #697FCA;
color: white;
text-align: left;
}
.summary_td {
width: 20%;
}
.results {
background-color: #2B4DBC;
color: white;
text-align: left;
padding: 15px;
}
.results_table {
border: 5px solid #2B4DBC;
border-collapse: collapse;
}
.results_table tr:last-child {
font-weight: bold;
}
tr:nth-child(even) {
background-color: #dddddd;
}
select, button, input, p {
font-family: arial, sans-serif;
font-size: 25px;
}
button {
border-radius: 8px;
background-color: #555555;
color: white;
} /*rounded button, black */
.bnf_good {
color: green;
}
.bnf_bad {
color: #F78B10;
}
.bnf_very_bad {
color: red
}