aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/GPTPopup.scss
diff options
context:
space:
mode:
authorSophie Zhang <sophie_zhang@brown.edu>2023-02-23 13:00:18 -0500
committerSophie Zhang <sophie_zhang@brown.edu>2023-02-23 13:00:18 -0500
commitfb4304c0e02aef4a0cedabfdc23ef39c4ca0eca8 (patch)
treebe1f4b138f8d36903f23831bb537292a5c7b62a6 /src/client/views/pdf/GPTPopup.scss
parent4475adee0f13d9ec407aff6a47094c7ce808af0c (diff)
text
Diffstat (limited to 'src/client/views/pdf/GPTPopup.scss')
-rw-r--r--src/client/views/pdf/GPTPopup.scss45
1 files changed, 44 insertions, 1 deletions
diff --git a/src/client/views/pdf/GPTPopup.scss b/src/client/views/pdf/GPTPopup.scss
index 6f2e39b7e..9605cfd07 100644
--- a/src/client/views/pdf/GPTPopup.scss
+++ b/src/client/views/pdf/GPTPopup.scss
@@ -1,9 +1,52 @@
+$textgrey: #707070;
+$bordergrey: #d3d3d3;
+
.summary-box {
background-color: #ffffff;
+ box-shadow: 0 2px 5px #7474748d;
+ color: $textgrey;
position: absolute;
- top: 0;
+ bottom: 40px;
width: 200px;
height: 200px;
+ border-radius: 15px;
padding: 20px;
overflow: auto;
+
+ .summary-heading {
+ display: flex;
+ align-items: center;
+ border-bottom: 1px solid $bordergrey;
+ margin-bottom: 10px;
+ padding-bottom: 5px;
+
+ .summary-text {
+ font-size: 12px;
+ font-weight: 500;
+ letter-spacing: 1px;
+ margin: 0;
+ padding-right: 10px;
+ }
+ }
+}
+
+// Typist CSS
+.Typist .Cursor {
+ display: inline-block;
+}
+.Typist .Cursor--blinking {
+ opacity: 1;
+ animation: blink 1s linear infinite;
+}
+
+@keyframes blink {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
}