-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
141 lines (129 loc) · 2.82 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
html {
margin: 0px;
height: 100%;
width: 100%;
}
body {
margin: 0px;
min-height: 100%;
width: 100%;
}
ASIDE {
width: 250px;
height: auto;
top: 1px;
margin:auto;
border: 1px solid #333;
padding: 10px;
background: #fff;
background: linear-gradient(to bottom, #f2f5f6 0%,#ffffff 1%,#d1d1d1 3%,#e3eaed 68%,#e3eaed 68%,#ffffff 96%,#c8d7dc 100%);
}
ASIDE P {
margin-left: 20px;
}
#mindmap_container {
width: 100%;
height: 100vh;
position: relative;
background: linear-gradient(to bottom, rgba(147, 206, 222, 1) 0%, rgba(117, 189, 209, 0.87) 41%, rgba(73, 165, 191, 0.68) 100%);
display: block;
text-align:center;
}
div.node {
min-width: 120px;
min-height: 60px;
position: absolute;
border-radius: 10px;
box-shadow: 3px 3px 7px #828282;
line-height: 1;
text-align: center;
border: 1px solid #E8E8E8;
font-family: 'Reenie Beanie';
background: rgba(255, 255, 136, 0.9);
z-index: 1;
}
div.master {
background: transparent;
background-color: transparent;
content: "";
background: url(assets/brain.png);
background-position:20px 0;
background-repeat: no-repeat;
width: 160px;
height: 132px;
box-shadow: none;
border: none;
z-index: 1;
padding-bottom: 33px;
padding-right: 20px;
}
div.node span {
padding: 6px;
display: block;
max-width: 150px;
word-wrap: break-word;
margin: 15px 5px 25px 5px;
border-bottom: 2px solid #aeadad;
border-left: 2px solid #aeadad;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
border-radius: 10px;
}
.master_span {
content: "";
background-color: white;
padding: 7px !important;
min-width: 180px;
position: absolute;
bottom: -27px;
border: 2px solid #2d2c2c !important;
border-radius: 25px !important;
box-shadow: 3px 3px 7px #828282;
display: none;
pointer-events: none;
}
.hide {
transform: translateX(-9999px);
}
.dragging {
box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.7);
z-index: 2;
}
canvas {
z-index: 0;
}
.add {
position: absolute;
display: block;
height: 16px;
width: 16px;
border-radius: 50%;
background: url(assets/add.png);
text-indent: -99999em;
overflow: hidden;
bottom: 2px;
right: 5px;
user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.left {
left: 5px;
}
.delete {
position: absolute;
display: block;
height: 16px;
width: 16px;
border-radius: 50%;
background: url(assets/remove.png);
text-indent: -99999em;
overflow: hidden;
bottom: 2px;
margin: 0 auto;
user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.4);
}