initial commit

Create framework for Chrome extension and global button styles
This commit is contained in:
2021-09-01 06:50:18 -04:00
commit f62aae3da5
4 changed files with 40 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
Dark Gray: #544343
Light Gray: #999799
Blue: #086788
Green: #9FCC2E
*/
input[type="button"] {
background-color: #696969;
color: white;
border-radius: 3px;
padding: 1.5px 5px;
text-decoration: none;
cursor: pointer;
border: none;
transition: background-color 200ms ease-in-out;
}
input[type="button"]:hover {
background-color: #535353;
}
input[type="button"]:disabled {
opacity: 0.3;
}