Skip to content

Commit

Permalink
Still fixing pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Lofranlof committed Dec 4, 2023
1 parent 1df36ba commit 335ceb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CSS/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ ul.todoList li::before{
position: absolute;
height: 28px;
width: 28px;
background-image: url(/IMG/checkbox_uncheked.png);
background-image: url(../IMG/checkbox_uncheked.png);
background-size: cover;
background-position: center;
top: 8px;
Expand All @@ -433,7 +433,7 @@ ul.todoList li.checked{
text-decoration: line-through;
}
ul.todoList li.checked::before {
background-image: url(/IMG/checkbox_cheked.png);
background-image: url(../IMG/checkbox_cheked.png);
}
ul.todoList li span {
position: absolute;
Expand Down Expand Up @@ -462,7 +462,7 @@ ul.todoList li span:hover {
border-radius: 50%;
width: 180px;
height: 180px;
background: url('/IMG/ronnie.gif') no-repeat center center;
background: url(../IMG/ronnie.gif) no-repeat center center;
}

.main_section {
Expand Down
2 changes: 1 addition & 1 deletion JS/records.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ document.addEventListener('DOMContentLoaded', async function () {
preloaderContainer.style.display = 'flex';
const response = await fetch(fetchString);

await new Promise(resolve => setTimeout(resolve, 4000));
await new Promise(resolve => setTimeout(resolve, 2000));

if (response.ok) {
const users = await response.json();
Expand Down
2 changes: 1 addition & 1 deletion JS/todoList.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const inputBox = document.getElementById("input-box");
const listContainer = document.getElementById("list-container");

function playAlertSound() {
let audio = new Audio('audio/alert.mp3');
let audio = new Audio("AUDIO/alert.mp3");
audio.play();
}
function addTask() {
Expand Down

0 comments on commit 335ceb0

Please sign in to comment.