summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authormms <git@sapka.me>2024-11-11 21:33:47 +0100
committermms <git@sapka.me>2024-11-11 21:33:47 +0100
commit71e48e43cefa0b2830b8f167f5ca5d0a6dad738e (patch)
treec41fdcfacadf5278576711a5459fbff25cb38f83 /themes
parent1436e6b4da3586f63220ba340e0e8b838385aaa4 (diff)
feat: book reviews
Diffstat (limited to 'themes')
-rw-r--r--themes/24-unification/layouts/_default/baseof.html57
1 files changed, 52 insertions, 5 deletions
diff --git a/themes/24-unification/layouts/_default/baseof.html b/themes/24-unification/layouts/_default/baseof.html
index f83bc80..0cee3b5 100644
--- a/themes/24-unification/layouts/_default/baseof.html
+++ b/themes/24-unification/layouts/_default/baseof.html
@@ -455,12 +455,59 @@ nav.horizontal {
background-color: var(--panel-color);
}
- @media only screen and (max-width: 800px) {
- main {
- padding: 10px;
- }
- }
+ aside.right-panel {
+ float: right;
+ padding-bottom: 0;
+ padding-right: 20px;
+ width: 200px;
+
+ .poster {
+ padding: 10px;
+ text-align: center;
+ width: 100%;
+ }
+
+ .rating {
+ border: var(--cool-border);
+ width: 100%;
+ text-align: center;
+ padding: 10px;
+ margin: 10px;
+ box-sizing: border-box;
+ }
+
+ ul, ol {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ box-sizing: border-box;
+ }
+ ol {
+ padding-top: 10px;
+ }
+
+ ul {
+ border: var(--cool-border);
+ margin: 10px;
+ padding: 10px;
+ width: 100%;
+ }
+
+ li {
+ padding-bottom: 5px;
+ }
+ }
+ @media only screen and (max-width: 500px) {
+ aside.right-panel {
+ display: none;
+ }
+ }
+ @media only screen and (max-width: 800px) {
+ main {
+ padding: 10px;
+ }
+ }
</style>
</head>