-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (99 loc) · 1.44 KB
/
style.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
html, body
{
height: 100%;
max-height: 100%;
margin: 0;
padding: 0;
}
body
{
display: flex;
flex-direction: column;
}
#content
{
position: relative;
flex-grow: 1;
flex-shrink: 1;
flex-basis: auto;
}
#header, #footer
{
background-color: #FFA000;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
#title {
margin: 10px 5px;
}
#search{
margin: 10px 15px;
flex-grow: 1;
max-width: 500px;
}
.tt-menu {
max-height: 300px;
overflow-y: auto;
}
.typeahead, .twitter-typeahead, .tt-menu, .tt-hint, .tt-input {
width: 100%;
max-width: 500px;
}
.tt-dataset-nations {
border: 1px solid black;
}
.tt-dataset-nations .tt-suggestion {
min-height: 50px;
background-color: #FFC107;
border: 1px solid black;
}
#mainSvg
{
position:absolute;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display: block;
}
g {
text-align: center;
}
.flag {
border: 3px solid black;
max-width: 180px;
max-height: 100px;
}
.previewFlag{
float: right;
max-width: 90px;
max-height: 50px;
}
.node {
fill: #FFC107;
}
.overlay {
fill: #808080;
pointer-events: all;
}
.pathStart,.pathEnd {
fill: black;
cursor: pointer;
}
.highlighted {
stroke: #536DFE;
}
.highlighted .pathStart, .highlighted .pathEnd{
fill: #536DFE;
}
rect.highlighted {
stroke: #536DFE;
stroke-width: 10;
stroke-alignment: outer;
}
.hidden {
visibility: hidden;
}