diff options
| author | tschicke-brown <tyler_schicke@brown.edu> | 2019-06-17 14:05:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-17 14:05:07 -0400 |
| commit | 62e7e21d6db96a9c62710c2bc6842705b79f5665 (patch) | |
| tree | 78beb9e04812294b1c71307b69b2a1d721e9a5fc /src/client/views/pdf/PDFMenu.scss | |
| parent | 589d2409cf00c3ff15eddbe88835a63a09785f2c (diff) | |
| parent | 37e1c3895af6666bbd4c253fb7af51495ec48706 (diff) | |
Merge pull request #160 from browngraphicslab/pdf_impl
PDF stuff!
Diffstat (limited to 'src/client/views/pdf/PDFMenu.scss')
| -rw-r--r-- | src/client/views/pdf/PDFMenu.scss | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/client/views/pdf/PDFMenu.scss b/src/client/views/pdf/PDFMenu.scss new file mode 100644 index 000000000..22868082a --- /dev/null +++ b/src/client/views/pdf/PDFMenu.scss @@ -0,0 +1,25 @@ +.pdfMenu-cont { + position: absolute; + z-index: 10000; + height: 35px; + background: #323232; + box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25); + border-radius: 0px 6px 6px 6px; + overflow: hidden; + display: flex; + + .pdfMenu-button { + background-color: transparent; + width: 35px; + height: 35px; + } + + .pdfMenu-button:hover { + background-color: #121212; + } + + .pdfMenu-dragger { + height: 100%; + transition: width .2s; + } +}
\ No newline at end of file |
