aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/TemplateMenu.scss
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2019-11-20 19:18:27 -0500
committerSam Wilkins <samwilkins333@gmail.com>2019-11-20 19:18:27 -0500
commit71aba40d0e9994b90d967a637064c81d7253be75 (patch)
tree5edb5cb08b16f5a8d42adf360f4732f11ae9779f /src/client/views/TemplateMenu.scss
parent1722788bf7d672043b1d51026b553426459bbd22 (diff)
parent63129c244fc2b9a5c60e6a94b864895641b86f57 (diff)
merged with master
Diffstat (limited to 'src/client/views/TemplateMenu.scss')
-rw-r--r--src/client/views/TemplateMenu.scss50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/client/views/TemplateMenu.scss b/src/client/views/TemplateMenu.scss
new file mode 100644
index 000000000..186d3ab0d
--- /dev/null
+++ b/src/client/views/TemplateMenu.scss
@@ -0,0 +1,50 @@
+@import "globalCssVariables";
+.templating-menu {
+ position: absolute;
+ pointer-events: auto;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+ font-size: 75%;
+ transition: transform 0.2s;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.templating-button {
+ width: 20px;
+ height: 20px;
+ border-radius: 50%;
+ opacity: 0.9;
+ font-size: 14;
+ background-color: $dark-color;
+ color: $light-color;
+ text-align: center;
+ cursor: pointer;
+
+ &:hover {
+ background: $main-accent;
+ transform: scale(1.05);
+ }
+}
+
+.template-list {
+ position: absolute;
+ top: 25px;
+ left: 0px;
+ width: max-content;
+ font-family: $sans-serif;
+ font-size: 12px;
+ background-color: $light-color-secondary;
+ padding: 2px 12px;
+ list-style: none;
+
+ .templateToggle, .chromeToggle {
+ text-align: left;
+ }
+
+ input {
+ margin-right: 10px;
+ }
+} \ No newline at end of file