cleanup and setup.py
parent
330cf88089
commit
2f7d25bbb7
@ -1,245 +0,0 @@
|
|||||||
:root {
|
|
||||||
--bg: dodgerblue;
|
|
||||||
--color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
html,
|
|
||||||
body {
|
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
|
||||||
line-height: 1.6;
|
|
||||||
color: var(--color);
|
|
||||||
background-color: var(--bg);
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: currentColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
.version {
|
|
||||||
font-size: 18px;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
|
||||||
color: currentColor;
|
|
||||||
border: 1px solid currentColor;
|
|
||||||
outline: none;
|
|
||||||
padding: 0.4em;
|
|
||||||
margin: 0;
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
input.overview {
|
|
||||||
width: 60ch;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
display: inline-block;
|
|
||||||
background: none;
|
|
||||||
border: 1px solid currentColor;
|
|
||||||
border-radius: 50%;
|
|
||||||
color: currentColor;
|
|
||||||
line-height: 1rem;
|
|
||||||
text-align: center;
|
|
||||||
padding: 0.4em;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.add {
|
|
||||||
display: inline-block;
|
|
||||||
width: 2em;
|
|
||||||
height: 2em;
|
|
||||||
font-size: 1em;
|
|
||||||
margin-left: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.submit {
|
|
||||||
margin-left: 12px;
|
|
||||||
|
|
||||||
padding: 0.6em;
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
button:hover {
|
|
||||||
background-color: var(--color);
|
|
||||||
color: var(--bg);
|
|
||||||
}
|
|
||||||
|
|
||||||
*:not(h2) + input {
|
|
||||||
margin-left: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-form {
|
|
||||||
display: inline-block;
|
|
||||||
padding-left: 12px;
|
|
||||||
border-left: 1px solid currentColor;
|
|
||||||
margin-top: 12px;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-form h2 {
|
|
||||||
margin: 0;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
table a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.header {
|
|
||||||
position: sticky;
|
|
||||||
top: 0;
|
|
||||||
background-color: var(--bg);
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
th {
|
|
||||||
text-align: left;
|
|
||||||
padding: 24px 0;
|
|
||||||
border-bottom: 1px solid currentColor;
|
|
||||||
text-transform: capitalize;
|
|
||||||
font-size: 21px;
|
|
||||||
user-select: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
padding: 12px;
|
|
||||||
border-bottom: 1px solid currentColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.title {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.overview,
|
|
||||||
th.overview {
|
|
||||||
flex-grow: 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.overview p {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr {
|
|
||||||
position: relative;
|
|
||||||
transition: transform 0.1s ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr:hover:not(:first-of-type) {
|
|
||||||
transition: transform 0.2s ease-out;
|
|
||||||
transform: translateX(10px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.stretched:after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.loading {
|
|
||||||
font-size: 28px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grow {
|
|
||||||
animation: grow 5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter {
|
|
||||||
padding-left: 12px;
|
|
||||||
border-left: 1px solid currentColor;
|
|
||||||
margin-top: 32px;
|
|
||||||
margin-bottom: 48px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter h2 {
|
|
||||||
font-weight: normal;
|
|
||||||
margin: 0;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter ul {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
list-style: none;
|
|
||||||
gap: 8px;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter ul li,
|
|
||||||
.category {
|
|
||||||
display: inline-block;
|
|
||||||
border: 1px solid currentColor;
|
|
||||||
padding: 0 4px;
|
|
||||||
user-select: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter .active {
|
|
||||||
background-color: var(--color);
|
|
||||||
color: var(--bg);
|
|
||||||
}
|
|
||||||
|
|
||||||
tr {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
th,
|
|
||||||
td {
|
|
||||||
padding: 12px 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
th:first-of-type,
|
|
||||||
td:first-child {
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
th:last-of-type,
|
|
||||||
td:last-child {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
th.date,
|
|
||||||
td.date {
|
|
||||||
flex-grow: 0.4;
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr > * {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.categories {
|
|
||||||
align-content: flex-start;
|
|
||||||
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
gap: 8px;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.categories .category {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes grow {
|
|
||||||
from {
|
|
||||||
transform: scale(100%);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: scale(0, 1000%) rotate(1turn);
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 722 KiB After Width: | Height: | Size: 713 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='Padliography',
|
||||||
|
version='2.0.0',
|
||||||
|
packages=find_packages(),
|
||||||
|
include_package_data=True,
|
||||||
|
zip_safe=False,
|
||||||
|
install_requires=[
|
||||||
|
'flask',
|
||||||
|
'flask_cors',
|
||||||
|
'bs4',
|
||||||
|
'mwclient',
|
||||||
|
'python-dotenv',
|
||||||
|
],
|
||||||
|
)
|
@ -1,124 +1,245 @@
|
|||||||
body {
|
:root {
|
||||||
font-size: 1.5rem;
|
--bg: dodgerblue;
|
||||||
margin: 0;
|
--color: white;
|
||||||
background: rgb(255, 244, 235);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.contents {
|
* {
|
||||||
margin: 32px;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
html,
|
||||||
color: #ecab72;
|
body {
|
||||||
margin: 32px;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
text-align: center;
|
line-height: 1.6;
|
||||||
|
color: var(--color);
|
||||||
|
background-color: var(--bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: currentColor;
|
color: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.stretched-link::after {
|
.version {
|
||||||
content: "";
|
font-size: 18px;
|
||||||
position: absolute;
|
font-weight: normal;
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FILTERS */
|
input {
|
||||||
|
color: currentColor;
|
||||||
.tag {
|
border: 1px solid currentColor;
|
||||||
|
outline: none;
|
||||||
|
padding: 0.4em;
|
||||||
|
margin: 0;
|
||||||
background: none;
|
background: none;
|
||||||
font-size: 20px;
|
}
|
||||||
|
|
||||||
|
input.overview {
|
||||||
|
width: 60ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
background: none;
|
||||||
border: 1px solid currentColor;
|
border: 1px solid currentColor;
|
||||||
padding: 0 0.5em;
|
border-radius: 50%;
|
||||||
border-radius: 1em;
|
color: currentColor;
|
||||||
margin: 4px;
|
line-height: 1rem;
|
||||||
text-transform: capitalize;
|
text-align: center;
|
||||||
user-select: none;
|
padding: 0.4em;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
transform: translateY(0);
|
button.add {
|
||||||
transition: transform 0.4s ease-in;
|
display: inline-block;
|
||||||
|
width: 2em;
|
||||||
|
height: 2em;
|
||||||
|
font-size: 1em;
|
||||||
|
margin-left: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag.active {
|
button.submit {
|
||||||
background-color: white;
|
margin-left: 12px;
|
||||||
|
|
||||||
|
padding: 0.6em;
|
||||||
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag.active.all {
|
button:hover {
|
||||||
background: none;
|
background-color: var(--color);
|
||||||
|
color: var(--bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.filters .tag:focus,
|
*:not(h2) + input {
|
||||||
.filters .tag:hover {
|
margin-left: 12px;
|
||||||
transform: translateY(-4px);
|
|
||||||
transition: transform 0.2s ease-out;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
.app-form {
|
||||||
padding: 0;
|
display: inline-block;
|
||||||
|
padding-left: 12px;
|
||||||
|
border-left: 1px solid currentColor;
|
||||||
|
margin-top: 12px;
|
||||||
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TABLE */
|
.app-form h2 {
|
||||||
|
margin: 0;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
table a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.header {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
background-color: var(--bg);
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
text-align: left;
|
||||||
|
padding: 24px 0;
|
||||||
|
border-bottom: 1px solid currentColor;
|
||||||
|
text-transform: capitalize;
|
||||||
|
font-size: 21px;
|
||||||
|
user-select: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
padding: 12px;
|
||||||
|
border-bottom: 1px solid currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.title {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.overview,
|
||||||
|
th.overview {
|
||||||
|
flex-grow: 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.overview p {
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr {
|
tr {
|
||||||
/* display: none; */
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
transition: transform 0.1s ease-in;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:hover:not(:first-of-type) {
|
||||||
|
transition: transform 0.2s ease-out;
|
||||||
|
transform: translateX(10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:nth-child(even) {
|
.stretched:after {
|
||||||
background-color: rgb(251, 237, 225);
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.active {
|
.loading {
|
||||||
display: table-row;
|
font-size: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:hover {
|
.grow {
|
||||||
background-color: rgb(250, 232, 217);
|
animation: grow 5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr .tag {
|
.filter {
|
||||||
cursor: default;
|
padding-left: 12px;
|
||||||
|
border-left: 1px solid currentColor;
|
||||||
|
margin-top: 32px;
|
||||||
|
margin-bottom: 48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.header {
|
.filter h2 {
|
||||||
display: table-row;
|
font-weight: normal;
|
||||||
text-align: left;
|
margin: 0;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter ul {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
list-style: none;
|
||||||
|
gap: 8px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.categories {
|
.filter ul li,
|
||||||
width: 20%;
|
.category {
|
||||||
|
display: inline-block;
|
||||||
|
border: 1px solid currentColor;
|
||||||
|
padding: 0 4px;
|
||||||
|
user-select: none;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.overview {
|
.filter .active {
|
||||||
font-style: italic;
|
background-color: var(--color);
|
||||||
width: 40%;
|
color: var(--bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.date {
|
tr {
|
||||||
width: 14ch;
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
th,
|
||||||
margin: 32px;
|
td {
|
||||||
display: inline-block;
|
padding: 12px 12px;
|
||||||
padding: 2rem;
|
|
||||||
background-color: rgb(250, 232, 217);
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
form h2 {
|
th:first-of-type,
|
||||||
margin: 0;
|
td:first-child {
|
||||||
margin-bottom: 16px;
|
padding-left: 0;
|
||||||
font-size: 28px;
|
}
|
||||||
|
|
||||||
|
th:last-of-type,
|
||||||
|
td:last-child {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
th.date,
|
||||||
|
td.date {
|
||||||
|
flex-grow: 0.4;
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr > * {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.categories {
|
||||||
|
align-content: flex-start;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 8px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.categories .category {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes grow {
|
||||||
|
from {
|
||||||
|
transform: scale(100%);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: scale(0, 1000%) rotate(1turn);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue