aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/linking/LinkFollowBox.scss
diff options
context:
space:
mode:
authormonikahedman <monika_hedman@brown.edu>2019-08-23 16:38:27 -0400
committermonikahedman <monika_hedman@brown.edu>2019-08-23 16:38:27 -0400
commited7f9a9cd3255f7b774268cfda35685ddacfe2e9 (patch)
treeb77ac39051429f27f5c7fee1a8fc7a49aa0d6047 /src/client/views/linking/LinkFollowBox.scss
parentdd4227a125c0cd679f6437fab85b1cd772a34f78 (diff)
basic menu and setting docs working
Diffstat (limited to 'src/client/views/linking/LinkFollowBox.scss')
-rw-r--r--src/client/views/linking/LinkFollowBox.scss77
1 files changed, 76 insertions, 1 deletions
diff --git a/src/client/views/linking/LinkFollowBox.scss b/src/client/views/linking/LinkFollowBox.scss
index 522191792..aedbfdea4 100644
--- a/src/client/views/linking/LinkFollowBox.scss
+++ b/src/client/views/linking/LinkFollowBox.scss
@@ -2,5 +2,80 @@
.linkFollowBox-main {
position: absolute;
- background: red;
+ background: whitesmoke;
+ color: grey;
+ border-radius: 15px;
+ box-shadow: $intermediate-color 0.2vw 0.2vw 0.4vw;
+ border: solid #BBBBBBBB 5px;
+ pointer-events: all;
+ // overflow: hidden;
+
+ .linkFollowBox-header {
+ height: 30px;
+ text-align: center;
+ text-transform: uppercase;
+ line-height: 30px;
+ letter-spacing: 2px;
+ font-size: 16px;
+ }
+
+ .linkFollowBox-footer {
+ height: 50px;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+
+ button {
+ background-color: $darker-alt-accent;
+ // height: 30px;
+ width: 30%;
+ // font-size: 18px;
+ }
+ }
+
+ .linkFollowBox-content {
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr;
+ grid-column-gap: 5px;
+ margin-left: 5px;
+ margin-right: 5px;
+
+ .linkFollowBox-item {
+ background-color: $light-color;
+ width: 100%;
+ height: 100%;
+
+ .linkFollowBox-itemContent {
+ padding: 5px;
+ font-size: 12px;
+ // line-height: 40px;
+ overflow: scroll;
+
+
+ input[type=radio] {
+ border: 0px;
+ // width: 100%;
+ // height: 20px;
+ // width: 20px;
+ margin-right: 5px;
+ }
+ }
+
+ .title {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ text-transform: uppercase;
+ color: $light-color;
+ background-color: $lighter-alt-accent;
+ width: 100%;
+ height: 30px;
+ border-bottom: solid $darker-alt-accent 5px;
+ font-size: 12px;
+ text-align: center;
+ }
+ }
+ }
+
} \ No newline at end of file