25 lines
No EOL
376 B
HTML
25 lines
No EOL
376 B
HTML
{% extends "page.html" %}
|
|
{% block head%}
|
|
{{ super() }}
|
|
|
|
<style>
|
|
/************************************************/
|
|
/* This is the stuff for my reading library */
|
|
|
|
.wip {
|
|
width: 150px;
|
|
opacity: 75%;
|
|
border: 5px solid #d11586
|
|
}
|
|
.read {
|
|
width: 150px;
|
|
}
|
|
.dnf {
|
|
width: 150px;
|
|
opacity: 75%;
|
|
filter: grayscale(100%);
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock head%} |