diff options
author | Logan Hunt <loganthebean222@gmail.com> | 2017-07-11 21:14:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-11 21:14:14 -0700 |
commit | 2d108095a2cec042375dbb935b5261e2339e4fcc (patch) | |
tree | 969f4e7f3eba70e5e7e9699750bc3db7c4af880f /dropdown.css | |
parent | cd928ffaae6ff879df180600b337edeb04e2ad62 (diff) | |
download | old-src-backup-2d108095a2cec042375dbb935b5261e2339e4fcc.tar.gz old-src-backup-2d108095a2cec042375dbb935b5261e2339e4fcc.zip |
Add files via upload
Diffstat (limited to 'dropdown.css')
-rw-r--r-- | dropdown.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dropdown.css b/dropdown.css new file mode 100644 index 0000000..7b947de --- /dev/null +++ b/dropdown.css @@ -0,0 +1,18 @@ +.dropdown { + position: relative; + display: inline-block; +} + +.dropdown-content { + display: none; + position: absolute; + background-color: rgba(255, 0, 0,.7); + min-width: 160px; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + padding: 12px 16px; + z-index: 1; +} + +.dropdown:hover .dropdown-content { + display: block; +} |