Start to consolidate source code for both browsers

This commit is contained in:
Dave Gallant
2023-04-09 16:01:01 -04:00
parent c099bddf0d
commit 6abdd3ebbe
13 changed files with 5565 additions and 21 deletions

63
css/popup.css Normal file
View File

@@ -0,0 +1,63 @@
body {
background-color: #282828;
color: #ebdbb2;
font-family: "Font Name", sans-serif;
font-size: 16px;
}
input[type="text"] {
background-color: #3c3836;
color: #ebdbb2;
border: none;
border-radius: 3px;
padding: 5px;
margin-bottom: 10px;
font-size: 16px;
}
button#save-button {
background-color: #1e7325;
color: #ebdbb2;
border: none;
border-radius: 3px;
padding: 5px 10px;
font-size: 16px;
}
button#save-button:hover {
background-color: #83a598;
}
button#save-button:active {
transform: translateY(1px);
box-shadow: none;
}
button#save-button:disabled {
background-color: #a89984;
color: #928374;
}
button#reset-button {
background-color: #458588;
color: #ebdbb2;
border: none;
border-radius: 3px;
padding: 5px 10px;
font-size: 16px;
}
button#reset-button:hover {
background-color: #83a598;
}
button#reset-button:active {
transform: translateY(1px);
box-shadow: none;
}
button#reset-button:disabled {
background-color: #a89984;
color: #928374;
}