-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
47 lines (39 loc) · 1.05 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
**
** Part of StackOverflow Answer
** http://stackoverflow.com/questions/536676/how-to-draw-a-line-between-draggable-and-droppable
**
** Created and Maintained by Bruno Alexandre (balexandre.com)
**
** GIT REPO at https://github.com/balexandre/Draggable-Line-to-Droppable
**
** Last Edit: 08 July 2013
**
*/
article, aside, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { font-family: Arial; font-size: 11px; }
ul { list-style: none; }
#svgbasics {
position: absolute; left: 0px; top: 0px;
border: solid 0px #484; z-index: -100;
}
.draggable { cursor: pointer; }
.droppable { }
#pnlAllIn, #dialog, #dialogMappingResult,
#popButton, #getMappings {
z-index: 10;
}
#pnlAllIn {
margin: 20px;
}
#leftPanel, #rightPanel {
width: 400px;
float: left;
}
/* Persons */
.person { width: 300px; padding: 10px; border: 1px red solid; margin: 10px 0; }
.person ul.buttons { float:right; }
.person ul.name { margin-left: 20px; }
.person ul.name h2 { margin-bottom: 0; }
.person img { float:left; }
.clearfix { clear: both; }