From d3b30d21f1fd735cede55e27bf465974a3d7897a Mon Sep 17 00:00:00 2001 From: Bablu Mehta Date: Sun, 15 Oct 2023 10:25:17 +0530 Subject: [PATCH 1/3] add curser style in style.css on newGame class --- .vscode/settings.json | 3 +++ Tic Tac Toe/css/style.css | 1 + 2 files changed, 4 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/Tic Tac Toe/css/style.css b/Tic Tac Toe/css/style.css index 1f77307..6a9a29c 100644 --- a/Tic Tac Toe/css/style.css +++ b/Tic Tac Toe/css/style.css @@ -54,6 +54,7 @@ h1 { .newGame { padding: 10px 20px; + cursor: pointer; color: #aa5fff; background-color: #5b2da6; border: none; From 546947187a629a0295cfec900ced00e0b1a40012 Mon Sep 17 00:00:00 2001 From: Bablu Mehta Date: Sun, 15 Oct 2023 10:30:52 +0530 Subject: [PATCH 2/3] add the correct css file path index page --- Random Password Generator/css/style.css | 1 + Random Password Generator/index.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Random Password Generator/css/style.css b/Random Password Generator/css/style.css index 35fa333..16fc624 100644 --- a/Random Password Generator/css/style.css +++ b/Random Password Generator/css/style.css @@ -4,6 +4,7 @@ body { } .container { + display: flex; max-width: 400px; margin: 0 auto; text-align: center; diff --git a/Random Password Generator/index.html b/Random Password Generator/index.html index 491acb0..f3ec335 100644 --- a/Random Password Generator/index.html +++ b/Random Password Generator/index.html @@ -3,7 +3,7 @@ - + Strong Password Generator From c308a2c239ff5a1c37f56f7c0a85a686cc35af53 Mon Sep 17 00:00:00 2001 From: Bablu Mehta Date: Sun, 15 Oct 2023 10:39:02 +0530 Subject: [PATCH 3/3] add some styling in input and margin in container class in RPG --- Random Password Generator/css/style.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Random Password Generator/css/style.css b/Random Password Generator/css/style.css index 16fc624..656190b 100644 --- a/Random Password Generator/css/style.css +++ b/Random Password Generator/css/style.css @@ -4,9 +4,8 @@ body { } .container { - display: flex; max-width: 400px; - margin: 0 auto; + margin: 7rem auto; text-align: center; background-color: #fff; padding: 20px; @@ -23,9 +22,9 @@ h1 { } input[type="number"] { - width: 100%; + width: 95%; padding: 10px; - margin-bottom: 10px; + margin-bottom: 15px; font-size: 16px; }