|
1 |
|
2 .Ldt-Renkan-Container { |
|
3 position: relative; width: 100%; height: 100%; |
|
4 } |
|
5 |
|
6 .Ldt-Renkan a { |
|
7 color: #303080; |
|
8 } |
|
9 |
|
10 |
|
11 .Rk-Main { |
|
12 position: absolute; left: 0; top: 0; right: 0; bottom: 0; |
|
13 } |
|
14 |
|
15 .Rk-Render { |
|
16 position: absolute; left: 0; top: 0; right: 0; bottom: 0; |
|
17 background: #ffffff; |
|
18 } |
|
19 |
|
20 /* Canvas */ |
|
21 |
|
22 .Rk-Editing-Space { |
|
23 position: absolute; left: 0; top: 35px; right: 0; bottom: 0; overflow: hidden; |
|
24 background: -moz-radial-gradient( center, circle, #ffffff 40%, #e0e0e0 90%); |
|
25 background: -webkit-radial-gradient( center, circle, #ffffff 40%, #e0e0e0 90%); |
|
26 background: -ms-radial-gradient( center, circle, #ffffff 40%, #e0e0e0 90%); |
|
27 } |
|
28 |
|
29 .Rk-Editing-Space-Full { |
|
30 top: 0; |
|
31 } |
|
32 |
|
33 .Rk-Canvas { |
|
34 position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 2; |
|
35 } |
|
36 |
|
37 /* Node Labels */ |
|
38 |
|
39 .Rk-Labels { |
|
40 position: absolute; left: 0; top: 0; z-index: 1; |
|
41 font-family: "Segoe UI", "Helvetica Neue", Arial, Helvetica, sans-serif; |
|
42 } |
|
43 |
|
44 .Rk-Label { |
|
45 position: absolute; width: 160px; margin-left: -80px; text-align: center; font-size: 13px; line-height: 13px; |
|
46 } |
|
47 |
|
48 .Rk-Edge-Label { |
|
49 font-size: 11px; transform-origin: 50% 0; -moz-transform-origin: 50% 0; |
|
50 -webkit-transform-origin: 50% 0; -ms-transform-origin: 50% 0; |
|
51 } |
|
52 |
|
53 /* Editors */ |
|
54 |
|
55 .Rk-Editor { |
|
56 position: absolute; left: 0; top: 0; z-index: 3; |
|
57 } |
|
58 |
|
59 .Rk-Notifications { |
|
60 position: absolute; right: 15px; top: 15px; width: 200px; |
|
61 padding: 10px; border-radius: 8px; display: none; |
|
62 color: #ffffff; font-size: 13px; text-align: center; font-weight: bold; |
|
63 background: rgba(20,20,20,.7); |
|
64 background: -moz-linear-gradient(top, rgba(40,40,40,.7) 20%, rgba(0,0,0,.7) 80%); |
|
65 background: -webkit-linear-gradient(top, rgba(40,40,40,.7) 20%, rgba(0,0,0,.7) 80%); |
|
66 background: -ms-linear-gradient(top, rgba(40,40,40,.7) 20%, rgba(0,0,0,.7) 80%); |
|
67 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#202020', endColorstr='#000000',GradientType=0 ); |
|
68 } |
|
69 |
|
70 .Rk-CloseX { |
|
71 float: right; cursor: pointer; |
|
72 } |
|
73 |
|
74 .Rk-Editor h2 { |
|
75 font-size: 16px; font-weight: bold; padding: 0; |
|
76 } |
|
77 |
|
78 .Rk-Editor p, .Rk-Editor-p { |
|
79 margin: 5px 0; font-size: 12px; clear: both; padding: 0; |
|
80 } |
|
81 |
|
82 .Rk-Editor-Label { |
|
83 float: left; width: 80px; |
|
84 } |
|
85 |
|
86 .Rk-UserColor { |
|
87 display: inline-block; width: 12px; height: 12px; border: 1px solid #666666; margin: -2px 2px; |
|
88 } |
|
89 |
|
90 .Rk-Display-Title a { |
|
91 text-decoration: none; color: #000000; |
|
92 } |
|
93 |
|
94 .Rk-Display-Title a:hover { |
|
95 text-decoration: underline; |
|
96 } |
|
97 |
|
98 .Rk-Display-URI { |
|
99 font-style: italic; |
|
100 } |
|
101 |
|
102 .Rk-Display-ImgPreview { |
|
103 margin: 5px auto; display: block; max-width: 255px !important; max-height: 120px !important; |
|
104 } |
|
105 |
|
106 |
|
107 .Rk-ZoomButtons { |
|
108 position: absolute; left: 0; top: 35px; cursor: pointer; |
|
109 } |
|
110 |
|
111 .Rk-Editing-Space-Full .Rk-ZoomButtons { |
|
112 top: 0; |
|
113 } |
|
114 |
|
115 .Rk-ZoomIn, .Rk-ZoomOut { |
|
116 width: 21px; height: 20px; background: url(img/zoombuttons.png); margin: 5px; |
|
117 } |
|
118 |
|
119 .Rk-ZoomIn:hover { |
|
120 background-position: 0 -20px; |
|
121 } |
|
122 |
|
123 .Rk-ZoomOut { |
|
124 background-position: -21px 0; |
|
125 } |
|
126 |
|
127 .Rk-ZoomOut:hover { |
|
128 background-position: -21px -20px; |
|
129 } |
|
130 |