2022-03-13 18:58:19 +00:00
|
|
|
|
2022-03-13 20:29:46 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-03-13 18:58:19 +00:00
|
|
|
body {
|
2022-03-13 19:42:49 +00:00
|
|
|
font-family: system-ui, Arial, Helvetica, sans-serif;
|
2022-04-18 14:43:07 +00:00
|
|
|
background-color: #FFF;
|
|
|
|
color: #333;
|
2022-03-13 19:42:49 +00:00
|
|
|
}
|
|
|
|
|
2022-03-13 20:29:46 +00:00
|
|
|
#content {
|
|
|
|
max-width: 1024px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2022-04-18 14:43:07 +00:00
|
|
|
#header {
|
|
|
|
border-bottom: 1px solid #CCC;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background-color: #FFF;
|
|
|
|
background-color: #fef6f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-heading-group {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin-top: -6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.logo {
|
|
|
|
height: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1.page-heading {
|
|
|
|
color: #333;
|
|
|
|
color: #4d4a45;
|
|
|
|
font-size: 3rem;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
h2.page-subheading {
|
|
|
|
font-size: 1.5rem;
|
2022-03-13 20:29:46 +00:00
|
|
|
font-weight: normal;
|
2022-04-18 14:43:07 +00:00
|
|
|
margin: 0;
|
|
|
|
color: #666;
|
|
|
|
color: #77482d;
|
|
|
|
color: #644735;
|
2022-03-13 20:29:46 +00:00
|
|
|
}
|
2022-04-18 14:43:07 +00:00
|
|
|
|
2022-03-13 20:29:46 +00:00
|
|
|
h3 {
|
|
|
|
font-size: 1.6em;
|
|
|
|
font-weight: normal;
|
2022-03-13 21:43:04 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
p.group-description {
|
2022-04-18 14:43:07 +00:00
|
|
|
color: #666;
|
2022-03-13 21:43:04 +00:00
|
|
|
margin-top: 0;
|
2022-03-13 20:29:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a, a:hover, a:visited, a:active {
|
|
|
|
color: #3298dc
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
/* border: 1px solid #f9f9f9; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-width {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
table th {
|
|
|
|
padding: 6px 18px 6px 6px;
|
2022-04-18 14:43:07 +00:00
|
|
|
border: 1px solid #CCC;
|
2022-03-13 20:29:46 +00:00
|
|
|
text-align: left;
|
|
|
|
font-size: 0.8em;
|
|
|
|
white-space: nowrap;
|
2022-04-18 14:43:07 +00:00
|
|
|
color: #333;
|
2022-03-13 20:29:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table td {
|
|
|
|
padding: 6px 12px;
|
2022-03-14 00:17:29 +00:00
|
|
|
border: 1px solid #CCC;
|
2022-04-18 14:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table tbody:nth-of-type(odd) {
|
|
|
|
background-color: #f6f8fa;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tbody:nth-of-type(even) {
|
|
|
|
background-color: #FFF;
|
2022-03-13 18:58:19 +00:00
|
|
|
}
|