Browse Source

rountangles have now a transparent background

Jakob Pietron 3 years ago
parent
commit
4323f91e8b
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/frontend/rountangleEditor/RountangleEditor.css

+ 4 - 2
src/frontend/rountangleEditor/RountangleEditor.css

@@ -2,17 +2,19 @@
     background: lightgrey;
     height: 500px;
     position: relative;
+    font-family: sans-serif;
 }
 .re-rountangle {
     position: absolute;
-    background: white;
-    border: 1px solid black;
+    border: 3px solid black;
     border-radius: 5px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: center;
     overflow: hidden;
+    filter: drop-shadow(.1rem .1rem .1em deeppink);
+    font-weight: bold;
 }
 .re-rountangle:hover {
     cursor: grab;