aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Johnson <nicholasjohnson@posteo.org>2021-06-20 00:00:00 +0000
committerNicholas Johnson <nicholasjohnson@posteo.org>2021-06-20 00:00:00 +0000
commit348b792dbe08ea904df0ca218f53201c303194c1 (patch)
tree8f637c750d71bd12a61a771ab08a520ea97a3777
parent659f532eba94af1c77eb5961fc6706aa2eca3723 (diff)
downloadbrowser-extension-348b792dbe08ea904df0ca218f53201c303194c1.tar.gz
browser-extension-348b792dbe08ea904df0ca218f53201c303194c1.zip
add button styling
-rw-r--r--html/options.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/html/options.html b/html/options.html
index cbbadec..eda52b8 100644
--- a/html/options.html
+++ b/html/options.html
@@ -93,6 +93,23 @@
input[type="radio"]:not(:checked)+.import_window_content {
display: none;
}
+
+ /* buttons */
+ button {
+ background-color: #4CAF50;
+ border: none;
+ border-radius: 8px;
+ color: white;
+ padding: 6px 12px;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ margin: 2px 0px;
+ }
+
+ button:hover {
+ box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
+ }
</style>
</head>
<body>