Skip to content

Commit

Permalink
Some UI Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
wasi-master committed Aug 14, 2024
1 parent d89e451 commit 1a75fe5
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,21 @@
}

input[type="submit"] {
padding: 10px;
background-color: #6a0dad;
padding: 16px;
background-color: #a327f0;
color: #fff;
border: none;
border-radius: 5px;
width: 100%;
text-transform: uppercase;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
background-color: #4e0875;
background-color: #821fc0;
}

/* Toggle switch styles */
Expand Down Expand Up @@ -95,7 +96,7 @@
}

.dark-mode-toggle input:checked+label {
background: #6a0dad;
background: #7359f8;
}

.dark-mode-toggle input:checked+label:after {
Expand All @@ -116,7 +117,7 @@

/* Dark mode styles */
body.dark-mode {
background-color: #333;
background-color: #191a21;
color: #FFF;
}

Expand All @@ -131,11 +132,11 @@
}

body.dark-mode input[type="submit"] {
background-color: #9b30ff;
background-color: #7359f8;
}

body.dark-mode input[type="submit"]:hover {
background-color: #7a1bb5;
background-color: #5c47c6;
}
</style>
</head>
Expand Down

0 comments on commit 1a75fe5

Please sign in to comment.