diff options
author | Nicholas Johnson <nicholasjohnson@posteo.org> | 2021-06-20 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nicholasjohnson@posteo.org> | 2021-06-20 00:00:00 +0000 |
commit | 348b792dbe08ea904df0ca218f53201c303194c1 (patch) | |
tree | 8f637c750d71bd12a61a771ab08a520ea97a3777 /html | |
parent | 659f532eba94af1c77eb5961fc6706aa2eca3723 (diff) | |
download | browser-extension-348b792dbe08ea904df0ca218f53201c303194c1.tar.gz browser-extension-348b792dbe08ea904df0ca218f53201c303194c1.zip |
add button styling
Diffstat (limited to 'html')
-rw-r--r-- | html/options.html | 17 |
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> |