aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/LinkBox.scss
diff options
context:
space:
mode:
authorHannah Chow <hannah_chow@brown.edu>2019-03-11 19:30:14 -0400
committerHannah Chow <hannah_chow@brown.edu>2019-03-11 19:30:14 -0400
commitf4b5033a7a8ad356fd607f5f3248ac8b741d1d5c (patch)
tree95235fb7746fe667fc521e00e34f748a69f7bc9d /src/client/views/nodes/LinkBox.scss
parent1a1db830b522b2441be2a4f79a8edb08759d7135 (diff)
finished linking button styling
Diffstat (limited to 'src/client/views/nodes/LinkBox.scss')
-rw-r--r--src/client/views/nodes/LinkBox.scss28
1 files changed, 21 insertions, 7 deletions
diff --git a/src/client/views/nodes/LinkBox.scss b/src/client/views/nodes/LinkBox.scss
index bdedbc103..5d5f782d2 100644
--- a/src/client/views/nodes/LinkBox.scss
+++ b/src/client/views/nodes/LinkBox.scss
@@ -1,14 +1,14 @@
@import "../global_variables";
.link-container {
width: 100%;
- height: 30px;
+ height: 35px;
display: flex;
flex-direction: row;
border-top: 0.5px solid #bababa;
}
.info-container {
- width: 60%;
+ width: 55%;
padding-top: 5px;
padding-left: 5px;
display: flex;
@@ -24,14 +24,14 @@
}
.button-container {
- width: 40%;
+ width: 45%;
display: flex;
flex-direction: row;
}
.button {
- height: 16px;
- width: 16px;
+ height: 20px;
+ width: 20px;
margin: 8px 4px;
border-radius: 50%;
opacity: 0.9;
@@ -40,12 +40,26 @@
color: $light-color;
text-transform: uppercase;
letter-spacing: 2px;
- font-size: 75%;
+ font-size: 60%;
transition: transform 0.2s;
}
.button:hover {
background: $main-accent;
- transform: scale(1.05);
cursor: pointer;
+}
+
+.fa-icon-view {
+ margin-left: 3px;
+ margin-top: 5px;
+}
+
+.fa-icon-edit {
+ margin-left: 5px;
+ margin-top: 5px;
+}
+
+.fa-icon-delete {
+ margin-left: 6px;
+ margin-top: 5px;
} \ No newline at end of file