add movies and update the script
Signed-off-by: Bogomil Vasilev <smirky@smirky.net>
This commit is contained in:
@@ -28,7 +28,7 @@ class MovieList:
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>My Movie List</title>
|
||||
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css">
|
||||
<script src="../jquery-3.1.0.min.js"></script>
|
||||
<script src="../jquery-3.7.1.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script>
|
||||
<style>
|
||||
* {
|
||||
@@ -460,6 +460,9 @@ Woman at War (2018) [DONE]
|
||||
Good Fortune (2025) [DONE]
|
||||
The Age of Disclosure (2025) [*]
|
||||
Evil Does Not Exist (2023) [DONE]
|
||||
I.S.S. (2023) [*]
|
||||
Black Cat, White Cat (1998) [DONE]
|
||||
Nuremberg (2025) [DONE]
|
||||
Poor Things (2023) [*]
|
||||
The French Dispatch (2021) [DONE]
|
||||
Sentimental Value (2025) [DONE]
|
||||
28 Years Later: The Bone Temple (2026) [*]
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
(function() {
|
||||
var si = document.querySelector(".scroll-indicator");
|
||||
var onscroll = function() {
|
||||
var max = document.body.scrollHeight - window.innerHeight;
|
||||
si.style.display = "block";
|
||||
si.style.width = (window.pageYOffset / max * 100) + "%";
|
||||
};
|
||||
|
||||
window.onscroll = onscroll;
|
||||
onscroll();
|
||||
})();
|
||||
@@ -1,41 +0,0 @@
|
||||
.scroll-indicator {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 50%;
|
||||
height: 10px;
|
||||
background: #C33;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #4CAF50;
|
||||
cursor:pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 1px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
font-family: arial, sans-serif;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #3D3635;
|
||||
font-family: arial, sans-serif;
|
||||
color: white;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
td {
|
||||
color: #ffffff;
|
||||
background-color: #3D3635;
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
background-color: #3D3635;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
}
|
||||
Reference in New Issue
Block a user