2024-02-28 21:18:37 +01:00
|
|
|
.content {
|
2024-02-29 16:31:46 +01:00
|
|
|
color: var(--color-primary);
|
2024-02-28 21:18:37 +01:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2024-02-29 16:31:46 +01:00
|
|
|
margin: auto;
|
2024-02-28 21:18:37 +01:00
|
|
|
text-align: left;
|
|
|
|
|
width: 57.69em;
|
|
|
|
|
min-width: 750px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-29 16:31:46 +01:00
|
|
|
.debug {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.debug select {
|
|
|
|
|
margin: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-28 21:18:37 +01:00
|
|
|
.logo img {
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
margin: 0px auto;
|
2024-02-29 16:31:46 +01:00
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box {
|
|
|
|
|
background: var(--text-background);
|
|
|
|
|
color: var(--text-black);
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boxBar {
|
|
|
|
|
background: var(--color-primary);
|
|
|
|
|
color: var(--text-primary);
|
|
|
|
|
padding-left: 0.5em;
|
|
|
|
|
line-height: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boxBar h2 {
|
|
|
|
|
font-size: 131%;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boxContent {
|
|
|
|
|
line-height: 1.5em;
|
|
|
|
|
font-size: 93%;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
padding-top: 0.25em;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boxContent a, .boxContent a:visited{
|
|
|
|
|
color: var(--text-link);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchBar {
|
2024-02-29 21:28:57 +01:00
|
|
|
display: flex;
|
2024-02-29 16:31:46 +01:00
|
|
|
text-align: center;
|
2024-02-29 21:28:57 +01:00
|
|
|
justify-content: center;
|
2024-02-29 16:31:46 +01:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-29 21:28:57 +01:00
|
|
|
.searchBar input {
|
2024-02-29 16:31:46 +01:00
|
|
|
font-size: 18px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
appearance: none;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
border: 1px solid rgb(170, 170, 170);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchBar input {
|
|
|
|
|
width: 400px;
|
|
|
|
|
padding: 3px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchBar button {
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
padding: 3px 10px;
|
2024-02-29 21:28:57 +01:00
|
|
|
display: inline-block;
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
font-size: 14px;
|
2024-02-28 21:18:37 +01:00
|
|
|
}
|
|
|
|
|
|
2024-02-29 21:28:57 +01:00
|
|
|
|
2024-02-28 21:18:37 +01:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.content {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
2024-02-27 17:58:08 +01:00
|
|
|
}
|