Commit 0a85227c113a58cf40ef0c64a466b445e6dca001
1 parent
416a5be0
Exists in
master
and in
28 other branches
ActionItem152: go beault!
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1203 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
14 changed files
with
969 additions
and
41 deletions
Show diff stats
app/views/account/login.rhtml
| 1 | -<h1><%= _('Login') %></h1> | 1 | +<div id="login-box"> |
| 2 | + | ||
| 3 | +<h2><%= _('Login') %></h2> | ||
| 2 | 4 | ||
| 3 | <% labelled_form_for :user, @user, :url => { :controller => 'account', :action => 'login' } do |f| %> | 5 | <% labelled_form_for :user, @user, :url => { :controller => 'account', :action => 'login' } do |f| %> |
| 4 | 6 | ||
| @@ -12,10 +14,13 @@ | @@ -12,10 +14,13 @@ | ||
| 12 | 14 | ||
| 13 | <% end %> | 15 | <% end %> |
| 14 | 16 | ||
| 15 | -<p> | 17 | +<p id="forgot-passwd"> |
| 16 | <%= link_to _("I forgot my password!"), :controller => 'account', :action => 'forgot_password' %> | 18 | <%= link_to _("I forgot my password!"), :controller => 'account', :action => 'forgot_password' %> |
| 17 | </p> | 19 | </p> |
| 18 | 20 | ||
| 19 | -<p> | 21 | +<p id="want-to-be-an-user"><strong> |
| 20 | <%= link_to _("I want to be an user!"), :controller => 'account', :action => 'signup' %> | 22 | <%= link_to _("I want to be an user!"), :controller => 'account', :action => 'signup' %> |
| 21 | -</p> | 23 | +</strong></p> |
| 24 | + | ||
| 25 | +</div><!-- end id="login-box" --> | ||
| 26 | + |
app/views/category/view.rhtml
| 1 | -<%= @category.ancestors.reverse.map { |a| link_to_category(a) }.join(' → ') %> | 1 | +<div id="view-category"> |
| 2 | 2 | ||
| 3 | -<h2><%= _('Category: %s') % @category.name %></h2> | 3 | + <div id="category-ancestors"> |
| 4 | + <%= @category.ancestors.reverse.map { |a| link_to_category(a) }.join(' → ') %> | ||
| 5 | + </div><!-- end id="category-ancestors" --> | ||
| 4 | 6 | ||
| 5 | -<%= render :partial => @category.class.name.underscore %> | 7 | + <h1 id="categiry-name"><%= _('Category: %s') % @category.name %></h1> |
| 6 | 8 | ||
| 7 | -<% if @category.children.empty? %> | ||
| 8 | - <strong><%= _('No children categories') %></strong> | ||
| 9 | -<% else %> | ||
| 10 | -<h4> <%= _('Child categories:') %> </h4> | ||
| 11 | - <ul> | ||
| 12 | - <% @category.children.each do |c| %> | ||
| 13 | - <li> <%= link_to_category(c) %> </li> | 9 | + <%= render :partial => @category.class.name.underscore %> |
| 10 | + | ||
| 11 | + <div id="category-childs"> | ||
| 12 | + | ||
| 13 | + <% if @category.children.empty? %> | ||
| 14 | + <strong id="cat-no-child"><%= _('No children categories') %></strong> | ||
| 15 | + <% else %> | ||
| 16 | + <h4> <%= _('Child categories:') %> </h4> | ||
| 17 | + <ul> | ||
| 18 | + <% @category.children.each do |c| %> | ||
| 19 | + <li> <%= link_to_category(c) %> </li> | ||
| 20 | + <% end %> | ||
| 21 | + </ul> | ||
| 14 | <% end %> | 22 | <% end %> |
| 15 | - </ul> | ||
| 16 | -<% end %> | 23 | + |
| 24 | + </div><!-- end id="child-categories" --> | ||
| 25 | + | ||
| 26 | +</div><!-- end id="view-category" --> | ||
| 27 | + |
app/views/home/index.rhtml
| @@ -5,7 +5,7 @@ | @@ -5,7 +5,7 @@ | ||
| 5 | <%# FIXME %> | 5 | <%# FIXME %> |
| 6 | <%= render :file => 'account/login.rhtml' %> | 6 | <%= render :file => 'account/login.rhtml' %> |
| 7 | 7 | ||
| 8 | -<h1><%= _('Recent articles') %></h1> | 8 | +<h2><%= _('Recent articles') %></h2> |
| 9 | 9 | ||
| 10 | <% for article in @articles %> | 10 | <% for article in @articles %> |
| 11 | <h2><%= article.name %></h2> | 11 | <h2><%= article.name %></h2> |
| @@ -0,0 +1,817 @@ | @@ -0,0 +1,817 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| 2 | +<svg | ||
| 3 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | ||
| 4 | + xmlns:cc="http://creativecommons.org/ns#" | ||
| 5 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
| 6 | + xmlns:svg="http://www.w3.org/2000/svg" | ||
| 7 | + xmlns="http://www.w3.org/2000/svg" | ||
| 8 | + xmlns:xlink="http://www.w3.org/1999/xlink" | ||
| 9 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | ||
| 10 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | ||
| 11 | + id="svg2" | ||
| 12 | + sodipodi:version="0.32" | ||
| 13 | + inkscape:version="0.45+devel" | ||
| 14 | + width="1200" | ||
| 15 | + height="110" | ||
| 16 | + sodipodi:docname="bg-top.svg" | ||
| 17 | + inkscape:output_extension="org.inkscape.output.svg.inkscape" | ||
| 18 | + version="1.0" | ||
| 19 | + inkscape:export-filename="/home/aurium/noosfero/public/artwork/screens/bg-top.png" | ||
| 20 | + inkscape:export-xdpi="90" | ||
| 21 | + inkscape:export-ydpi="90"> | ||
| 22 | + <metadata | ||
| 23 | + id="metadata7"> | ||
| 24 | + <rdf:RDF> | ||
| 25 | + <cc:Work | ||
| 26 | + rdf:about=""> | ||
| 27 | + <dc:format></dc:format> | ||
| 28 | + <dc:type | ||
| 29 | + rdf:resource="" /> | ||
| 30 | + <dc:title></dc:title> | ||
| 31 | + <dc:date></dc:date> | ||
| 32 | + <dc:creator> | ||
| 33 | + <cc:Agent> | ||
| 34 | + <dc:title></dc:title> | ||
| 35 | + </cc:Agent> | ||
| 36 | + </dc:creator> | ||
| 37 | + <dc:rights> | ||
| 38 | + <cc:Agent> | ||
| 39 | + <dc:title></dc:title> | ||
| 40 | + </cc:Agent> | ||
| 41 | + </dc:rights> | ||
| 42 | + <dc:publisher> | ||
| 43 | + <cc:Agent> | ||
| 44 | + <dc:title></dc:title> | ||
| 45 | + </cc:Agent> | ||
| 46 | + </dc:publisher> | ||
| 47 | + <dc:identifier></dc:identifier> | ||
| 48 | + <dc:source></dc:source> | ||
| 49 | + <dc:relation></dc:relation> | ||
| 50 | + <dc:language></dc:language> | ||
| 51 | + <dc:subject> | ||
| 52 | + <rdf:Bag /> | ||
| 53 | + </dc:subject> | ||
| 54 | + <dc:coverage></dc:coverage> | ||
| 55 | + <dc:description></dc:description> | ||
| 56 | + <dc:contributor> | ||
| 57 | + <cc:Agent> | ||
| 58 | + <dc:title></dc:title> | ||
| 59 | + </cc:Agent> | ||
| 60 | + </dc:contributor> | ||
| 61 | + <cc:license | ||
| 62 | + rdf:resource="" /> | ||
| 63 | + </cc:Work> | ||
| 64 | + </rdf:RDF> | ||
| 65 | + </metadata> | ||
| 66 | + <defs | ||
| 67 | + id="defs5"> | ||
| 68 | + <linearGradient | ||
| 69 | + id="linearGradient4380" | ||
| 70 | + inkscape:collect="always"> | ||
| 71 | + <stop | ||
| 72 | + id="stop4382" | ||
| 73 | + offset="0" | ||
| 74 | + style="stop-color:#3465a4;stop-opacity:1" /> | ||
| 75 | + <stop | ||
| 76 | + id="stop4384" | ||
| 77 | + offset="1" | ||
| 78 | + style="stop-color:#ffffff;stop-opacity:0" /> | ||
| 79 | + </linearGradient> | ||
| 80 | + <linearGradient | ||
| 81 | + inkscape:collect="always" | ||
| 82 | + id="linearGradient3742"> | ||
| 83 | + <stop | ||
| 84 | + style="stop-color:#ffffff;stop-opacity:1;" | ||
| 85 | + offset="0" | ||
| 86 | + id="stop3744" /> | ||
| 87 | + <stop | ||
| 88 | + style="stop-color:#ffffff;stop-opacity:0;" | ||
| 89 | + offset="1" | ||
| 90 | + id="stop3746" /> | ||
| 91 | + </linearGradient> | ||
| 92 | + <linearGradient | ||
| 93 | + inkscape:collect="always" | ||
| 94 | + xlink:href="#linearGradient3742" | ||
| 95 | + id="linearGradient3748" | ||
| 96 | + x1="0" | ||
| 97 | + y1="160" | ||
| 98 | + x2="0" | ||
| 99 | + y2="30" | ||
| 100 | + gradientUnits="userSpaceOnUse" | ||
| 101 | + gradientTransform="matrix(1.6000003,0,0,0.7692309,0,-13.076924)" /> | ||
| 102 | + <linearGradient | ||
| 103 | + inkscape:collect="always" | ||
| 104 | + xlink:href="#linearGradient4380" | ||
| 105 | + id="linearGradient4378" | ||
| 106 | + gradientUnits="userSpaceOnUse" | ||
| 107 | + gradientTransform="matrix(1.6000004,0,0,0.7692309,0,-23.076924)" | ||
| 108 | + x1="0" | ||
| 109 | + y1="29.999996" | ||
| 110 | + x2="0" | ||
| 111 | + y2="159.99997" /> | ||
| 112 | + </defs> | ||
| 113 | + <sodipodi:namedview | ||
| 114 | + inkscape:window-height="699" | ||
| 115 | + inkscape:window-width="1024" | ||
| 116 | + inkscape:pageshadow="2" | ||
| 117 | + inkscape:pageopacity="1" | ||
| 118 | + guidetolerance="10.0" | ||
| 119 | + gridtolerance="10.0" | ||
| 120 | + objecttolerance="10.0" | ||
| 121 | + borderopacity="1.0" | ||
| 122 | + bordercolor="#666666" | ||
| 123 | + pagecolor="#ffffff" | ||
| 124 | + id="base" | ||
| 125 | + showgrid="false" | ||
| 126 | + inkscape:zoom="1" | ||
| 127 | + inkscape:cx="453.57895" | ||
| 128 | + inkscape:cy="55" | ||
| 129 | + inkscape:window-x="0" | ||
| 130 | + inkscape:window-y="0" | ||
| 131 | + inkscape:current-layer="svg2" /> | ||
| 132 | + <rect | ||
| 133 | + y="0" | ||
| 134 | + x="0" | ||
| 135 | + height="100" | ||
| 136 | + width="1200" | ||
| 137 | + id="rect4376" | ||
| 138 | + style="opacity:1;fill:url(#linearGradient4378);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
| 139 | + <use | ||
| 140 | + x="0" | ||
| 141 | + y="0" | ||
| 142 | + inkscape:tiled-clone-of="#path2383" | ||
| 143 | + xlink:href="#path2383" | ||
| 144 | + transform="matrix(-0.72,0,0,0.72,758.0588,72.21623)" | ||
| 145 | + id="use4296" | ||
| 146 | + style="opacity:0.57999998;fill:#3dae00;stroke:#3dae00" | ||
| 147 | + width="1100" | ||
| 148 | + height="110" /> | ||
| 149 | + <use | ||
| 150 | + x="0" | ||
| 151 | + y="0" | ||
| 152 | + inkscape:tiled-clone-of="#path2383" | ||
| 153 | + xlink:href="#path2383" | ||
| 154 | + transform="matrix(0.56,0,0,0.56,697.64161,66.2906)" | ||
| 155 | + id="use4330" | ||
| 156 | + style="opacity:0.33999999;fill:#3dae00;stroke:#3dae00" | ||
| 157 | + width="1100" | ||
| 158 | + height="110" /> | ||
| 159 | + <use | ||
| 160 | + x="0" | ||
| 161 | + y="0" | ||
| 162 | + inkscape:tiled-clone-of="#path2383" | ||
| 163 | + xlink:href="#path2383" | ||
| 164 | + transform="matrix(0.62,0,0,0.62,602.41566,68.64814)" | ||
| 165 | + id="use4318" | ||
| 166 | + style="opacity:0.43000004;fill:#3dae00;stroke:#3dae00" | ||
| 167 | + width="1100" | ||
| 168 | + height="110" /> | ||
| 169 | + <use | ||
| 170 | + x="0" | ||
| 171 | + y="0" | ||
| 172 | + inkscape:tiled-clone-of="#path2383" | ||
| 173 | + xlink:href="#path2383" | ||
| 174 | + transform="matrix(0.84,0,0,0.84,256.95255,92.01236)" | ||
| 175 | + id="use4274" | ||
| 176 | + style="opacity:0.76000001;fill:#3dae00;stroke:#3dae00" | ||
| 177 | + width="1100" | ||
| 178 | + height="110" /> | ||
| 179 | + <use | ||
| 180 | + x="0" | ||
| 181 | + y="0" | ||
| 182 | + inkscape:tiled-clone-of="#path2383" | ||
| 183 | + xlink:href="#path2383" | ||
| 184 | + transform="matrix(-0.66,0,0,0.66,667.5543,75.15262)" | ||
| 185 | + id="use4308" | ||
| 186 | + style="opacity:0.48999999;fill:#3dae00;stroke:#3dae00" | ||
| 187 | + width="1100" | ||
| 188 | + height="110" /> | ||
| 189 | + <use | ||
| 190 | + x="0" | ||
| 191 | + y="0" | ||
| 192 | + inkscape:tiled-clone-of="#path2383" | ||
| 193 | + xlink:href="#path2383" | ||
| 194 | + transform="matrix(-0.82,0,0,0.82,910.6428,76.9472)" | ||
| 195 | + id="use4276" | ||
| 196 | + style="opacity:0.73000004;fill:#3dae00;stroke:#3dae00" | ||
| 197 | + width="1100" | ||
| 198 | + height="110" /> | ||
| 199 | + <use | ||
| 200 | + x="0" | ||
| 201 | + y="0" | ||
| 202 | + inkscape:tiled-clone-of="#path2383" | ||
| 203 | + xlink:href="#path2383" | ||
| 204 | + transform="matrix(-0.84,0,0,0.84,939.6212,95.67017)" | ||
| 205 | + id="use4272" | ||
| 206 | + style="opacity:0.76000001;fill:#3dae00;stroke:#3dae00" | ||
| 207 | + width="1100" | ||
| 208 | + height="110" /> | ||
| 209 | + <use | ||
| 210 | + x="0" | ||
| 211 | + y="0" | ||
| 212 | + inkscape:tiled-clone-of="#path2383" | ||
| 213 | + xlink:href="#path2383" | ||
| 214 | + transform="matrix(0.88,0,0,0.88,181.2534,88.19027)" | ||
| 215 | + id="use4266" | ||
| 216 | + style="opacity:0.81999972;fill:#3dae00;stroke:#3dae00" | ||
| 217 | + width="1100" | ||
| 218 | + height="110" /> | ||
| 219 | + <use | ||
| 220 | + x="0" | ||
| 221 | + y="0" | ||
| 222 | + inkscape:tiled-clone-of="#path2383" | ||
| 223 | + xlink:href="#path2383" | ||
| 224 | + transform="matrix(-0.94,0,0,0.94,1075.4704,92.91116)" | ||
| 225 | + id="use4252" | ||
| 226 | + style="opacity:0.91000001;fill:#3dae00;stroke:#3dae00" | ||
| 227 | + width="1100" | ||
| 228 | + height="110" /> | ||
| 229 | + <path | ||
| 230 | + style="fill:#3465a4;fill-opacity:1;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
| 231 | + d="M 581.59041,-108.6875 C 575.96126,-108.6875 571.39589,-104.11847 571.39588,-98.48483 C 571.39588,-94.8321 573.33595,-91.64563 576.22096,-89.84228 L 554.39675,-80.58063 C 551.94174,-79.53998 550.40497,-76.19504 551.79863,-72.85434 C 553.11962,-69.68783 556.89354,-68.24271 559.24658,-69.28835 L 571.64332,-74.78591 C 567.56552,-62.02486 563.98397,-49.10761 560.21159,-36.2535 C 559.36961,-33.30379 560.88677,-30.39886 563.57678,-29.06222 C 566.29441,-27.63007 569.51446,-29.12751 570.43835,-31.99183 C 572.59242,-38.84691 574.58144,-45.06578 576.86431,-52.22612 C 580.81864,-52.56542 584.10581,-52.62065 587.9594,-53.01107 C 590.30065,-46.06321 592.31368,-39.5833 594.43484,-33.05897 C 595.27014,-30.48972 598.41772,-28.87864 600.56906,-29.27011 C 604.12394,-29.91699 605.20462,-33.66971 604.28066,-36.67448 L 592.57675,-74.73638 L 604.67656,-68.47115 C 607.269,-67.12757 611.13186,-67.81777 612.02553,-70.60083 C 612.92617,-73.40562 611.97655,-77.12588 609.69959,-78.50047 C 602.69022,-82.73203 595.31917,-85.75611 587.6032,-90.26326 C 590.13567,-92.12081 591.80968,-95.104 591.80968,-98.48483 C 591.80968,-104.11848 587.21956,-108.6875 581.59041,-108.6875 z" | ||
| 232 | + id="path2383" | ||
| 233 | + sodipodi:nodetypes="csccscccccccsssccsscsc" | ||
| 234 | + inkscape:tile-cx="447.81639" | ||
| 235 | + inkscape:tile-cy="-260.59962" | ||
| 236 | + inkscape:tile-w="61.091797" | ||
| 237 | + inkscape:tile-h="80.175764" | ||
| 238 | + inkscape:tile-x0="417.27049" | ||
| 239 | + inkscape:tile-y0="-300.6875" /> | ||
| 240 | + <use | ||
| 241 | + x="0" | ||
| 242 | + y="0" | ||
| 243 | + inkscape:tiled-clone-of="#path2383" | ||
| 244 | + xlink:href="#path2383" | ||
| 245 | + transform="matrix(-0.98,0,0,0.98,1133.7059,107.02425)" | ||
| 246 | + id="use4244" | ||
| 247 | + style="opacity:0.97000002;fill:#3dae00;stroke:#3dae00" | ||
| 248 | + width="1100" | ||
| 249 | + height="110" /> | ||
| 250 | + <use | ||
| 251 | + x="0" | ||
| 252 | + y="0" | ||
| 253 | + inkscape:tiled-clone-of="#path2383" | ||
| 254 | + xlink:href="#path2383" | ||
| 255 | + transform="matrix(0.98,0,0,0.98,25.40862,103.70923)" | ||
| 256 | + id="use4246" | ||
| 257 | + style="opacity:0.97000002;fill:#3dae00;stroke:#3dae00" | ||
| 258 | + width="1100" | ||
| 259 | + height="110" /> | ||
| 260 | + <use | ||
| 261 | + x="0" | ||
| 262 | + y="0" | ||
| 263 | + inkscape:tiled-clone-of="#path2383" | ||
| 264 | + xlink:href="#path2383" | ||
| 265 | + transform="matrix(-0.96,0,0,0.96,1100.787,127.17746)" | ||
| 266 | + id="use4248" | ||
| 267 | + style="opacity:0.93999999;fill:#3dae00;stroke:#3dae00" | ||
| 268 | + width="1100" | ||
| 269 | + height="110" /> | ||
| 270 | + <use | ||
| 271 | + x="0" | ||
| 272 | + y="0" | ||
| 273 | + inkscape:tiled-clone-of="#path2383" | ||
| 274 | + xlink:href="#path2383" | ||
| 275 | + transform="matrix(0.96,0,0,0.96,75.49012,110.69009)" | ||
| 276 | + id="use4250" | ||
| 277 | + style="opacity:0.93999999;fill:#3dae00;stroke:#3dae00" | ||
| 278 | + width="1100" | ||
| 279 | + height="110" /> | ||
| 280 | + <use | ||
| 281 | + x="0" | ||
| 282 | + y="0" | ||
| 283 | + inkscape:tiled-clone-of="#path2383" | ||
| 284 | + xlink:href="#path2383" | ||
| 285 | + transform="matrix(0.92,0,0,0.92,135.79301,106.07766)" | ||
| 286 | + id="use4258" | ||
| 287 | + style="opacity:0.87999998;fill:#3dae00;stroke:#3dae00" | ||
| 288 | + width="1100" | ||
| 289 | + height="110" /> | ||
| 290 | + <use | ||
| 291 | + x="0" | ||
| 292 | + y="0" | ||
| 293 | + inkscape:tiled-clone-of="#path2383" | ||
| 294 | + xlink:href="#path2383" | ||
| 295 | + transform="matrix(-0.9,0,0,0.9,1017.2338,110.49209)" | ||
| 296 | + id="use4260" | ||
| 297 | + style="opacity:0.85;fill:#3dae00;stroke:#3dae00" | ||
| 298 | + width="1100" | ||
| 299 | + height="110" /> | ||
| 300 | + <use | ||
| 301 | + x="0" | ||
| 302 | + y="0" | ||
| 303 | + inkscape:tiled-clone-of="#path2383" | ||
| 304 | + xlink:href="#path2383" | ||
| 305 | + transform="matrix(-0.88,0,0,0.88,981.9665,113.01269)" | ||
| 306 | + id="use4264" | ||
| 307 | + style="opacity:0.81999972;fill:#3dae00;stroke:#3dae00" | ||
| 308 | + width="1100" | ||
| 309 | + height="110" /> | ||
| 310 | + <use | ||
| 311 | + x="0" | ||
| 312 | + y="0" | ||
| 313 | + inkscape:tiled-clone-of="#path2383" | ||
| 314 | + xlink:href="#path2383" | ||
| 315 | + transform="matrix(0.86,0,0,0.86,227.46846,118.75474)" | ||
| 316 | + id="use4270" | ||
| 317 | + style="opacity:0.79000005;fill:#3dae00;stroke:#3dae00" | ||
| 318 | + width="1100" | ||
| 319 | + height="110" /> | ||
| 320 | + <use | ||
| 321 | + x="0" | ||
| 322 | + y="0" | ||
| 323 | + inkscape:tiled-clone-of="#path2383" | ||
| 324 | + xlink:href="#path2383" | ||
| 325 | + transform="matrix(0.82,0,0,0.82,290.7561,103.88781)" | ||
| 326 | + id="use4278" | ||
| 327 | + style="opacity:0.73000004;fill:#3dae00;stroke:#3dae00" | ||
| 328 | + width="1100" | ||
| 329 | + height="110" /> | ||
| 330 | + <use | ||
| 331 | + x="0" | ||
| 332 | + y="0" | ||
| 333 | + inkscape:tiled-clone-of="#path2383" | ||
| 334 | + xlink:href="#path2383" | ||
| 335 | + transform="matrix(-0.8,0,0,0.8,865.1784,88.01207)" | ||
| 336 | + id="use4280" | ||
| 337 | + style="opacity:0.7;fill:#3dae00;stroke:#3dae00" | ||
| 338 | + width="1100" | ||
| 339 | + height="110" /> | ||
| 340 | + <use | ||
| 341 | + x="0" | ||
| 342 | + y="0" | ||
| 343 | + inkscape:tiled-clone-of="#path2383" | ||
| 344 | + xlink:href="#path2383" | ||
| 345 | + transform="matrix(-0.78,0,0,0.78,816.0613,89.16391)" | ||
| 346 | + id="use4284" | ||
| 347 | + style="opacity:0.67000002;fill:#3dae00;stroke:#3dae00" | ||
| 348 | + width="1100" | ||
| 349 | + height="110" /> | ||
| 350 | + <use | ||
| 351 | + x="0" | ||
| 352 | + y="0" | ||
| 353 | + inkscape:tiled-clone-of="#path2383" | ||
| 354 | + xlink:href="#path2383" | ||
| 355 | + transform="matrix(0.78,0,0,0.78,352.14269,85.73183)" | ||
| 356 | + id="use4286" | ||
| 357 | + style="opacity:0.67000002;fill:#3dae00;stroke:#3dae00" | ||
| 358 | + width="1100" | ||
| 359 | + height="110" /> | ||
| 360 | + <use | ||
| 361 | + x="0" | ||
| 362 | + y="0" | ||
| 363 | + inkscape:tiled-clone-of="#path2383" | ||
| 364 | + xlink:href="#path2383" | ||
| 365 | + transform="matrix(-0.74,0,0,0.74,774.6387,116.04143)" | ||
| 366 | + id="use4292" | ||
| 367 | + style="opacity:0.61000001;fill:#3dae00;stroke:#3dae00" | ||
| 368 | + width="1100" | ||
| 369 | + height="110" /> | ||
| 370 | + <use | ||
| 371 | + x="0" | ||
| 372 | + y="0" | ||
| 373 | + inkscape:tiled-clone-of="#path2383" | ||
| 374 | + xlink:href="#path2383" | ||
| 375 | + transform="matrix(0.74,0,0,0.74,400.55433,95.61108)" | ||
| 376 | + id="use4294" | ||
| 377 | + style="opacity:0.61000001;fill:#3dae00;stroke:#3dae00" | ||
| 378 | + width="1100" | ||
| 379 | + height="110" /> | ||
| 380 | + <use | ||
| 381 | + x="0" | ||
| 382 | + y="0" | ||
| 383 | + inkscape:tiled-clone-of="#path2383" | ||
| 384 | + xlink:href="#path2383" | ||
| 385 | + transform="matrix(0.72,0,0,0.72,451.87641,80.68823)" | ||
| 386 | + id="use4298" | ||
| 387 | + style="opacity:0.57999998;fill:#3dae00;stroke:#3dae00" | ||
| 388 | + width="1100" | ||
| 389 | + height="110" /> | ||
| 390 | + <use | ||
| 391 | + x="0" | ||
| 392 | + y="0" | ||
| 393 | + inkscape:tiled-clone-of="#path2383" | ||
| 394 | + xlink:href="#path2383" | ||
| 395 | + transform="matrix(-0.7,0,0,0.7,714.8167,86.96713)" | ||
| 396 | + id="use4300" | ||
| 397 | + style="opacity:0.55;fill:#3dae00;stroke:#3dae00" | ||
| 398 | + width="1100" | ||
| 399 | + height="110" /> | ||
| 400 | + <use | ||
| 401 | + x="0" | ||
| 402 | + y="0" | ||
| 403 | + inkscape:tiled-clone-of="#path2383" | ||
| 404 | + xlink:href="#path2383" | ||
| 405 | + transform="matrix(0.7,0,0,0.7,470.36087,113.27339)" | ||
| 406 | + id="use4302" | ||
| 407 | + style="opacity:0.55;fill:#3dae00;stroke:#3dae00" | ||
| 408 | + width="1100" | ||
| 409 | + height="110" /> | ||
| 410 | + <use | ||
| 411 | + x="0" | ||
| 412 | + y="0" | ||
| 413 | + inkscape:tiled-clone-of="#path2383" | ||
| 414 | + xlink:href="#path2383" | ||
| 415 | + transform="matrix(-0.68,0,0,0.68,679.0063,119.93576)" | ||
| 416 | + id="use4304" | ||
| 417 | + style="opacity:0.51999996;fill:#3dae00;stroke:#3dae00" | ||
| 418 | + width="1100" | ||
| 419 | + height="110" /> | ||
| 420 | + <use | ||
| 421 | + x="0" | ||
| 422 | + y="0" | ||
| 423 | + inkscape:tiled-clone-of="#path2383" | ||
| 424 | + xlink:href="#path2383" | ||
| 425 | + transform="matrix(0.68,0,0,0.68,513.09468,80.63472)" | ||
| 426 | + id="use4306" | ||
| 427 | + style="opacity:0.51999996;fill:#3dae00;stroke:#3dae00" | ||
| 428 | + width="1100" | ||
| 429 | + height="110" /> | ||
| 430 | + <use | ||
| 431 | + x="0" | ||
| 432 | + y="0" | ||
| 433 | + inkscape:tiled-clone-of="#path2383" | ||
| 434 | + xlink:href="#path2383" | ||
| 435 | + transform="matrix(0.66,0,0,0.66,546.16945,87.45004)" | ||
| 436 | + id="use4310" | ||
| 437 | + style="opacity:0.48999999;fill:#3dae00;stroke:#3dae00" | ||
| 438 | + width="1100" | ||
| 439 | + height="110" /> | ||
| 440 | + <use | ||
| 441 | + x="0" | ||
| 442 | + y="0" | ||
| 443 | + inkscape:tiled-clone-of="#path2383" | ||
| 444 | + xlink:href="#path2383" | ||
| 445 | + transform="matrix(-0.64,0,0,0.64,621.0677,84.71451)" | ||
| 446 | + id="use4312" | ||
| 447 | + style="opacity:0.46000001;fill:#3dae00;stroke:#3dae00" | ||
| 448 | + width="1100" | ||
| 449 | + height="110" /> | ||
| 450 | + <use | ||
| 451 | + x="0" | ||
| 452 | + y="0" | ||
| 453 | + inkscape:tiled-clone-of="#path2383" | ||
| 454 | + xlink:href="#path2383" | ||
| 455 | + transform="matrix(-0.62,0,0,0.62,590.39719,113.26931)" | ||
| 456 | + id="use4316" | ||
| 457 | + style="opacity:0.43000004;fill:#3dae00;stroke:#3dae00" | ||
| 458 | + width="1100" | ||
| 459 | + height="110" /> | ||
| 460 | + <use | ||
| 461 | + x="0" | ||
| 462 | + y="0" | ||
| 463 | + inkscape:tiled-clone-of="#path2383" | ||
| 464 | + xlink:href="#path2383" | ||
| 465 | + transform="matrix(-0.6,0,0,0.6,556.91951,76.46879)" | ||
| 466 | + id="use4320" | ||
| 467 | + style="opacity:0.4;fill:#3dae00;stroke:#3dae00" | ||
| 468 | + width="1100" | ||
| 469 | + height="110" /> | ||
| 470 | + <use | ||
| 471 | + x="0" | ||
| 472 | + y="0" | ||
| 473 | + inkscape:tiled-clone-of="#path2383" | ||
| 474 | + xlink:href="#path2383" | ||
| 475 | + transform="matrix(0.6,0,0,0.6,625.826,95.85549)" | ||
| 476 | + id="use4322" | ||
| 477 | + style="opacity:0.4;fill:#3dae00;stroke:#3dae00" | ||
| 478 | + width="1100" | ||
| 479 | + height="110" /> | ||
| 480 | + <use | ||
| 481 | + x="0" | ||
| 482 | + y="0" | ||
| 483 | + inkscape:tiled-clone-of="#path2383" | ||
| 484 | + xlink:href="#path2383" | ||
| 485 | + transform="matrix(-0.58,0,0,0.58,530.42185,94.19491)" | ||
| 486 | + id="use4324" | ||
| 487 | + style="opacity:0.37000002;fill:#3dae00;stroke:#3dae00" | ||
| 488 | + width="1100" | ||
| 489 | + height="110" /> | ||
| 490 | + <use | ||
| 491 | + x="0" | ||
| 492 | + y="0" | ||
| 493 | + inkscape:tiled-clone-of="#path2383" | ||
| 494 | + xlink:href="#path2383" | ||
| 495 | + transform="matrix(0.58,0,0,0.58,662.29543,87.25565)" | ||
| 496 | + id="use4326" | ||
| 497 | + style="opacity:0.37000002;fill:#3dae00;stroke:#3dae00" | ||
| 498 | + width="1100" | ||
| 499 | + height="110" /> | ||
| 500 | + <use | ||
| 501 | + x="0" | ||
| 502 | + y="0" | ||
| 503 | + inkscape:tiled-clone-of="#path2383" | ||
| 504 | + xlink:href="#path2383" | ||
| 505 | + transform="matrix(-0.56,0,0,0.56,493.02892,66.32948)" | ||
| 506 | + id="use4328" | ||
| 507 | + style="opacity:0.33999999;fill:#3dae00;stroke:#3dae00" | ||
| 508 | + width="1100" | ||
| 509 | + height="110" /> | ||
| 510 | + <use | ||
| 511 | + x="0" | ||
| 512 | + y="0" | ||
| 513 | + inkscape:tiled-clone-of="#path2383" | ||
| 514 | + xlink:href="#path2383" | ||
| 515 | + transform="matrix(-0.54,0,0,0.54,478.02119,112.92213)" | ||
| 516 | + id="use4332" | ||
| 517 | + style="opacity:0.31000001;fill:#3dae00;stroke:#3dae00" | ||
| 518 | + width="1100" | ||
| 519 | + height="110" /> | ||
| 520 | + <use | ||
| 521 | + x="0" | ||
| 522 | + y="0" | ||
| 523 | + inkscape:tiled-clone-of="#path2383" | ||
| 524 | + xlink:href="#path2383" | ||
| 525 | + transform="matrix(-0.52,0,0,0.52,440.5863,95.17032)" | ||
| 526 | + id="use4336" | ||
| 527 | + style="opacity:0.27999998;fill:#3dae00;stroke:#3dae00" | ||
| 528 | + width="1100" | ||
| 529 | + height="110" /> | ||
| 530 | + <use | ||
| 531 | + x="0" | ||
| 532 | + y="0" | ||
| 533 | + inkscape:tiled-clone-of="#path2383" | ||
| 534 | + xlink:href="#path2383" | ||
| 535 | + transform="matrix(0.52,0,0,0.52,748.64706,94.95174)" | ||
| 536 | + id="use4338" | ||
| 537 | + style="opacity:0.27999998;fill:#3dae00;stroke:#3dae00" | ||
| 538 | + width="1100" | ||
| 539 | + height="110" /> | ||
| 540 | + <use | ||
| 541 | + x="0" | ||
| 542 | + y="0" | ||
| 543 | + inkscape:tiled-clone-of="#path2383" | ||
| 544 | + xlink:href="#path2383" | ||
| 545 | + transform="matrix(-0.5,0,0,0.5,428.18,57.15079)" | ||
| 546 | + id="use4340" | ||
| 547 | + style="opacity:0.25;fill:#3dae00;stroke:#3dae00" | ||
| 548 | + width="1100" | ||
| 549 | + height="110" /> | ||
| 550 | + <use | ||
| 551 | + x="0" | ||
| 552 | + y="0" | ||
| 553 | + inkscape:tiled-clone-of="#path2383" | ||
| 554 | + xlink:href="#path2383" | ||
| 555 | + transform="matrix(0.5,0,0,0.5,777.35081,59.12225)" | ||
| 556 | + id="use4342" | ||
| 557 | + style="opacity:0.25;fill:#3dae00;stroke:#3dae00" | ||
| 558 | + width="1100" | ||
| 559 | + height="110" /> | ||
| 560 | + <use | ||
| 561 | + x="0" | ||
| 562 | + y="0" | ||
| 563 | + inkscape:tiled-clone-of="#path2383" | ||
| 564 | + xlink:href="#path2383" | ||
| 565 | + transform="matrix(-0.48,0,0,0.48,380.77229,89.35633)" | ||
| 566 | + id="use4344" | ||
| 567 | + style="opacity:0.22000002;fill:#3dae00;stroke:#3dae00" | ||
| 568 | + width="1100" | ||
| 569 | + height="110" /> | ||
| 570 | + <use | ||
| 571 | + x="0" | ||
| 572 | + y="0" | ||
| 573 | + inkscape:tiled-clone-of="#path2383" | ||
| 574 | + xlink:href="#path2383" | ||
| 575 | + transform="matrix(-0.46,0,0,0.46,381.2781,66.27996)" | ||
| 576 | + id="use4348" | ||
| 577 | + style="opacity:0.18999999;fill:#3dae00;stroke:#3dae00" | ||
| 578 | + width="1100" | ||
| 579 | + height="110" /> | ||
| 580 | + <use | ||
| 581 | + x="0" | ||
| 582 | + y="0" | ||
| 583 | + inkscape:tiled-clone-of="#path2383" | ||
| 584 | + xlink:href="#path2383" | ||
| 585 | + transform="matrix(0.46,0,0,0.46,840.315,97.48542)" | ||
| 586 | + id="use4350" | ||
| 587 | + style="opacity:0.18999999;fill:#3dae00;stroke:#3dae00" | ||
| 588 | + width="1100" | ||
| 589 | + height="110" /> | ||
| 590 | + <use | ||
| 591 | + x="0" | ||
| 592 | + y="0" | ||
| 593 | + inkscape:tiled-clone-of="#path2383" | ||
| 594 | + xlink:href="#path2383" | ||
| 595 | + transform="matrix(-0.44,0,0,0.44,332.07652,107.40798)" | ||
| 596 | + id="use4352" | ||
| 597 | + style="opacity:0.16000001;fill:#3dae00;stroke:#3dae00" | ||
| 598 | + width="1100" | ||
| 599 | + height="110" /> | ||
| 600 | + <use | ||
| 601 | + x="0" | ||
| 602 | + y="0" | ||
| 603 | + inkscape:tiled-clone-of="#path2383" | ||
| 604 | + xlink:href="#path2383" | ||
| 605 | + transform="matrix(0.44,0,0,0.44,871.99686,57.97341)" | ||
| 606 | + id="use4354" | ||
| 607 | + style="opacity:0.16000001;fill:#3dae00;stroke:#3dae00" | ||
| 608 | + width="1100" | ||
| 609 | + height="110" /> | ||
| 610 | + <use | ||
| 611 | + x="0" | ||
| 612 | + y="0" | ||
| 613 | + inkscape:tiled-clone-of="#path2383" | ||
| 614 | + xlink:href="#path2383" | ||
| 615 | + transform="matrix(-0.42,0,0,0.42,315.89692,64.748)" | ||
| 616 | + id="use4356" | ||
| 617 | + style="opacity:0.12999998;fill:#3dae00;stroke:#3dae00" | ||
| 618 | + width="1100" | ||
| 619 | + height="110" /> | ||
| 620 | + <use | ||
| 621 | + x="0" | ||
| 622 | + y="0" | ||
| 623 | + inkscape:tiled-clone-of="#path2383" | ||
| 624 | + xlink:href="#path2383" | ||
| 625 | + transform="matrix(0.42,0,0,0.42,881.01725,80.17083)" | ||
| 626 | + id="use4358" | ||
| 627 | + style="opacity:0.12999998;fill:#3dae00;stroke:#3dae00" | ||
| 628 | + width="1100" | ||
| 629 | + height="110" /> | ||
| 630 | + <use | ||
| 631 | + x="0" | ||
| 632 | + y="0" | ||
| 633 | + inkscape:tiled-clone-of="#path2383" | ||
| 634 | + xlink:href="#path2383" | ||
| 635 | + transform="matrix(-0.4,0,0,0.4,282.41432,52.12608)" | ||
| 636 | + id="use4360" | ||
| 637 | + style="opacity:0.1;fill:#3dae00;stroke:#3dae00" | ||
| 638 | + width="1100" | ||
| 639 | + height="110" /> | ||
| 640 | + <use | ||
| 641 | + x="0" | ||
| 642 | + y="0" | ||
| 643 | + inkscape:tiled-clone-of="#path2383" | ||
| 644 | + xlink:href="#path2383" | ||
| 645 | + transform="matrix(0.4,0,0,0.4,918.9514,54.97962)" | ||
| 646 | + id="use4362" | ||
| 647 | + style="opacity:0.1;fill:#3dae00;stroke:#3dae00" | ||
| 648 | + width="1100" | ||
| 649 | + height="110" /> | ||
| 650 | + <use | ||
| 651 | + x="0" | ||
| 652 | + y="0" | ||
| 653 | + inkscape:tiled-clone-of="#path2383" | ||
| 654 | + xlink:href="#path2383" | ||
| 655 | + transform="matrix(-0.38,0,0,0.38,256.33252,92.93411)" | ||
| 656 | + id="use4364" | ||
| 657 | + style="opacity:0.07000002;fill:#3dae00;stroke:#3dae00" | ||
| 658 | + width="1100" | ||
| 659 | + height="110" /> | ||
| 660 | + <use | ||
| 661 | + x="0" | ||
| 662 | + y="0" | ||
| 663 | + inkscape:tiled-clone-of="#path2383" | ||
| 664 | + xlink:href="#path2383" | ||
| 665 | + transform="matrix(0.38,0,0,0.38,959.7041,68.97314)" | ||
| 666 | + id="use4366" | ||
| 667 | + style="opacity:0.07000002;fill:#3dae00;stroke:#3dae00" | ||
| 668 | + width="1100" | ||
| 669 | + height="110" /> | ||
| 670 | + <use | ||
| 671 | + x="0" | ||
| 672 | + y="0" | ||
| 673 | + inkscape:tiled-clone-of="#path2383" | ||
| 674 | + xlink:href="#path2383" | ||
| 675 | + transform="matrix(-0.36,0,0,0.36,222.66091,53.97533)" | ||
| 676 | + id="use4368" | ||
| 677 | + style="opacity:0.03999999;fill:#3dae00;stroke:#3dae00" | ||
| 678 | + width="1100" | ||
| 679 | + height="110" /> | ||
| 680 | + <use | ||
| 681 | + x="0" | ||
| 682 | + y="0" | ||
| 683 | + inkscape:tiled-clone-of="#path2383" | ||
| 684 | + xlink:href="#path2383" | ||
| 685 | + transform="matrix(0.36,0,0,0.36,949.4652,94.41618)" | ||
| 686 | + id="use4370" | ||
| 687 | + style="opacity:0.03999999;fill:#3dae00;stroke:#3dae00" | ||
| 688 | + width="1100" | ||
| 689 | + height="110" /> | ||
| 690 | + <use | ||
| 691 | + x="0" | ||
| 692 | + y="0" | ||
| 693 | + inkscape:tiled-clone-of="#path2383" | ||
| 694 | + xlink:href="#path2383" | ||
| 695 | + transform="translate(19.12135,125.11733)" | ||
| 696 | + id="use4242" | ||
| 697 | + style="fill:#3dae00;stroke:#3dae00" | ||
| 698 | + width="1100" | ||
| 699 | + height="110" /> | ||
| 700 | + <use | ||
| 701 | + x="0" | ||
| 702 | + y="0" | ||
| 703 | + inkscape:tiled-clone-of="#path2383" | ||
| 704 | + xlink:href="#path2383" | ||
| 705 | + transform="matrix(-1,0,0,1,1160.0703,136.07597)" | ||
| 706 | + id="use4240" | ||
| 707 | + style="fill:#3dae00;stroke:#3dae00" | ||
| 708 | + width="1100" | ||
| 709 | + height="110" /> | ||
| 710 | + <use | ||
| 711 | + x="0" | ||
| 712 | + y="0" | ||
| 713 | + inkscape:tiled-clone-of="#path2383" | ||
| 714 | + xlink:href="#path2383" | ||
| 715 | + transform="matrix(-0.92,0,0,0.92,1043.7278,125.72997)" | ||
| 716 | + id="use4256" | ||
| 717 | + style="opacity:0.87999998;fill:#3dae00;stroke:#3dae00" | ||
| 718 | + width="1100" | ||
| 719 | + height="110" /> | ||
| 720 | + <use | ||
| 721 | + x="0" | ||
| 722 | + y="0" | ||
| 723 | + inkscape:tiled-clone-of="#path2383" | ||
| 724 | + xlink:href="#path2383" | ||
| 725 | + transform="matrix(0.9,0,0,0.9,171.74242,130.52151)" | ||
| 726 | + id="use4262" | ||
| 727 | + style="opacity:0.85;fill:#3dae00;stroke:#3dae00" | ||
| 728 | + width="1100" | ||
| 729 | + height="110" /> | ||
| 730 | + <use | ||
| 731 | + x="0" | ||
| 732 | + y="0" | ||
| 733 | + inkscape:tiled-clone-of="#path2383" | ||
| 734 | + xlink:href="#path2383" | ||
| 735 | + transform="matrix(0.94,0,0,0.94,101.81128,130.92865)" | ||
| 736 | + id="use4254" | ||
| 737 | + style="opacity:0.91000001;fill:#3dae00;stroke:#3dae00" | ||
| 738 | + width="1100" | ||
| 739 | + height="110" /> | ||
| 740 | + <use | ||
| 741 | + x="0" | ||
| 742 | + y="0" | ||
| 743 | + inkscape:tiled-clone-of="#path2383" | ||
| 744 | + xlink:href="#path2383" | ||
| 745 | + transform="matrix(-0.86,0,0,0.86,920.9622,122.24642)" | ||
| 746 | + id="use4268" | ||
| 747 | + style="opacity:0.79000005;fill:#3dae00;stroke:#3dae00" | ||
| 748 | + width="1100" | ||
| 749 | + height="110" /> | ||
| 750 | + <use | ||
| 751 | + x="0" | ||
| 752 | + y="0" | ||
| 753 | + inkscape:tiled-clone-of="#path2383" | ||
| 754 | + xlink:href="#path2383" | ||
| 755 | + transform="matrix(-0.76,0,0,0.76,823.0797,125.43709)" | ||
| 756 | + id="use4288" | ||
| 757 | + style="opacity:0.63999999;fill:#3dae00;stroke:#3dae00" | ||
| 758 | + width="1100" | ||
| 759 | + height="110" /> | ||
| 760 | + <use | ||
| 761 | + x="0" | ||
| 762 | + y="0" | ||
| 763 | + inkscape:tiled-clone-of="#path2383" | ||
| 764 | + xlink:href="#path2383" | ||
| 765 | + transform="matrix(0.8,0,0,0.8,325.31745,121.49672)" | ||
| 766 | + id="use4282" | ||
| 767 | + style="opacity:0.7;fill:#3dae00;stroke:#3dae00" | ||
| 768 | + width="1100" | ||
| 769 | + height="110" /> | ||
| 770 | + <use | ||
| 771 | + x="0" | ||
| 772 | + y="0" | ||
| 773 | + inkscape:tiled-clone-of="#path2383" | ||
| 774 | + xlink:href="#path2383" | ||
| 775 | + transform="matrix(0.76,0,0,0.76,408.57026,125.06171)" | ||
| 776 | + id="use4290" | ||
| 777 | + style="opacity:0.63999999;fill:#3dae00;stroke:#3dae00" | ||
| 778 | + width="1100" | ||
| 779 | + height="110" /> | ||
| 780 | + <use | ||
| 781 | + x="0" | ||
| 782 | + y="0" | ||
| 783 | + inkscape:tiled-clone-of="#path2383" | ||
| 784 | + xlink:href="#path2383" | ||
| 785 | + transform="matrix(0.64,0,0,0.64,562.40311,117.81201)" | ||
| 786 | + id="use4314" | ||
| 787 | + style="opacity:0.46000001;fill:#3dae00;stroke:#3dae00" | ||
| 788 | + width="1100" | ||
| 789 | + height="110" /> | ||
| 790 | + <use | ||
| 791 | + x="0" | ||
| 792 | + y="0" | ||
| 793 | + inkscape:tiled-clone-of="#path2383" | ||
| 794 | + xlink:href="#path2383" | ||
| 795 | + transform="matrix(0.54,0,0,0.54,711.41522,110.7179)" | ||
| 796 | + id="use4334" | ||
| 797 | + style="opacity:0.31000001;fill:#3dae00;stroke:#3dae00" | ||
| 798 | + width="1100" | ||
| 799 | + height="110" /> | ||
| 800 | + <use | ||
| 801 | + x="0" | ||
| 802 | + y="0" | ||
| 803 | + inkscape:tiled-clone-of="#path2383" | ||
| 804 | + xlink:href="#path2383" | ||
| 805 | + transform="matrix(0.48,0,0,0.48,802.53081,77.93997)" | ||
| 806 | + id="use4346" | ||
| 807 | + style="opacity:0.22000002;fill:#3dae00;stroke:#3dae00" | ||
| 808 | + width="1100" | ||
| 809 | + height="110" /> | ||
| 810 | + <rect | ||
| 811 | + style="opacity:1;fill:url(#linearGradient3748);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
| 812 | + id="rect3740" | ||
| 813 | + width="1200" | ||
| 814 | + height="100" | ||
| 815 | + x="0" | ||
| 816 | + y="10" /> | ||
| 817 | +</svg> |
93.2 KB
19.3 KB
90 KB
93.9 KB
97.6 KB
90.3 KB
public/designs/templates/default/stylesheets/forms.css
| @@ -4,7 +4,7 @@ | @@ -4,7 +4,7 @@ | ||
| 4 | } | 4 | } |
| 5 | 5 | ||
| 6 | .formlabel { | 6 | .formlabel { |
| 7 | - font-size: 12px; | 7 | + /* font-size: 11px; */ |
| 8 | color: #444; | 8 | color: #444; |
| 9 | display: block; | 9 | display: block; |
| 10 | padding: 2px 5px; | 10 | padding: 2px 5px; |
| @@ -41,5 +41,6 @@ | @@ -41,5 +41,6 @@ | ||
| 41 | color: #505050; | 41 | color: #505050; |
| 42 | background: #BBB url("../images/bt-bg.png") top left repeat-x; | 42 | background: #BBB url("../images/bt-bg.png") top left repeat-x; |
| 43 | padding: 0px 30px; | 43 | padding: 0px 30px; |
| 44 | + margin: auto; | ||
| 44 | } | 45 | } |
| 45 | 46 |
public/designs/templates/default/stylesheets/login-box.css
0 → 100644
| @@ -0,0 +1,37 @@ | @@ -0,0 +1,37 @@ | ||
| 1 | + | ||
| 2 | +#login-box { | ||
| 3 | + border: 2px solid #888; | ||
| 4 | + padding: 3px 10% 8px 10%; | ||
| 5 | + font-size: 10px; | ||
| 6 | +} | ||
| 7 | + | ||
| 8 | +#login-box .formfieldline input { | ||
| 9 | + width: 99%; | ||
| 10 | +} | ||
| 11 | + | ||
| 12 | +#login-box form { | ||
| 13 | + margin: 0px; | ||
| 14 | + padding: 0px; | ||
| 15 | +} | ||
| 16 | + | ||
| 17 | +#login-box h2 { | ||
| 18 | + color: #888; | ||
| 19 | + font-size: 18px; | ||
| 20 | + text-align: center; | ||
| 21 | + margin: 0px; | ||
| 22 | + padding: 0px; | ||
| 23 | +} | ||
| 24 | + | ||
| 25 | +#login-box p { | ||
| 26 | + text-align: center; | ||
| 27 | + margin: 0px; | ||
| 28 | + padding: 0px; | ||
| 29 | +} | ||
| 30 | + | ||
| 31 | +#login-box #forgot-passwd { | ||
| 32 | + padding-bottom: 6px; | ||
| 33 | +} | ||
| 34 | + | ||
| 35 | +#want-to-be-an-user { | ||
| 36 | + font-size: 13px; | ||
| 37 | +} |
public/designs/templates/default/stylesheets/style.css
| @@ -2,39 +2,37 @@ | @@ -2,39 +2,37 @@ | ||
| 2 | @import url("contentblocks.css"); | 2 | @import url("contentblocks.css"); |
| 3 | @import url("forms.css"); | 3 | @import url("forms.css"); |
| 4 | @import url("table.css"); | 4 | @import url("table.css"); |
| 5 | +@import url("login-box.css"); | ||
| 5 | 6 | ||
| 6 | body { | 7 | body { |
| 8 | + padding: 0px; | ||
| 9 | + margin: 0px; | ||
| 7 | font-family: Verdana, Sans-Serif; | 10 | font-family: Verdana, Sans-Serif; |
| 8 | font-size: 14px; | 11 | font-size: 14px; |
| 12 | + /* | ||
| 13 | + ** a imagem de fundo colorida é mais pesada, por isso carregamos | ||
| 14 | + ** essa cinza mais leve antes para melhorar a esperiência do usuário. | ||
| 15 | + */ | ||
| 16 | + background-position: 50% 25px; | ||
| 17 | + background-repeat: repeat-x; | ||
| 18 | + background-attachment: fixed; | ||
| 19 | + background-image: url(../images/bg-top-cinza.jpg); | ||
| 9 | } | 20 | } |
| 10 | 21 | ||
| 11 | -body.category #wrap { | ||
| 12 | - background-attachment: fixed; | ||
| 13 | - background: url("../images/bgblue.png") top left no-repeat; | 22 | +#wrap { |
| 23 | + background-position: 50% 25px; | ||
| 24 | + background-repeat: repeat-x; | ||
| 25 | + background-attachment: fixed; | ||
| 26 | + background-image: url(../images/bg-top-azul.png); | ||
| 14 | } | 27 | } |
| 15 | 28 | ||
| 16 | -body.category1 #wrap { | ||
| 17 | - background-attachment: fixed; | ||
| 18 | - background: url("../images/bgorange.png") top left no-repeat; | ||
| 19 | -} | ||
| 20 | - | ||
| 21 | -body.category2 #wrap { | ||
| 22 | - background-attachment: fixed; | ||
| 23 | - background: url("../images/bggreen.png") top left no-repeat; | ||
| 24 | -} | ||
| 25 | - | ||
| 26 | -body.category3 #wrap { | ||
| 27 | - background-attachment: fixed; | ||
| 28 | - background: url("../images/bgpurple.png") top left no-repeat; | ||
| 29 | -} | ||
| 30 | - | ||
| 31 | -body.category4 #wrap { | ||
| 32 | - background-attachment: fixed; | ||
| 33 | - background: url("../images/bgred.png") top left no-repeat; | ||
| 34 | -} | 29 | +body.category1 #wrap { background-image: url("../images/bg-top-laranja.png"); } |
| 30 | +body.category2 #wrap { background-image: url("../images/bg-top-verde.png"); } | ||
| 31 | +body.category3 #wrap { background-image: url("../images/bg-top-lilas.png"); } | ||
| 32 | +body.category4 #wrap { background-image: url("../images/bg-top-vermelho.png"); } | ||
| 35 | 33 | ||
| 36 | #header { | 34 | #header { |
| 37 | - height: 150px; | 35 | + height: 60px; |
| 38 | } | 36 | } |
| 39 | 37 | ||
| 40 | #design_boxes { | 38 | #design_boxes { |
| @@ -96,3 +94,59 @@ div#notice { | @@ -96,3 +94,59 @@ div#notice { | ||
| 96 | background: #ffffa9; | 94 | background: #ffffa9; |
| 97 | padding: 10px; | 95 | padding: 10px; |
| 98 | } | 96 | } |
| 97 | + | ||
| 98 | +/* * * Generic Content Formating * * */ | ||
| 99 | + | ||
| 100 | +#content h1 { | ||
| 101 | + text-align: center; | ||
| 102 | +} | ||
| 103 | + | ||
| 104 | +#content a { | ||
| 105 | + color: #05B; | ||
| 106 | +} | ||
| 107 | +#content a:visited { | ||
| 108 | + color: #68C; | ||
| 109 | +} | ||
| 110 | +#content a:hover, | ||
| 111 | +#content a:active { | ||
| 112 | + color: #08F; | ||
| 113 | +} | ||
| 114 | + | ||
| 115 | +/* Category */ | ||
| 116 | + | ||
| 117 | +#view-category { /* none */ } | ||
| 118 | + | ||
| 119 | +#categiry-name { | ||
| 120 | + margin: 0px; | ||
| 121 | + position: relative; | ||
| 122 | + top: -5px; | ||
| 123 | +} | ||
| 124 | + | ||
| 125 | +#category-ancestors { | ||
| 126 | + padding-top: 25px; | ||
| 127 | + font-weight: bold; | ||
| 128 | +} | ||
| 129 | + | ||
| 130 | +#content #category-ancestors a { | ||
| 131 | + color: #000; | ||
| 132 | + text-decoration: none; | ||
| 133 | +} | ||
| 134 | +#content #category-ancestors a:hover { | ||
| 135 | + color: #07F; | ||
| 136 | + text-decoration: underline; | ||
| 137 | +} | ||
| 138 | + | ||
| 139 | +#category-childs h4, | ||
| 140 | +#category-childs ul { | ||
| 141 | + margin: 0px; | ||
| 142 | +} | ||
| 143 | + | ||
| 144 | +#category-childs a { | ||
| 145 | + font-weight: bold; | ||
| 146 | + text-decoration: none; | ||
| 147 | +} | ||
| 148 | + | ||
| 149 | +#cat-no-child { | ||
| 150 | + color: #AAA; | ||
| 151 | +} | ||
| 152 | + |
public/stylesheets/button.css