aboutsummaryrefslogtreecommitdiff
path: root/app/css/app.css
diff options
context:
space:
mode:
Diffstat (limited to 'app/css/app.css')
-rw-r--r--app/css/app.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/css/app.css b/app/css/app.css
index 8d3eae6..5f3e698 100644
--- a/app/css/app.css
+++ b/app/css/app.css
@@ -1 +1,34 @@
/* app css stylesheet */
+
+.world {
+ position: relative;
+}
+
+.world .line {
+ position: absolute;
+}
+
+.point {
+ position: absolute;
+}
+
+.point > div {
+ position: relative;
+ border-radius: 50%;
+ margin-left: -10px;
+ margin-top: -10px;
+ width: 20px;
+ height: 20px;
+ border: solid #aaaaaa 2px;
+}
+
+.point > div:hover {
+ margin-left: -15px;
+ margin-top: -15px;
+ width: 30px;
+ height: 30px;
+}
+
+.selected > div {
+ background-color: red;
+} \ No newline at end of file