|
|
|
@ -9,7 +9,8 @@ html {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
body { |
|
|
|
|
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, Vazirmatn, sans-serif; |
|
|
|
|
font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, Vazirmatn, |
|
|
|
|
sans-serif; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* |
|
|
|
@ -30,3 +31,14 @@ For Drag and Drop
|
|
|
|
|
.grabbing * { |
|
|
|
|
cursor: grabbing; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
Prevent Ctrl + A selection |
|
|
|
|
*/ |
|
|
|
|
.non-selectable { |
|
|
|
|
-webkit-user-select: none; |
|
|
|
|
-webkit-touch-callout: none; |
|
|
|
|
-moz-user-select: none; |
|
|
|
|
-ms-user-select: none; |
|
|
|
|
user-select: none; |
|
|
|
|
} |
|
|
|
|