| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .VerticalLine {
- position: absolute;
- bottom: -5px;
- left: 0;
- right: 0;
- height: 3px;
- background: #ccc;
- }
- .VerticalLine:hover {
- cursor: n-resize;
- }
- .HorizontalLine {
- position: absolute;
- bottom: 0;
- top: 0;
- right: 0;
- width: 3px;
- background: #ccc;
- }
- .HorizontalLine:hover {
- cursor: e-resize;
- }
- /* .VerticalLine .arrow1 {
- width: 0;
- height: 0;
- position: absolute;
- top: -23px;
- left: 50%;
- border-top: solid 12px transparent;
- border-left: solid 12px transparent;
- border-right: solid 12px transparent;
- border-bottom: solid 12px inherit;
- }
- .VerticalLine .arrow2 {
- width: 0;
- height: 0;
- position: absolute;
- left: 50%;
- top: 2px;
- border-top: solid 12px inherit;
- border-left: solid 12px transparent;
- border-right: solid 12px transparent;
- border-bottom: solid 12px transparent;
- }*/
|