separateBar.css 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .VerticalLine {
  2. position: absolute;
  3. bottom: -5px;
  4. left: 0;
  5. right: 0;
  6. height: 3px;
  7. background: #ccc;
  8. }
  9. .VerticalLine:hover {
  10. cursor: n-resize;
  11. }
  12. .HorizontalLine {
  13. position: absolute;
  14. bottom: 0;
  15. top: 0;
  16. right: 0;
  17. width: 3px;
  18. background: #ccc;
  19. }
  20. .HorizontalLine:hover {
  21. cursor: e-resize;
  22. }
  23. /* .VerticalLine .arrow1 {
  24. width: 0;
  25. height: 0;
  26. position: absolute;
  27. top: -23px;
  28. left: 50%;
  29. border-top: solid 12px transparent;
  30. border-left: solid 12px transparent;
  31. border-right: solid 12px transparent;
  32. border-bottom: solid 12px inherit;
  33. }
  34. .VerticalLine .arrow2 {
  35. width: 0;
  36. height: 0;
  37. position: absolute;
  38. left: 50%;
  39. top: 2px;
  40. border-top: solid 12px inherit;
  41. border-left: solid 12px transparent;
  42. border-right: solid 12px transparent;
  43. border-bottom: solid 12px transparent;
  44. }*/