Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
6 changes: 3 additions & 3 deletions Random Password Generator/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body {

.container {
max-width: 400px;
margin: 0 auto;
margin: 7rem auto;
text-align: center;
background-color: #fff;
padding: 20px;
Expand All @@ -22,9 +22,9 @@ h1 {
}

input[type="number"] {
width: 100%;
width: 95%;
padding: 10px;
margin-bottom: 10px;
margin-bottom: 15px;
font-size: 16px;
}

Expand Down
2 changes: 1 addition & 1 deletion Random Password Generator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="css/style.css">
<title>Strong Password Generator</title>
</head>
<body>
Expand Down
1 change: 1 addition & 0 deletions Tic Tac Toe/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ h1 {

.newGame {
padding: 10px 20px;
cursor: pointer;
color: #aa5fff;
background-color: #5b2da6;
border: none;
Expand Down