design.css 836 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. button[data-widget-class] {
  2. background-repeat: no-repeat;
  3. background-position: center;
  4. width: 36px;
  5. height: 36px;
  6. }
  7. #toolbar {
  8. width: 80%;
  9. background-color: #DDDDDD;
  10. margin-bottom: 32px;
  11. padding: 4px 4px 4px 4px;
  12. margin-left: 30px;
  13. }
  14. #designpage {
  15. background-color: #A0A0A0;
  16. width: 80%;
  17. height: 80vh;
  18. margin-left: 30px;
  19. margin-top: 32px;
  20. }
  21. .designerActive {
  22. position: relative;
  23. border: 1px dashed #87cefa;
  24. }
  25. .designerToolbar {
  26. position: absolute;
  27. top: 0px;
  28. left: -18px;
  29. height: 100%;
  30. display: flex;
  31. flex-direction: column;
  32. /* justify-content: space-around; */
  33. }
  34. .designerDragHandle{
  35. margin-left: 1px;
  36. }
  37. .designerPlaceholder {
  38. border: 3px dotted black;
  39. margin: 1em 1em 1em 1em;
  40. height: 50px;
  41. }
  42. .source {
  43. display: flex;
  44. width: 540px;
  45. margin: 10px auto;
  46. font-size: 12px;
  47. }