Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanc77 committed Feb 19, 2024
1 parent d3f54be commit 618babf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion 15 basic project/4. Netflix_Mobile_navigation/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ close_btn.addEventListener('click', () => {
})


// for dark theme and lite theme

const container = document.querySelector('.container');
const modeToggleBtn = document.getElementById('mode-toggle');
const iconLight = document.getElementById('icon-light');
Expand Down
8 changes: 1 addition & 7 deletions 15 basic project/7. Digital Clock/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@ setInterval(function(){
let date = new Date()
time.innerHTML = date.toLocaleTimeString(undefined, { hour12: true });

},1000)//by defalt this is one second





//console.log(Math.random())
},1000)

const randomColor = function(){
const hex = '0123456789ABCDEF'
Expand Down
6 changes: 3 additions & 3 deletions Guess the number/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ html {
}

.lastResult {
color: rgb(8, 248, 248);
color: rgb(29, 246, 246);
font-weight: 900;
padding: 7px;
}
Expand All @@ -24,7 +24,7 @@ html {

button {
background-color: #141414;
color: #fff;
color: #f6efef;
width: 500px;
height: 50px;
border-radius: 25px;
Expand All @@ -47,7 +47,7 @@ html {
}

#guessField {
color: #000;
color: #121111;
width: 250px;
height: 50px;
font-size: 30px;
Expand Down

0 comments on commit 618babf

Please sign in to comment.