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
|
:root {
--m-red: #EE7F38;
--m-dark: #023B47;
--m-light: #fefcf3;
--m-blue: #295E52;
--nc-tx-1: var(--m-dark);
--nc-tx-2: #000;
--nc-bg-1: #FFF;
--nc-bg-2: var(--m-light);
--nc-bg-3: var(--m-dark);
--nc-lk-1: var(--m-blue);
--nc-lk-2: var(--m-red);
--nc-lk-tx: #FFF;
--nc-ac-1: var(--m-red);
--nc-ac-tx: var(--m-light);
}
html {
font-family: Georgia, serif;
font-size: 1.3em;
}
header {
background: var(--nc-bg-1);
}
h1, h2, h3, h4, h5, h6, .button-primary, .button, header, footer {
font-family: var(--nc-font-sans);
}
h1, h2, h3 {
border-bottom: 0;
margin-bottom: 1rem;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
text-decoration: none;
color: var(--nc-tx-1);
}
ul {
list-style: circle;
}
hr {
margin: 2rem 0 2rem 0;
border-color: var(--nc-bg-3);
opacity: 25%;
}
table td {
border: 0;
}
table tr {
border-bottom: 1px dashed var(--nc-tx-1);
}
table tr:nth-child(1) {
border-top: 1px dashed var(--nc-tx-1);
}
table td form,
table td input {
margin: 0;
width: 100%;
}
table tr:nth-child(even) {
background-color: initial;
}
|