diff options
| author | Lionel Han <47760119+IGoByJoe@users.noreply.github.com> | 2020-06-27 21:46:30 -0700 |
|---|---|---|
| committer | Lionel Han <47760119+IGoByJoe@users.noreply.github.com> | 2020-06-27 21:46:30 -0700 |
| commit | db75d68e51b1909b15737c7eff123a5509f1a51f (patch) | |
| tree | 661fb63f84d47097c044c460c952a11ffeadac63 /src/client/views/nodes/DocumentLinksButton.scss | |
| parent | ecd3c3b0a713a594d4d0f4295bad017af1ba47ba (diff) | |
| parent | a10d39c3174846406db8097af77568a52e6eb4c0 (diff) | |
Merge branch 'mobile_revision_direct' of https://github.com/browngraphicslab/Dash-Web into mobile_revision_direct
Diffstat (limited to 'src/client/views/nodes/DocumentLinksButton.scss')
| -rw-r--r-- | src/client/views/nodes/DocumentLinksButton.scss | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentLinksButton.scss b/src/client/views/nodes/DocumentLinksButton.scss new file mode 100644 index 000000000..484f8c469 --- /dev/null +++ b/src/client/views/nodes/DocumentLinksButton.scss @@ -0,0 +1,38 @@ +@import "../globalCssVariables.scss"; + + +.documentLinksButton, +.documentLinksButton-endLink, +.documentLinksButton-startLink { + height: 20px; + width: 20px; + position: absolute; + border-radius: 50%; + opacity: 0.9; + pointer-events: auto; + color: black; + text-transform: uppercase; + letter-spacing: 2px; + font-size: 75%; + transition: transform 0.2s; + text-align: center; + display: flex; + justify-content: center; + align-items: center; + + &:hover { + background: deepskyblue; + transform: scale(1.05); + cursor: default; + } +} +.documentLinksButton { + background-color: $link-color; +} +.documentLinksButton-endLink { + border: red solid 2px; +} +.documentLinksButton-startLink { + border: red solid 2px; + background-color: rgba(255, 192, 203, 0.5); +}
\ No newline at end of file |
