summaryrefslogtreecommitdiff
path: root/src/style-globals/mixins.sass
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-07-24 11:43:51 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:04:27 +0200
commit9a4837f1630912906937e324ce7497414b5d4254 (patch)
tree311b25ea3b604b1b170d38cb3fa96302cb171cd9 /src/style-globals/mixins.sass
parent909e951165b1bf3289c7add031b9cebef94191ef (diff)
Add navbar to projects page
Diffstat (limited to 'src/style-globals/mixins.sass')
-rw-r--r--src/style-globals/mixins.sass21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/style-globals/mixins.sass b/src/style-globals/mixins.sass
new file mode 100644
index 00000000..40c07a6d
--- /dev/null
+++ b/src/style-globals/mixins.sass
@@ -0,0 +1,21 @@
+=transition($property, $time)
+ -webkit-transition: $property $time
+ -moz-transition: $property $time
+ -o-transition: $property $time
+ transition: $property $time
+
+=user-select-def
+ -webkit-user-select: none
+ -moz-user-select: none
+ -ms-user-select: none
+ user-select: none
+
+=border-radius-def($length)
+ -webkit-border-radius: $length
+ -moz-border-radius: $length
+ border-radius: $length
+
+/* General Button Abstractions */
+=clickable
+ cursor: pointer
+ +user-select-def