Add editorconfig, remove unused assets
This commit is contained in:
parent
98bad33895
commit
d719a3af9a
10 changed files with 166 additions and 687 deletions
176
css/wah.css
176
css/wah.css
|
|
@ -1,44 +1,44 @@
|
|||
:root {
|
||||
--background: #f2efbd;
|
||||
--background-dim: #d2d0a4;
|
||||
--foreground: #2a271c;
|
||||
--border-color: #f27405;
|
||||
--border: var(--border-color) 2px solid;
|
||||
--shadow-color: hsla(11, 96%, 43%, 0.4);
|
||||
--shadow: drop-shadow(8px 8px var(--shadow-color));
|
||||
--shadow-small: drop-shadow(3px 3px var(--shadow-color));
|
||||
--links: hsl(183, 93%, 27%);
|
||||
--links-hover: hsl(183, 93%, 15%);
|
||||
--table-header: hsla(11, 96%, 43%, 0.2);
|
||||
--background: #f2efbd;
|
||||
--background-dim: #d2d0a4;
|
||||
--foreground: #2a271c;
|
||||
--border-color: #f27405;
|
||||
--border: var(--border-color) 2px solid;
|
||||
--shadow-color: hsla(11, 96%, 43%, 0.4);
|
||||
--shadow: drop-shadow(8px 8px var(--shadow-color));
|
||||
--shadow-small: drop-shadow(3px 3px var(--shadow-color));
|
||||
--links: hsl(183, 93%, 27%);
|
||||
--links-hover: hsl(183, 93%, 15%);
|
||||
--table-header: hsla(11, 96%, 43%, 0.2);
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
color-scheme: light;
|
||||
height: 100%;
|
||||
color-scheme: light;
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--foreground);
|
||||
min-height: 100%;
|
||||
background-color: hsla(0, 0%, 0%, 0);
|
||||
padding: 10px;
|
||||
font-family: serif;
|
||||
color: var(--foreground);
|
||||
min-height: 100%;
|
||||
background-color: hsla(0, 0%, 0%, 0);
|
||||
padding: 10px;
|
||||
font-family: serif;
|
||||
}
|
||||
|
||||
/*noinspection CssUnknownTarget*/
|
||||
body::before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-image: url("/images/background.jpg");
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
opacity: 0.8;
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
overflow: hidden;
|
||||
content: "";
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-image: url("/images/background.jpg");
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
opacity: 0.8;
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
h1,
|
||||
|
|
@ -47,7 +47,7 @@ h3,
|
|||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
p,
|
||||
|
|
@ -56,136 +56,136 @@ ol,
|
|||
dl,
|
||||
menu,
|
||||
dir {
|
||||
margin: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
border-top: var(--border);
|
||||
border: none;
|
||||
border-top: var(--border);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--links);
|
||||
text-decoration: underline dotted;
|
||||
color: var(--links);
|
||||
text-decoration: underline dotted;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--links-hover);
|
||||
text-decoration: underline solid;
|
||||
color: var(--links-hover);
|
||||
text-decoration: underline solid;
|
||||
}
|
||||
|
||||
div.page-container {
|
||||
/* width: 1000px; */
|
||||
width: 800px;
|
||||
margin: 5px auto;
|
||||
/* width: 1000px; */
|
||||
width: 800px;
|
||||
margin: 5px auto;
|
||||
}
|
||||
|
||||
div.page-container > div {
|
||||
background-color: var(--background);
|
||||
filter: var(--shadow);
|
||||
padding: 10px;
|
||||
border: var(--border);
|
||||
margin-bottom: 20px;
|
||||
/* temporary */
|
||||
/* height: 600px; */
|
||||
background-color: var(--background);
|
||||
filter: var(--shadow);
|
||||
padding: 10px;
|
||||
border: var(--border);
|
||||
margin-bottom: 20px;
|
||||
/* temporary */
|
||||
/* height: 600px; */
|
||||
}
|
||||
|
||||
div.page-container > div:last-child {
|
||||
margin-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
div#header {
|
||||
display: grid;
|
||||
grid-template-columns: 66px 1fr;
|
||||
grid-template-rows: 1fr;
|
||||
grid-column-gap: 15px;
|
||||
grid-row-gap: 0px;
|
||||
display: grid;
|
||||
grid-template-columns: 66px 1fr;
|
||||
grid-template-rows: 1fr;
|
||||
grid-column-gap: 15px;
|
||||
grid-row-gap: 0px;
|
||||
}
|
||||
|
||||
div#header img {
|
||||
filter: drop-shadow(2px 2px hsl(0, 0%, 66%));
|
||||
margin-right: 10px;
|
||||
image-rendering: pixelated;
|
||||
filter: drop-shadow(2px 2px hsl(0, 0%, 66%));
|
||||
margin-right: 10px;
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
div#header h1 {
|
||||
margin: 0;
|
||||
font-style: italic;
|
||||
margin: 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
div#header h1,
|
||||
div#header p {
|
||||
display: inline;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
div#content {
|
||||
position: relative;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div#content::after {
|
||||
display: block;
|
||||
content: "";
|
||||
clear: both;
|
||||
display: block;
|
||||
content: "";
|
||||
clear: both;
|
||||
}
|
||||
|
||||
div#footer {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
grid-template-rows: 1fr;
|
||||
grid-column-gap: 0;
|
||||
grid-row-gap: 0;
|
||||
align-items: center;
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
grid-template-rows: 1fr;
|
||||
grid-column-gap: 0;
|
||||
grid-row-gap: 0;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
div#footer div:last-child {
|
||||
text-align: right;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
table.almanac td:nth-child(odd) {
|
||||
font-weight: bold;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
table.almanac td {
|
||||
padding: 0 10px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
table.almanac td:nth-child(even) {
|
||||
padding: 0 15px;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
table.almanac {
|
||||
min-width: 100%;
|
||||
min-width: 100%;
|
||||
}
|
||||
|
||||
table.mx-datatable {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
border: var(--border);
|
||||
filter: var(--shadow-small);
|
||||
background-color: var(--background);
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
border: var(--border);
|
||||
filter: var(--shadow-small);
|
||||
background-color: var(--background);
|
||||
}
|
||||
|
||||
table.mx-datatable th {
|
||||
text-align: left;
|
||||
background-color: var(--background-dim);
|
||||
border-top: var(--border);
|
||||
text-align: left;
|
||||
background-color: var(--background-dim);
|
||||
border-top: var(--border);
|
||||
}
|
||||
|
||||
table.mx-datatable tr td,
|
||||
table.mx-datatable tr th {
|
||||
padding: 5px 10px 5px 5px;
|
||||
padding: 5px 10px 5px 5px;
|
||||
}
|
||||
table.mx-datatable tr td:nth-child(2) {
|
||||
padding-right: 40px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
table.current-conditions tr td:nth-child(odd) {
|
||||
font-weight: bold;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
table.current-conditions tr:last-child td:nth-child(3) {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue