-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain_style.css
91 lines (78 loc) · 1.46 KB
/
main_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
body {
background: #fff;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color:#000;
margin: 0;
padding: 0;
}
.swiper-container {
width: 100%;
height: 500px;
margin: 20px auto;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background: #f9f9f9;
width: 500px;
/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
svg {
border: solid 1px #ccc;
}
.node rect {
fill: #fff;
stroke: #000;
stroke-width: 2px;
}
.node text {
font-size: 10px;
text-transform: capitalize;
}
.link {
fill: none;
}
.highlight {
fill: none;
}
.svg-container {
display: inline-block;
position: relative;
width: 100%;
padding-bottom: 100%; /* aspect ratio */
vertical-align: top;
overflow: hidden;
}
.svg-content-responsive {
display: inline-block;
position: absolute;
top: 10px;
left: 0;
}
.arrange-vertically > * {
display: block;
}
.row {
width: 100%;
}
.block {
padding: 10px;
position: relative;
display: inline-block; /* display inline with abality to provide width/height */
}
.bold {
font-weight : bold;
}