diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-05-03 08:26:24 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-05-03 08:26:24 +0530 |
commit | dc4f413032d2db8eadb4feaa511f3da6d2e75c6b (patch) | |
tree | 77240c70dd9f1907a384cfe429def889a3ec5739 /webui/style2.css | |
parent | a870f735bfa4008c3ca64b7f45c9f5b7531afd64 (diff) |
webui: Adding style sheet for buttons
Diffstat (limited to 'webui/style2.css')
-rw-r--r-- | webui/style2.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/webui/style2.css b/webui/style2.css new file mode 100644 index 0000000..f50e8f0 --- /dev/null +++ b/webui/style2.css @@ -0,0 +1,34 @@ +.buttonclick { + background-color: #383737; + border-radius: 4px; + border-style: none; + box-sizing: border-box; + color: #fff; + cursor: pointer; + display: inline-block; + font-family: "Farfetch Basis","Helvetica Neue",Arial,sans-serif; + font-size: 16px; + font-weight: 700; + line-height: 1.5; + margin: 0 auto; + margin-top: 10px; + margin-bottom: 10px; + max-width: 200px; + min-height: 44px; + min-width: 10px; + outline: none; + overflow: hidden; + padding: 9px 20px 8px; + position: relative; + text-align: center; + text-transform: none; + user-select: none; + -webkit-user-select: none; + touch-action: manipulation; + width: 100%; +} + +.buttonclick:hover, +.buttonclick:focus { + opacity: .75; +} |