summaryrefslogtreecommitdiff
path: root/munia.css
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2020-06-07 10:05:32 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2020-06-07 10:05:32 +0200
commitdd19910ec18ec60633bf5b4fcda5bab220d0565f (patch)
treec42c60a7daa15d99d772d670d53c29caf45d821b /munia.css
parent5f95718e7ebe4dec017055500793b928d8946d8e (diff)
Relocate all webservice files to src/ws and make sure they can be found by the service after install.
Diffstat (limited to 'munia.css')
-rw-r--r--munia.css58
1 files changed, 0 insertions, 58 deletions
diff --git a/munia.css b/munia.css
deleted file mode 100644
index f94f4b7..0000000
--- a/munia.css
+++ /dev/null
@@ -1,58 +0,0 @@
-/* Prevent the text contents of draggable elements from being selectable. */
-[draggable] {
- -moz-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: none;
- user-select: none;
-}
-
-body {
- cursor: default;
-}
-
-.node {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- -o-user-select: none;
- user-select: none;
- cursor: move;
- background-color: #888;
- border-style: solid;
- border-width: medium;
-/* border-radius: 15px;*/
- padding: 4px;
- margin: 6px;
- max-width: 300px;
-}
-
-.board {
- width: *;
- min-height: 100px;
- padding: 2px;
- margin: 2px;
-
- background: -moz-linear-gradient(left center, rgb(0,0,0), rgb(79,79,79), rgb(21,21,21));
- background: -webkit-gradient(linear, left top, right top,
- color-stop(0, rgb(0,0,0)),
- color-stop(0.50, rgb(79,79,79)),
- color-stop(1, rgb(21,21,21)));
- background: -webkit-linear-gradient(left center, rgb(0,0,0), rgb(79,79,79), rgb(21,21,21));
- background: -ms-linear-gradient(left center, rgb(0,0,0), rgb(79,79,79), rgb(21,21,21));
-}
-
-
-.log
-{
- height: 20em;
- font-family: monospace;
- font-size: 1em;
- padding: 2px 5px;
- color: #0f0;
- background-color: #111;
- border: 1px solid #030;
- border-radius: 4px;
- overflow: auto;
-}