aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/globalCssVariables.scss
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-04-11 20:19:57 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-04-11 20:19:57 -0400
commitfd8e6bf2cacf8bed7c3363eeb777c731741266d5 (patch)
tree6b10245d44a8159b38b26d4f70150adf162cfe78 /src/client/views/globalCssVariables.scss
parent6dd21d8ca48beef6d5054f60d04bb4412b6b33b5 (diff)
made COLLECTION_BORDER_WIDTH a CSS variable accessible from code. changed global css variable file name
Diffstat (limited to 'src/client/views/globalCssVariables.scss')
-rw-r--r--src/client/views/globalCssVariables.scss29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/client/views/globalCssVariables.scss b/src/client/views/globalCssVariables.scss
new file mode 100644
index 000000000..5c8e9c8fc
--- /dev/null
+++ b/src/client/views/globalCssVariables.scss
@@ -0,0 +1,29 @@
+@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Crimson+Text:400,400i,700");
+// colors
+$light-color: #fcfbf7;
+$light-color-secondary: rgb(241, 239, 235);
+$main-accent: #61aaa3;
+// $alt-accent: #cdd5ec;
+// $alt-accent: #cdeceb;
+$alt-accent: #59dff7;
+$lighter-alt-accent: rgb(207, 220, 240);
+$intermediate-color: #9c9396;
+$dark-color: #121721;
+// fonts
+$sans-serif: "Noto Sans", sans-serif;
+// $sans-serif: "Roboto Slab", sans-serif;
+$serif: "Crimson Text", serif;
+// misc values
+$border-radius: 0.3em;
+//
+
+ // dragged items
+$contextMenu-zindex: 1000; // context menu shows up over everything
+$mainTextInput-zindex: 999; // then text input overlay so that it's context menu will appear over decorations, etc
+$docDecorations-zindex: 998; // then doc decorations appear over everything else
+$remoteCursors-zindex: 997; // ... not sure what level the remote cursors should go -- is this right?
+$COLLECTION_BORDER_WIDTH: 1;
+:export {
+ contextMenuZindex: $contextMenu-zindex;
+ COLLECTION_BORDER_WIDTH: $COLLECTION_BORDER_WIDTH;
+} \ No newline at end of file