diff options
| author | Sophie Zhang <sophie_zhang@brown.edu> | 2023-07-27 13:23:42 -0400 |
|---|---|---|
| committer | Sophie Zhang <sophie_zhang@brown.edu> | 2023-07-27 13:23:42 -0400 |
| commit | fec79d2b5b8feb361e489c9ee41ee720507d0806 (patch) | |
| tree | fcb4378efe4fda3e05322561f25641c57d1f19d4 /src/client/views/pdf/GPTPopup/GPTPopup.scss | |
| parent | 0ca5a86e6f9ff85a32de109105b241d613aae326 (diff) | |
changes
Diffstat (limited to 'src/client/views/pdf/GPTPopup/GPTPopup.scss')
| -rw-r--r-- | src/client/views/pdf/GPTPopup/GPTPopup.scss | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/client/views/pdf/GPTPopup/GPTPopup.scss b/src/client/views/pdf/GPTPopup/GPTPopup.scss index 2f0ff83e2..478b7d4ba 100644 --- a/src/client/views/pdf/GPTPopup/GPTPopup.scss +++ b/src/client/views/pdf/GPTPopup/GPTPopup.scss @@ -24,6 +24,7 @@ $highlightedText: #82e0ff; .summary-heading { display: flex; + justify-content: space-between; align-items: center; border-bottom: 1px solid $greyborder; padding-bottom: 5px; @@ -110,6 +111,57 @@ $highlightedText: #82e0ff; } } +.image-content-wrapper { + display: flex; + flex-direction: column; + align-items: flex-start; + gap: 8px; + padding-bottom: 16px; + + .img-wrapper { + position: relative; + cursor: pointer; + + .img-container { + position: relative; + + img { + position: relative; + } + } + + .img-container::after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + opacity: 0; + transition: opacity 0.3s ease; + } + + .btn-container { + position: absolute; + right: 8px; + bottom: 8px; + opacity: 0; + transition: opacity 0.3s ease; + } + + &:hover { + .img-container::after { + opacity: 1; + } + + .btn-container { + opacity: 1; + } + } + } +} + // Typist CSS .Typist .Cursor { display: inline-block; |
