diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-15 00:17:07 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-16 01:20:38 +0100 |
| commit | ae96ef6432d87a2c186dec0d2d902f63ed919e84 (patch) | |
| tree | a7e3083fadce6a1e6bace7688b6dfbacc91da4e5 /web/common.css | |
| parent | f0f3bf7395c9b0b3c1bb6edbd3e4fe12290da8e3 (diff) | |
Add playlists web interface.
Diffstat (limited to 'web/common.css')
| -rw-r--r-- | web/common.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/web/common.css b/web/common.css new file mode 100644 index 000000000..d4c5f7d0d --- /dev/null +++ b/web/common.css @@ -0,0 +1,33 @@ + +button { + border: 1px solid rgba(27, 31, 35, 0.15); + border-radius: 6px; + color: #24292E; + display: inline-block; + line-height: 20px; + padding: 6px 16px; + vertical-align: middle; + white-space: nowrap; + word-wrap: break-word; +} + +button:hover { + background-color: #F3F4F6; + text-decoration: none; + transition-duration: 0.1s; +} + +button:active { + background-color: #EDEFF2; + box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset; + transition: none 0s; +} + +button:focus { + outline: 1px transparent; +} + +button:before { + display: none; +} + |
