-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
137 lines (130 loc) · 2.38 KB
/
stylesheet.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* color palette as per
http://paletton.com/#uid=30n0L0kbn++00++69++fM++jS+U*/
body {
font-family: Verdana, Geneva, sans-serif;
color: #333333;
background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bolder;
font-size: 1.5em;
line-height: 0;
color: #c0c0c0;
text-shadow: 0 0.1em 0.1em #ddd;
}
#main_container {
overflow: hidden;
padding: 0.5em;
background-color: inherit;
border: 1px solid #c5c5c5;
}
/* list items and tags */
.type, .entity {
position: relative;
cursor: default;
}
.type {
background-color: #e5e8ff;
border: 1px solid #ccd0ff;
}
.entity {
background-color: #ECFFCE;
border: 1px solid #b7ff42;
}
.selected {
border-color: #333333;
border-style: dashed;
border-width: 1px;
font-weight: bold;
}
.type:hover, .entity:hover {
background-color: #ffffff;
}
/* tooltips - requires relative positioning of list items */
.type:after, .entity:after {
position: absolute;
top: 1.6em;
left: 0.3em;
z-index: 1000;
border: inherit;
border-style: dotted;
background-color: white;
font-weight: normal;
padding: inherit;
visibility: hidden;
content: "Comment: " attr(data-comment);
}
.type:hover:after, .entity:hover:after {
visibility:visible;
}
/* types and entities columns */
.column ul {
list-style-type: none;
padding: 0 0 1em 0;
margin: 0;
z-index: -1;
}
.column li {
padding: 0.3em;
}
/* selection bar */
#selection_bar {
margin: 0.5em 0 0.5em 0;
list-style-type: none;
padding: 0;
}
#selection_bar > li {
display: inline-block;
padding: 0.1em 0.3em 0.1em 0.3em;
}
#selection_bar .deselect {
font-family:sans-serif;
font-weight:bold;
font-size:0.6em;
color:#aaaaaa;
}
/*
column layout adapted from
matthewjamestaylor.com/blog/equal-height-columns-cross-browser-css-no-hacks
*/
#visual_container {
clear:left;
float:left;
width:100%;
overflow:hidden;
position:relative;
}
#entities_container {
clear:left;
float:left;
width:100%;
position:relative;
right:60%;
}
#types_container {
float:left;
width:100%;
position:relative;
right:20%;
}
#types {
float:left;
width:20%;
position:relative;
left:80%;
overflow:hidden;
}
#entities {
float:left;
width:20%;
position:relative;
left:80%;
overflow:hidden;
}
#visual {
float:left;
width:60%;
position:relative;
left:80%;
overflow:hidden;
}