diff options
author | crupest <crupest@outlook.com> | 2020-10-21 16:28:59 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-10-21 16:28:59 +0800 |
commit | d7d09fc08a85fb8af4ef3bd3788961a01a26c515 (patch) | |
tree | cb96bc98d06810d5d3dcc4cba329bac50cf64609 /popup/popup.css | |
download | ProxyChanger-d7d09fc08a85fb8af4ef3bd3788961a01a26c515.tar.gz ProxyChanger-d7d09fc08a85fb8af4ef3bd3788961a01a26c515.tar.bz2 ProxyChanger-d7d09fc08a85fb8af4ef3bd3788961a01a26c515.zip |
Init.
Diffstat (limited to 'popup/popup.css')
-rw-r--r-- | popup/popup.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/popup/popup.css b/popup/popup.css new file mode 100644 index 0000000..97601c2 --- /dev/null +++ b/popup/popup.css @@ -0,0 +1,28 @@ +html,
+body {
+ width: 200px;
+}
+
+body {
+ margin: 0;
+}
+
+.button {
+ margin: 0;
+ padding: 4px 20px;
+ text-align: center;
+ font-size: 1.5em;
+ cursor: pointer;
+}
+
+.button:hover {
+ background: #97c4ff;
+}
+
+.selected {
+ background: #4294ff;
+}
+
+.selected:hover {
+ background: #4294ff;
+}
|