-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
103 lines (84 loc) · 1.48 KB
/
main.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
.header {
padding-bottom: 20px;
margin-bottom: 20px;
}
.header > h3, h5 {
margin: 0;
padding-top: 40px;
text-align: center;
}
/* Include any custom CSS styling here! */
svg {
display: block;
margin: 0 auto;
}
.tooltip {
position: absolute;
font-size: 10px;
min-width: 50px;
padding: 5px;
width: auto;
height: auto;
pointer-events: none;
background-color: white;
text-align: center;
border-radius: 3px;
}
select {
padding: 10px;
width: 100%;
height: 30px;
background-color: white;
box-shadow: 1px 3px 3px rgb(167, 167, 167);
font-size: .9em
}
#flow-container {
display: flex;
justify-content: center;
flex-direction: column;
}
#flow-options {
width: 175px;
display:block;
margin: 0px auto;
}
#flow-options p {
font-size: .9em;
text-align: center;
}
#flow-options h5 {
margin-bottom: 10px;
}
#network-tt {
width: 150px;
}
#writeup {
margin: 0 150px;
margin-top: 30px;
}
.node-selected {
stroke-width: 2px;
stroke: yellow;
}
#writeup b {
color: #e7525c;
}
#question-1 li {
font-weight: 500;
}
#med-connections-count {
color: #e7525c;
}
#top-connections-count {
color: #e7525c;
}
/* makes dashboard responsive for various screen sizes */
@media (max-width: 1200px) {
#flow-container {
flex-direction: row;
}
#flow-options {
margin-top: 60px;
margin: 60px 10px;
}
}