El usuario visitante puede ver el catálogo, menú de seleccion entre la nueva y la antigua web
This commit is contained in:
parent
9cdb3102d5
commit
56b43bb61d
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.211-1) stable; urgency=low
|
||||
hedera-web (1.211-deb8) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -11,8 +11,21 @@ Vn.Catalog = new Class
|
|||
|
||||
,activate: function ()
|
||||
{
|
||||
Vn.BasketChecker.check (this.conn,
|
||||
this.onBasketCheck.bind (this));
|
||||
if (!Vn.Url.getQuery ('guest'))
|
||||
{
|
||||
Vn.BasketChecker.check (this.conn,
|
||||
this.onBasketCheck.bind (this));
|
||||
}
|
||||
else
|
||||
{
|
||||
var query = 'CALL basket_configure_for_guest ()';
|
||||
this.conn.execQuery (query, this.onBasketForGuest.bind (this));
|
||||
}
|
||||
}
|
||||
|
||||
,onBasketForGuest: function ()
|
||||
{
|
||||
this.onBasketCheck (true);
|
||||
}
|
||||
|
||||
,onBasketCheck: function (isOk)
|
||||
|
@ -144,7 +157,10 @@ Vn.Catalog = new Class
|
|||
|
||||
,onBasketClick: function ()
|
||||
{
|
||||
this.hash.set ({'form': 'ecomerce/basket'});
|
||||
if (!Vn.Url.getQuery ('guest'))
|
||||
this.hash.set ({'form': 'ecomerce/basket'});
|
||||
else
|
||||
Htk.Toast.showError (_('YouMustBeLoggedIn'));
|
||||
}
|
||||
|
||||
,featuresRender: function (renderer, form)
|
||||
|
@ -186,6 +202,12 @@ Vn.Catalog = new Class
|
|||
|
||||
,onAddItemClick: function (column, value, row, button)
|
||||
{
|
||||
if (Vn.Url.getQuery ('guest'))
|
||||
{
|
||||
Htk.Toast.showError (_('YouMustBeLoggedIn'));
|
||||
return;
|
||||
}
|
||||
|
||||
var itemId = this.$('items-model').get (row, 'item_id')
|
||||
this.$('lots-batch').addValue ('item', itemId);
|
||||
|
||||
|
|
|
@ -94,6 +94,14 @@ if (!isset ($_SESSION['skipBrowser']) && $page != 'update-browser')
|
|||
$_SESSION['skipBrowser'] = TRUE;
|
||||
}
|
||||
|
||||
// If enabled, requests the user to choose between two web versions
|
||||
|
||||
if (FALSE && !isset ($_SESSION['skipVersionMenu']) && $page != 'version-menu')
|
||||
{
|
||||
$_SESSION['skipVersionMenu'] = TRUE;
|
||||
header ('Location: ?page=version-menu');
|
||||
}
|
||||
|
||||
// Setting the version
|
||||
|
||||
setcookie ('hedera_version', Web::getVersion ());
|
||||
|
|
|
@ -12,6 +12,7 @@ Vn.Locale.add
|
|||
,"Loading": "Carregant"
|
||||
,"Loading...": "Carregant..."
|
||||
,"ReallyDelete": "Estàs segur que vols esborrar la línia?"
|
||||
,"YouMustBeLoggedIn": "Has d'estar registrat com a usuari"
|
||||
,"EmptyList": "Llistat buit"
|
||||
,"NoData": "Sense dades"
|
||||
,"ErrorLoadingData": "Error"
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Welcome to Verdnatura, where are you going?": "Benvingut a Verdnatura, On vols anar?"
|
||||
|
||||
,"New website": "Nova web"
|
||||
,"(Fantastic)": "(Fantàstica)"
|
||||
,"Old website": "Antiga web"
|
||||
,"(Best choose new)": "(Millor triï la nova)"
|
||||
}
|
|
@ -12,6 +12,7 @@ Vn.Locale.add
|
|||
,"Loading": "Cargando"
|
||||
,"Loading...": "Cargando..."
|
||||
,"ReallyDelete": "¿Estás seguro de que quieres borrar la línea?"
|
||||
,"YouMustBeLoggedIn": "Debes estar registrado como usuario"
|
||||
,"EmptyList": "Lista vacía"
|
||||
,"NoData": "Sin datos"
|
||||
,"ErrorLoadingData": "Error"
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Welcome to Verdnatura, where are you going?": "Bienvenido a Verdnatura, ¿Dónde quieres ir?"
|
||||
|
||||
,"New website": "Nueva web"
|
||||
,"(Fantastic)": "(Fantástica)"
|
||||
,"Old website": "Antigua web"
|
||||
,"(Best choose new)": "(Mejor elige la nueva)"
|
||||
}
|
|
@ -12,6 +12,7 @@ Vn.Locale.add
|
|||
,"Loading": "Chargement"
|
||||
,"Loading...": "Chargement..."
|
||||
,"ReallyDelete": "Voulez-vous vraiment supprimer la ligne?"
|
||||
,"YouMustBeLoggedIn": "Vous devez être un utilisateur enregistré"
|
||||
,"EmptyList": "Vider la liste"
|
||||
,"NoData": "Aucune donnée"
|
||||
,"ErrorLoadingData": "Erreur"
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Welcome to Verdnatura, where are you going?": "Bienvenue à Verdnatura, où allez-vous?"
|
||||
|
||||
,"New website": "Nouveau site web"
|
||||
,"(Fantastic)": "(Fantastique)"
|
||||
,"Old website": "Vieux web"
|
||||
,"(Best choose new)": "(Meilleur choisir nouveau)"
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<meta name="viewport" content="user-scalable=no"/>
|
||||
<link href="//fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"/>
|
||||
<link rel="stylesheet" type="text/css" href="pages/version-menu/style.css?version=2"/>
|
||||
<title>Verdnatura</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<h1><?=s('Welcome to Verdnatura, where are you going?')?></h1>
|
||||
<div>
|
||||
<a href="?page=login">
|
||||
<div>
|
||||
<img src="pages/version-menu/new-web.svg" alt=""></img>
|
||||
<p>
|
||||
<?=s('New website')?>
|
||||
|
||||
</p>
|
||||
<p>
|
||||
<?=s('(Fantastic)')?>
|
||||
</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="https://www.verdnatura.es/">
|
||||
<div>
|
||||
<img src="pages/version-menu/old-web.svg" alt=""></img>
|
||||
<p>
|
||||
<?=s('Old website')?>
|
||||
</p>
|
||||
<p>
|
||||
<?=s('(Best choose new)')?>
|
||||
</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,233 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:ns="&#38;ns_sfw;"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="200"
|
||||
height="200"
|
||||
viewBox="0 0 200 199.99999"
|
||||
enable-background="new 0 0 434.057 306.911"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="new-web.svg"><defs
|
||||
id="defs137" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1043"
|
||||
id="namedview135"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="2.6848173"
|
||||
inkscape:cx="1.4297595"
|
||||
inkscape:cy="127.55081"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Capa_1" /><metadata
|
||||
id="metadata3"><ns:sfw><ns:slices /><ns:sliceSourceBounds
|
||||
width="250.32"
|
||||
height="250.32"
|
||||
y="-567.01"
|
||||
x="89.06"
|
||||
bottomLeftOrigin="true" /></ns:sfw><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g
|
||||
id="g9"
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-100.71768,-41.922394)"><radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="108.126"
|
||||
cy="153.45509"
|
||||
cx="217.02831"
|
||||
id="SVGID_1_"><stop
|
||||
id="stop12"
|
||||
style="stop-color:#93C01E"
|
||||
offset="0" /><stop
|
||||
id="stop14"
|
||||
style="stop-color:#8FBD1F"
|
||||
offset="0.304" /><stop
|
||||
id="stop16"
|
||||
style="stop-color:#84B520"
|
||||
offset="0.5783" /><stop
|
||||
id="stop18"
|
||||
style="stop-color:#72A823"
|
||||
offset="0.8403" /><stop
|
||||
id="stop20"
|
||||
style="stop-color:#639D25"
|
||||
offset="1" /><stop
|
||||
id="stop22"
|
||||
style="stop-color:#609A25"
|
||||
offset="1" /></radialGradient><path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#SVGID_1_)"
|
||||
id="path24"
|
||||
d="m 325.154,241.738 c 0,10.914 -8.929,19.843 -19.843,19.843 l -176.566,0 c -10.914,0 -19.843,-8.929 -19.843,-19.843 l 0,-176.566 c 0,-10.914 8.929,-19.843 19.843,-19.843 l 176.566,0 c 10.914,0 19.843,8.929 19.843,19.843 l 0,176.566 z" /></g><g
|
||||
id="g4261"
|
||||
transform="translate(2.8816553,-6.0234074)"><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="XMLID_12_"><g
|
||||
id="g27"><path
|
||||
id="path29"
|
||||
d="m 307.028,144.175 c 0.15,12.569 -2.19,25.439 -5.5,35.72 -9,29.62 -36,55.53 -67,54.47 -27,-1.05 -57.5,-3.17 -80,-21.68 -21.34,-17.03 -23.55,-49.851 -16.03,-76.62 13.84,0.34 27.96,0.5 41.03,-2.77 11,-3 35.5,-9 41.5,-19.5 l 1.23,-0.421 c 20.511,27.351 55.971,38.78 84.77,30.801 z m -59.39,10.059 c 0.22,-9.05 -12.95,-10.43 -12.67,-1.42 -2.01,-5.85 -8.74,-8.28 -10.63,-1.09 -1.48,6.149 5.68,13.56 9.51,17.25 l 2.04,1.56 c 1.341,-6.51 11.35,-9.239 11.75,-16.3 z m -52.639,0 c 0.22,-9.05 -12.94,-10.43 -12.67,-1.42 -2.01,-5.85 -8.74,-8.28 -10.63,-1.09 -1.48,6.149 5.68,13.56 9.51,17.25 l 2.04,1.56 c 1.339,-6.51 11.349,-9.239 11.75,-16.3 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ebc7b9" /><path
|
||||
id="path31"
|
||||
d="m 305.828,130.864 c 0.78,4.311 1.15,8.79 1.2,13.311 -28.8,7.979 -64.26,-3.45 -84.77,-30.801 -1.95,-2.6 -3.77,-5.359 -5.43,-8.25 -2.64,-4.569 -4.88,-9.5 -6.66,-14.77 -0.96,-2.81 -1.78,-5.71 -2.45,-8.72 -0.07,-0.28 -0.13,-0.561 -0.19,-0.84 l -1.65,-1.891 c 3,-0.49 6,-0.859 8.98,-1.12 l 0.17,2.011 c 1,20.5 23.5,41.5 41.5,47.5 14.82,4.631 33.51,7.551 49.3,3.57 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#842d1e" /><path
|
||||
id="path33"
|
||||
d="m 301.548,116.925 c 2.02,4.29 3.41,9 4.28,13.939 -15.79,3.98 -34.48,1.061 -49.3,-3.569 -18,-6 -40.5,-27 -41.5,-47.5 l -0.17,-2.011 c 3.77,-0.33 7.51,-0.489 11.17,-0.489 l -5.22,2.64 c 1.69,0 3.43,0.06 5.23,0.17 l -0.01,0.19 c 3.28,23.88 51.73,40.75 75.52,36.63 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a44b39" /><path
|
||||
id="path35"
|
||||
d="m 301.548,116.925 c -23.79,4.12 -72.24,-12.75 -75.52,-36.63 l 0.01,-0.19 c 3.89,0.229 8.01,0.72 12.25,1.45 13.91,14.21 34.57,21.62 53.75,22.609 4.09,3.49 7.211,7.841 9.51,12.761 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#842d1e" /><path
|
||||
id="path37"
|
||||
d="m 291.528,103.734 c 0.17,0.14 0.34,0.28 0.51,0.43 -19.18,-0.989 -39.84,-8.399 -53.75,-22.609 18.72,3.21 39.711,11.059 53.24,22.179 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a44b39" /><path
|
||||
id="path39"
|
||||
d="m 234.968,152.814 c -0.28,-9.01 12.89,-7.63 12.67,1.42 -0.4,7.061 -10.41,9.79 -11.75,16.3 l -2.04,-1.56 c -3.83,-3.69 -10.99,-11.101 -9.51,-17.25 1.891,-7.19 8.62,-4.759 10.63,1.09 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a61916" /><path
|
||||
id="path41"
|
||||
d="m 222.258,113.374 -1.23,0.421 c -6,10.5 -30.5,16.5 -41.5,19.5 -13.07,3.27 -27.19,3.109 -41.03,2.77 1.23,-4.36 2.71,-8.56 4.41,-12.51 10.16,0.729 21.86,-0.53 30.62,-1.26 7.5,-1 15.5,-2.5 22.5,-5.5 7,-3 13,-9 20.5,-11.5 l 0.3,-0.171 c 1.66,2.891 3.48,5.65 5.43,8.25 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a44b39" /><path
|
||||
id="path43"
|
||||
d="m 216.828,105.124 -0.3,0.171 c -7.5,2.5 -13.5,8.5 -20.5,11.5 -7,3 -15,4.5 -22.5,5.5 -8.76,0.729 -20.46,1.989 -30.62,1.26 0.83,-1.91 1.7,-3.76 2.62,-5.54 1.8,-3.5 3.87,-6.74 6.16,-9.73 19.39,-0.21 50.11,-2.12 56.34,-17.489 l 2.14,-0.44 c 1.78,5.268 4.02,10.199 6.66,14.768 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#842d1e" /><path
|
||||
id="path45"
|
||||
d="m 210.168,90.354 -2.14,0.44 c -6.23,15.369 -36.95,17.279 -56.34,17.489 4.28,-5.59 9.35,-10.3 14.95,-14.229 4.8,-0.24 9.59,-0.66 14.39,-1.26 9.5,-2 17,-8.5 26,-11 l 0.69,-0.16 c 0.67,3.011 1.49,5.911 2.45,8.72 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a44b39" /><path
|
||||
id="path47"
|
||||
d="m 207.528,80.795 c 0.06,0.279 0.12,0.56 0.19,0.84 l -0.69,0.16 c -9,2.5 -16.5,9 -26,11 -4.8,0.6 -9.59,1.02 -14.39,1.26 11.54,-8.101 25.36,-12.88 39.24,-15.15 l 1.65,1.89 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#842d1e" /><path
|
||||
id="path49"
|
||||
d="m 182.328,152.814 c -0.27,-9.01 12.89,-7.63 12.67,1.42 -0.4,7.061 -10.41,9.79 -11.75,16.3 l -2.04,-1.56 c -3.83,-3.69 -10.99,-11.101 -9.51,-17.25 1.89,-7.19 8.62,-4.759 10.63,1.09 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a61916" /></g><g
|
||||
id="g51" /></g><path
|
||||
id="path53"
|
||||
d="m 178.35656,94.836677 c -6.2011,1.546344 -12.73514,0.335719 -19.0463,0.312598 -6.81427,-0.02497 -12.85352,-0.710282 -19.40699,-2.671883 -6.66722,-1.99397 -12.86832,-4.851747 -18.60607,-8.780497 -5.26053,-3.603203 -11.89908,-7.524554 -15.60956,-12.815604 -0.64092,-0.913748 -1.52045,-1.330854 -2.41108,-1.403917 -1.36322,-1.45386 -3.869558,-1.797903 -4.990473,0.47907 -4.922035,9.993896 -19.96652,11.888908 -29.648743,14.524722 -7.306291,1.988421 -14.662523,3.497771 -22.228696,3.993489 -3.549563,0.232136 -7.148142,0.378262 -10.694005,0.06381 -3.322051,-0.294101 -6.516472,-1.020106 -9.872741,-0.907275 -4.135916,0.138727 -4.148864,6.570113 0,6.430461 3.326674,-0.111906 6.582135,0.502192 9.872741,0.907275 4.029558,0.495718 8.24501,0.09618 12.280117,-0.168322 8.719457,-0.571556 17.232673,-2.689455 25.622885,-5.019145 9.613784,-2.668183 21.913323,-5.054288 28.263325,-13.455598 3.41083,3.923201 7.84362,6.955774 12.04243,9.960602 6.70421,4.798106 13.34184,8.57703 21.12073,11.35897 7.46166,2.668187 14.7883,3.954647 22.69297,3.938927 7.43484,-0.0166 15.02321,1.27351 22.33043,-0.54751 4.02123,-1.00161 2.31396,-7.202711 -1.71097,-6.200177 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#bd988b" /><path
|
||||
id="path55"
|
||||
d="m 178.98361,111.29988 c 0,0 -13.87641,67.34643 -89.02022,65.78621 0,0 28.63789,10.24453 56.63023,-9.05795 27.99326,-19.30063 32.38999,-56.72826 32.38999,-56.72826 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#bd988b" /><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g57"><g
|
||||
id="g59"><path
|
||||
id="path61"
|
||||
d="m 226.028,75.366 c -21.731,0.109 -44.027,5.164 -61.841,18.083 -17.754,12.875 -26.837,33.436 -30.259,54.586 -3.263,20.171 -0.875,42.404 12.075,58.881 15.159,19.288 42.388,25.518 65.462,27.926 11.851,1.236 24.397,2.557 36.186,0.336 10.942,-2.062 20.935,-7.712 29.447,-14.719 17.711,-14.578 27.118,-36.233 30.561,-58.472 3.022,-19.521 2.034,-43.279 -12.929,-57.992 -8.021,-7.886 -19.127,-12.96 -29.455,-17.002 -11.297,-4.421 -23.262,-7.224 -35.315,-8.501 -3.041,-0.323 -6.099,-0.457 -9.155,-0.481 -2.488,-0.021 -2.486,3.837 0,3.856 24.073,0.191 51.749,8.252 70.297,24.029 17.477,14.867 15.615,43.957 11.147,64.05 -5.305,23.861 -19.41,45.563 -41.621,56.75 -11.775,5.931 -23.918,5.957 -36.75,5.245 -13.384,-0.742 -26.733,-2.296 -39.633,-6.057 -19.035,-5.551 -36.346,-17.073 -43.521,-36.145 -6.388,-16.979 -5.026,-36.466 -0.228,-53.643 5.169,-18.504 15.792,-33.85 32.398,-43.773 15.838,-9.463 34.887,-13.01 53.135,-13.102 2.486,-0.01 2.487,-3.867 -0.001,-3.855 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g63"><g
|
||||
id="g65"><path
|
||||
id="path67"
|
||||
d="m 205.645,81.313 c 5.402,24.115 20.444,44.519 42.009,56.622 19.31,10.837 43.325,14.034 64.394,6.708 2.363,-0.821 1.347,-4.597 -1.039,-3.767 -19.931,6.93 -41.85,3.957 -60.335,-5.746 -21.321,-11.191 -36.033,-31.512 -41.262,-54.855 -0.551,-2.458 -4.317,-1.416 -3.767,1.038 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g69"><g
|
||||
id="g71"><path
|
||||
id="path73"
|
||||
d="m 213.075,79.795 c 1.374,19.379 16.987,35.576 33.013,44.895 8.896,5.173 19.299,7.415 29.371,8.927 11.51,1.728 23.426,1.578 34.589,-1.938 2.394,-0.754 1.371,-4.525 -1.039,-3.767 -18.56,5.847 -42.543,3.112 -59.751,-5.931 -15.306,-8.045 -30.997,-24.132 -32.276,-42.186 -0.177,-2.498 -4.085,-2.516 -3.907,0 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g75"><g
|
||||
id="g77"><path
|
||||
id="path79"
|
||||
d="m 224.145,80.813 c 2.526,15.8 19.634,25.236 32.953,30.821 14.466,6.064 33.964,11.161 49.45,6.043 2.38,-0.787 1.36,-4.56 -1.039,-3.767 -13.93,4.604 -30.788,0.128 -44.035,-4.733 -13.138,-4.822 -31.1,-13.998 -33.562,-29.402 -0.397,-2.482 -4.161,-1.425 -3.767,1.038 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g81"><g
|
||||
id="g83"><path
|
||||
id="path85"
|
||||
d="m 236.647,82.676 c 15.646,15.771 37.927,23.381 59.881,23.572 2.521,0.021 2.518,-3.885 0,-3.906 -20.941,-0.183 -42.188,-7.377 -57.119,-22.429 -1.775,-1.79 -4.537,0.974 -2.762,2.763 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g87"><g
|
||||
id="g89"><path
|
||||
id="path91"
|
||||
d="m 206.342,89.809 c -4.713,10.742 -19.143,13.318 -29.474,14.875 -11.677,1.76 -23.562,1.667 -35.339,1.658 -2.519,-0.002 -2.519,3.904 0,3.906 12.557,0.01 25.088,-0.096 37.535,-1.971 11.004,-1.658 25.692,-5.192 30.652,-16.497 1.001,-2.284 -2.364,-4.274 -3.374,-1.971 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g93"><g
|
||||
id="g95"><path
|
||||
id="path97"
|
||||
d="m 206.509,79.911 c -7.555,2.298 -14.073,6.829 -21.401,9.664 -8.415,3.257 -19.169,2.724 -28.08,2.767 -2.519,0.012 -2.52,3.918 0,3.906 8.994,-0.043 18.924,0.15 27.617,-2.392 8.061,-2.358 14.857,-7.731 22.902,-10.179 2.404,-0.73 1.379,-4.501 -1.038,-3.766 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g99"><g
|
||||
id="g101"><path
|
||||
id="path103"
|
||||
d="m 216.009,103.411 c -6.168,2.269 -11.294,6.211 -16.867,9.589 -6.767,4.102 -14.934,5.669 -22.642,6.91 -13.64,2.197 -30.022,3.783 -43.453,0.001 -2.43,-0.685 -3.459,3.085 -1.038,3.767 13.395,3.771 27.89,1.725 41.519,0.57 7.793,-0.661 15.792,-2.621 23.019,-5.57 7.311,-2.982 13.052,-8.76 20.5,-11.5 2.345,-0.862 1.332,-4.639 -1.038,-3.767 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g105"><g
|
||||
id="g107"><path
|
||||
id="path109"
|
||||
d="m 219.342,112.809 c -3.538,5.693 -10.51,8.738 -16.476,11.18 -6.536,2.676 -13.378,4.586 -20.184,6.432 -19.599,5.311 -39.601,3.488 -59.654,3.422 -2.52,-0.009 -2.519,3.897 0,3.906 20.855,0.068 41.351,1.68 61.714,-3.839 12.468,-3.379 30.615,-7.29 37.972,-19.129 1.335,-2.146 -2.046,-4.107 -3.372,-1.972 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g111"><g
|
||||
id="g113"><path
|
||||
id="path115"
|
||||
d="m 182.575,167.607 c -2.819,-2.738 -5.435,-5.59 -7.48,-8.966 -1.574,-2.598 -2.21,-5.403 -0.817,-8.2 1.883,-3.781 5.528,1.26 6.191,2.887 0.791,1.941 3.726,1.796 3.788,-0.512 0.202,-7.594 11.952,-3.244 7.83,4.225 -2.816,5.105 -9.019,6.945 -10.697,12.978 -0.668,2.4 3.053,3.418 3.719,1.025 1.39,-4.995 6.941,-7.152 9.74,-11.228 2.455,-3.576 2.833,-7.977 0.159,-11.563 -4.818,-6.462 -14.398,-3.272 -14.607,4.563 1.263,-0.172 2.525,-0.342 3.788,-0.514 -2.301,-5.65 -8.776,-9.922 -13.24,-3.809 -5.392,7.384 4.091,17.17 8.9,21.84 1.783,1.734 4.513,-0.99 2.726,-2.726 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g117"><g
|
||||
id="g119"><path
|
||||
id="path121"
|
||||
d="m 235.214,167.607 c -2.819,-2.738 -5.435,-5.59 -7.48,-8.966 -1.574,-2.598 -2.21,-5.403 -0.816,-8.2 1.883,-3.781 5.528,1.26 6.191,2.887 0.791,1.941 3.727,1.796 3.788,-0.512 0.201,-7.594 11.951,-3.245 7.829,4.225 -2.816,5.105 -9.019,6.945 -10.697,12.978 -0.668,2.4 3.053,3.418 3.719,1.025 1.39,-4.995 6.941,-7.152 9.74,-11.228 2.455,-3.576 2.833,-7.977 0.159,-11.563 -4.818,-6.461 -14.399,-3.272 -14.607,4.563 1.263,-0.172 2.525,-0.342 3.788,-0.514 -2.302,-5.648 -8.776,-9.922 -13.24,-3.809 -5.392,7.384 4.091,17.17 8.9,21.84 1.783,1.734 4.513,-0.991 2.726,-2.726 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g123"><g
|
||||
id="g125"><path
|
||||
id="path127"
|
||||
d="m 206.165,174.932 c -2.758,2.425 -5.56,5.749 -5.157,9.677 0.423,4.122 4.437,6.116 8.008,7.046 2.409,0.627 3.431,-3.093 1.025,-3.719 -1.972,-0.514 -4.977,-1.383 -5.229,-3.832 -0.265,-2.584 2.357,-4.931 4.08,-6.445 1.872,-1.645 -0.867,-4.362 -2.727,-2.727 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
transform="matrix(0.92484694,0,0,0.92484694,-103.81794,-38.133192)"
|
||||
id="g129"><g
|
||||
id="g131"><path
|
||||
id="path133"
|
||||
d="m 185.52,215.833 c 5.588,2.601 11.259,3.283 17.379,3.195 6.112,-0.088 12.653,-0.151 18.684,-1.168 12.009,-2.025 23.418,-7.933 33.644,-14.366 18.476,-11.625 29.383,-29.234 36.1,-49.646 0.842,-2.559 -3.182,-3.646 -4.018,-1.107 -6.116,18.588 -15.698,34.553 -32.049,45.755 -8.647,5.924 -18.53,10.986 -28.568,13.99 -6.145,1.839 -12.465,1.758 -18.8,2.142 -6.924,0.419 -13.833,0.604 -20.269,-2.392 -2.42,-1.127 -4.538,2.464 -2.103,3.597 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g></g></svg>
|
After Width: | Height: | Size: 17 KiB |
|
@ -0,0 +1,198 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:ns="&ns_sfw;"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="200"
|
||||
height="200"
|
||||
viewBox="0 0 200 199.99999"
|
||||
enable-background="new 0 0 434.057 306.911"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="old-web.svg"><defs
|
||||
id="defs123" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1016"
|
||||
id="namedview121"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="4.12"
|
||||
inkscape:cx="100"
|
||||
inkscape:cy="100"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Capa_1" /><metadata
|
||||
id="metadata3"><ns:sfw><ns:slices /><ns:sliceSourceBounds
|
||||
width="16383"
|
||||
height="16383"
|
||||
y="-8490"
|
||||
x="-7770"
|
||||
bottomLeftOrigin="true" /></ns:sfw><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g
|
||||
id="g9"
|
||||
transform="matrix(0.83995145,0,0,0.83994439,-87.096246,-32.92078)"><radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="119.0547"
|
||||
cy="158.25"
|
||||
cx="222.74609"
|
||||
id="SVGID_1_"><stop
|
||||
id="stop12"
|
||||
style="stop-color:#C6C1B9"
|
||||
offset="0" /><stop
|
||||
id="stop14"
|
||||
style="stop-color:#C3BEB5"
|
||||
offset="0.2905" /><stop
|
||||
id="stop16"
|
||||
style="stop-color:#BAB5AA"
|
||||
offset="0.5527" /><stop
|
||||
id="stop18"
|
||||
style="stop-color:#AAA698"
|
||||
offset="0.803" /><stop
|
||||
id="stop20"
|
||||
style="stop-color:#999684"
|
||||
offset="1" /></radialGradient><path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#SVGID_1_)"
|
||||
id="path22"
|
||||
d="m 341.801,255.456 c 0,12.017 -9.832,21.849 -21.848,21.849 l -194.413,0 c -12.017,0 -21.848,-9.832 -21.848,-21.849 l 0,-194.414 c 0,-12.016 9.832,-21.848 21.848,-21.848 l 194.413,0 c 12.017,0 21.848,9.832 21.848,21.848 l 0,194.414 z" /></g><g
|
||||
id="g4260"
|
||||
transform="matrix(0.90696416,0,0,0.92415977,-101.04756,-68.67621)"><g
|
||||
id="XMLID_10_"><g
|
||||
id="g25"><path
|
||||
id="path27"
|
||||
d="m 305.885,149.498 c 1.69,6 2.65,12.391 3.04,18.78 -5.8,2.24 -12.33,2.87 -17.94,0.73 -7.75,-2.711 -13.56,-8.91 -21.31,-11.62 -5.81,-1.94 -11.23,-0.771 -17.04,-1.94 -5.81,-1.55 -7.75,-6.189 -12.4,-9.29 -7.36,-5.04 -16.66,-7.36 -24.79,-10.85 -4.36,-2.33 -9.37,-4 -14.06,-6.16 -1.56,-0.72 -3.09,-1.49 -4.54,-2.36 -1.73,-1.2 -3.28,-2.81 -4.83,-4.41 -2.82,-2.899 -5.67,-5.76 -9.66,-6.029 l -0.45,-0.9 c 4.8,-2.4 9.8,-4.4 14.88,-6.05 l 1.61,1.5 c 9.69,3.88 17.82,8.91 26.73,13.56 10.07,5.04 18.6,6.98 27.51,13.95 4.65,3.87 7.36,4.26 13.56,4.65 5.81,0.38 8.52,1.93 13.94,4.26 8.46,3.869 17.23,5.179 25.75,2.179 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#caba9f" /><path
|
||||
id="path29"
|
||||
d="m 298.445,132.929 c 3.32,4.84 5.75,10.5 7.44,16.569 -8.52,3 -17.29,1.69 -25.75,-2.18 -5.42,-2.33 -8.13,-3.88 -13.94,-4.26 -6.2,-0.391 -8.91,-0.78 -13.56,-4.65 -8.91,-6.97 -17.44,-8.91 -27.51,-13.95 -8.91,-4.649 -17.04,-9.68 -26.73,-13.56 l -1.61,-1.5 c 5.73,-1.851 11.57,-3.25 17.32,-4.22 l 0.43,2.5 c 4.1,-0.521 8.6,-0.761 13.33,-0.71 l -0.03,2.77 c 12.79,7.36 26.35,8.14 38.74,15.11 5.86,3.1 23.63,12.31 31.87,8.081 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a3897a" /><path
|
||||
id="path31"
|
||||
d="m 298.445,132.929 c -8.24,4.229 -26.01,-4.98 -31.87,-8.08 -12.39,-6.971 -25.95,-7.75 -38.74,-15.11 l 0.03,-2.77 c 19.89,0.189 43.9,5.38 59.83,15.42 4.32,2.71 7.88,6.319 10.75,10.54 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#caba9f" /><path
|
||||
id="path33"
|
||||
d="m 215.445,135.309 c 8.13,3.489 17.43,5.81 24.79,10.85 4.65,3.101 6.59,7.74 12.4,9.29 5.81,1.17 11.23,0 17.04,1.94 7.75,2.71 13.56,8.909 21.31,11.62 5.61,2.14 12.14,1.51 17.94,-0.73 0.62,9.99 -0.15,19.96 -1.73,28.4 -5.2,30.51 -28.72,59.619 -59.61,62.47 -26.92,2.35 -57.44,4.09 -82.09,-11.44 -21.79,-13.279 -28.74,-42.34 -26.2,-68.529 13.14,-1.801 25.9,-5.721 37.8,-10.94 15.1,-6.979 32.54,-12.79 37.19,-30.99 l 1.16,-1.941 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#dcd2d2" /><path
|
||||
id="path35"
|
||||
d="m 215.445,135.309 -1.16,1.939 c -4.65,18.2 -22.09,24.011 -37.19,30.99 -11.9,5.22 -24.66,9.14 -37.8,10.94 0.49,-5.221 1.37,-10.33 2.59,-15.17 8.46,-1.7 17.78,-5.95 23.2,-8.171 7.36,-3.1 15.11,-5.81 20.92,-10.85 4.65,-3.479 13.17,-8.52 14.72,-14.33 l 0.66,-1.51 c 4.69,2.162 9.7,3.832 14.06,6.162 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a3897a" /><path
|
||||
id="path37"
|
||||
d="m 201.385,129.148 -0.66,1.51 c -1.55,5.811 -10.07,10.851 -14.72,14.33 -5.81,5.04 -13.56,7.75 -20.92,10.85 -5.42,2.221 -14.74,6.471 -23.2,8.171 0.78,-3.15 1.71,-6.19 2.77,-9.08 1.14,-3.15 2.5,-6.131 4.05,-8.95 15.82,-2.87 32.17,-10.351 41.95,-21.9 l 1.36,-1.7 c 1.55,1.601 3.1,3.21 4.83,4.41 1.45,0.869 2.98,1.64 4.54,2.359 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#caba9f" /><path
|
||||
id="path39"
|
||||
d="m 182.355,116.349 c 3.99,0.27 6.84,3.13 9.66,6.029 l -1.36,1.7 c -9.78,11.55 -26.13,19.03 -41.95,21.9 7.53,-13.771 19.55,-23.72 33.2,-30.53 l 0.45,0.901 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#a3897a" /></g><g
|
||||
id="g41" /></g><path
|
||||
id="path43"
|
||||
d="m 305.678,169.868 c -4.972,4.817 -15.361,-1.4 -20.364,-3.697 -4.736,-2.173 -9.09,-5.093 -13.842,-7.251 -4.028,-1.829 -8.236,-2.121 -12.592,-2.375 -15.828,-0.925 -24.354,-17.54 -40.206,-19.063 -0.042,-0.004 -0.078,0.003 -0.119,0 -1.515,-0.895 -3.919,-0.229 -3.81,2.024 0.572,11.752 -16.881,19.599 -25.592,23.926 -10.228,5.082 -20.496,10.325 -31.334,13.764 -2.456,0.234 -4.999,0.009 -7.45,0.27 -3.66,0.389 -7.048,2.07 -10.423,3.421 -1.725,0.691 -2.189,3.06 -1.191,4.24 -0.209,1.647 1.021,3.448 2.999,2.723 8.015,-2.943 16.51,-4.259 24.691,-6.652 1.764,-0.517 3.449,-1.158 5.093,-1.869 0.122,1.14 0.914,2.19 2.394,2.185 11.373,-0.046 32.948,-0.366 38.333,-12.899 1.259,-2.929 -3.047,-5.479 -4.316,-2.523 -2.462,5.728 -9.682,7.428 -15.203,8.643 -5.028,1.106 -10.223,1.571 -15.385,1.72 3.488,-1.921 6.876,-4.051 10.419,-6.027 7.204,-4.02 16.453,-4.392 22.879,-9.9 5.01,-4.296 6.59,-10.622 10.175,-15.948 0.392,-0.582 0.482,-1.151 0.385,-1.666 7.511,1.688 13.437,7.293 19.519,11.781 2.901,2.142 5.963,3.877 9.295,5.244 4.724,1.938 9.953,1.424 14.907,2.13 5.285,0.753 10.229,4.342 14.822,6.864 3.445,1.892 7.073,3.537 10.714,5.016 5.83,2.367 13.677,4.362 18.738,-0.542 2.318,-2.251 -1.221,-5.783 -3.536,-3.539 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#beb9b9" /><path
|
||||
id="path45"
|
||||
d="m 254.85,169.373 c -10.718,-0.074 -28.397,-1.865 -30.908,-14.824 -0.613,-3.163 -5.432,-1.82 -4.822,1.33 2.996,15.459 22.724,18.404 35.73,18.494 3.225,0.023 3.222,-4.977 0,-5 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#beb9b9" /><path
|
||||
id="path47"
|
||||
d="m 138.792,199.716 c 0,0 3.247,66.474 87.734,60.963 84.487,-5.511 -62.422,20.193 -87.734,-60.963 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#beb9b9" /><g
|
||||
id="g49"><g
|
||||
id="g51"><path
|
||||
id="path53"
|
||||
d="m 219.385,102.465 c -21.343,2.818 -42.368,10.369 -58.521,24.98 -16.112,14.574 -22.737,35.698 -23.881,56.861 -1.088,20.117 3.587,41.916 17.6,57.035 17.012,18.354 45.473,21.638 69.038,21.216 12.089,-0.217 25.075,-0.412 36.677,-4.118 10.44,-3.336 19.61,-9.918 27.138,-17.761 15.512,-16.16 22.377,-37.929 23.51,-59.897 1.015,-19.673 -2.37,-43.253 -18.011,-56.927 -8.236,-7.2 -19.822,-11.088 -30.178,-13.96 -11.764,-3.264 -24.104,-4.814 -36.299,-4.863 -3.986,-0.016 -7.967,0.245 -11.923,0.715 -2.438,0.29 -2.467,4.15 0,3.857 23.955,-2.846 51.491,1.708 72.185,14.444 19.373,11.923 21.613,40.257 20.13,60.582 -1.762,24.151 -12.267,47.683 -32.208,62.169 -10.564,7.675 -22.151,10.083 -34.91,11.067 -13.845,1.067 -27.831,1.469 -41.609,-0.556 -19.992,-2.938 -39.096,-11.984 -49.006,-30.246 -8.526,-15.713 -9.782,-35.141 -7.35,-52.547 2.584,-18.489 10.472,-34.886 24.876,-47.007 14.635,-12.315 34.018,-18.717 52.743,-21.188 2.427,-0.32 2.459,-4.18 -0.001,-3.856 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g55"><g
|
||||
id="g57"><path
|
||||
id="path59"
|
||||
d="m 181.74,118.254 c 5.862,0.412 8.855,6.237 13.147,9.455 5.715,4.286 13.27,6.046 19.582,9.264 6.025,3.071 12.814,4.658 18.958,7.518 5.829,2.713 9.434,7.314 14.497,10.955 4.622,3.323 11.275,2.405 16.607,2.818 7.956,0.616 14.358,6.679 21.032,10.422 5.046,2.829 10.858,4.176 16.616,3.3 6.296,-0.958 10.7,-3.723 16.12,-6.733 2.174,-1.208 0.229,-4.539 -1.946,-3.33 -5.928,3.293 -10.759,6.24 -17.816,6.475 -7.275,0.242 -13.477,-4.424 -19.27,-8.192 -5.178,-3.367 -10.247,-5.449 -16.425,-5.928 -3.98,-0.309 -8.112,0.196 -11.848,-1.502 -2.496,-1.135 -4.404,-3.547 -6.313,-5.441 -3.998,-3.97 -9.313,-6.299 -14.445,-8.415 -6.265,-2.584 -12.574,-4.984 -18.819,-7.619 -6.592,-2.781 -12.818,-4.942 -17.895,-10.139 -3.414,-3.495 -6.725,-6.407 -11.78,-6.764 -2.485,-0.176 -2.468,3.682 -0.002,3.856 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g61"><g
|
||||
id="g63"><path
|
||||
id="path65"
|
||||
d="m 197.885,112.762 c 11.872,4.874 22.572,12.067 34.395,17.038 5.731,2.409 11.359,4.812 16.576,8.228 4.391,2.876 7.506,5.938 12.932,6.568 6.443,0.749 11.404,1.793 17.376,4.386 5.459,2.37 10.922,3.902 16.892,4.099 6.979,0.229 21.132,-2.974 21.262,-11.962 0.036,-2.488 -3.821,-2.484 -3.856,0 -0.073,5.007 -8.935,6.94 -12.591,7.716 -7.326,1.554 -14.693,-0.982 -21.311,-3.856 -3.68,-1.598 -7.198,-3.052 -11.2,-3.632 -5.54,-0.803 -9.764,-0.647 -14.363,-4.303 -7.852,-6.241 -17.348,-9.285 -26.317,-13.478 -9.755,-4.561 -18.771,-10.418 -28.769,-14.522 -2.302,-0.946 -3.294,2.787 -1.026,3.718 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g67"><g
|
||||
id="g69"><path
|
||||
id="path71"
|
||||
d="m 226.866,111.405 c 7.846,4.342 16.355,6.735 24.866,9.398 7.393,2.313 13.958,5.97 20.92,9.227 7.705,3.605 22.941,10.639 29.768,1.991 1.523,-1.929 -1.187,-4.678 -2.728,-2.727 -6.222,7.882 -22.854,-1.379 -29.514,-4.745 -5.722,-2.893 -11.3,-5.489 -17.422,-7.466 -8.183,-2.641 -16.366,-4.814 -23.944,-9.009 -2.177,-1.204 -4.123,2.127 -1.946,3.331 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g73"><g
|
||||
id="g75"><path
|
||||
id="path77"
|
||||
d="m 189.287,122.71 c -13.33,15.273 -34.945,22.485 -54.807,22.678 -2.486,0.024 -2.488,3.881 0,3.857 20.814,-0.202 43.56,-7.795 57.535,-23.809 1.627,-1.864 -1.09,-4.604 -2.728,-2.726 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g79"><g
|
||||
id="g81"><path
|
||||
id="path83"
|
||||
d="m 198.862,130.146 c -2.072,6.059 -8.959,9.602 -13.834,13.182 -6.635,4.873 -13.722,7.874 -21.312,11.005 -9.693,3.999 -23.55,11.66 -34.147,7.396 -2.309,-0.93 -3.302,2.803 -1.025,3.719 11.686,4.703 26.426,-3.363 37.053,-7.748 8.425,-3.476 15.863,-7.119 23.282,-12.42 5.309,-3.792 11.489,-7.633 13.703,-14.107 0.806,-2.362 -2.92,-3.366 -3.72,-1.027 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g85"><g
|
||||
id="g87"><path
|
||||
id="path89"
|
||||
d="m 212.421,136.731 c -4.241,15.227 -18.143,21.714 -31.472,27.659 -17.583,7.843 -35.612,13.344 -54.993,13.925 -2.481,0.074 -2.488,3.932 0,3.857 20.574,-0.617 39.515,-6.68 58.159,-14.996 13.99,-6.239 27.632,-13.647 32.025,-29.42 0.669,-2.4 -3.053,-3.417 -3.719,-1.025 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g91"><g
|
||||
id="g93"><path
|
||||
id="path95"
|
||||
d="m 193.317,180.647 c 0.366,6.094 -1.158,12.01 0.569,18.013 0.686,2.386 4.408,1.37 3.719,-1.025 -1.62,-5.634 -0.087,-11.261 -0.431,-16.987 -0.149,-2.471 -4.007,-2.486 -3.857,-0.001 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g97"><g
|
||||
id="g99"><path
|
||||
id="path101"
|
||||
d="m 241.886,178.66 c 1.345,5.927 0.96,11.958 0.931,17.987 -0.012,2.487 3.844,2.486 3.856,0 0.031,-6.39 0.355,-12.734 -1.069,-19.013 -0.55,-2.424 -4.268,-1.396 -3.718,1.026 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g103"><g
|
||||
id="g105"><path
|
||||
id="path107"
|
||||
d="m 174.745,179.076 c 12.873,-1.547 26.768,-1.989 35.864,-12.565 1.612,-1.875 -1.103,-4.615 -2.728,-2.727 -8.393,9.759 -21.276,10.011 -33.136,11.435 -2.437,0.293 -2.466,4.153 0,3.857 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g109"><g
|
||||
id="g111"><path
|
||||
id="path113"
|
||||
d="m 221.08,154.121 c 6.875,11.79 20.959,17.268 34.165,16.955 2.483,-0.06 2.489,-3.916 0,-3.857 -11.854,0.281 -24.632,-4.406 -30.835,-15.045 -1.251,-2.147 -4.585,-0.206 -3.33,1.947 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g><g
|
||||
id="g115"><g
|
||||
id="g117"><path
|
||||
id="path119"
|
||||
d="m 189.108,242.511 c 10.387,-8.83 26.196,-9.952 39.147,-11.699 18.439,-2.488 36.867,-6.533 55.489,-7.236 2.479,-0.093 2.488,-3.95 0,-3.855 -19.209,0.724 -38.216,4.918 -57.235,7.469 -13.594,1.824 -29.258,3.354 -40.128,12.596 -1.897,1.611 0.845,4.325 2.727,2.725 l 0,0 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#1c1c1b" /></g></g></g></svg>
|
After Width: | Height: | Size: 14 KiB |
|
@ -0,0 +1,90 @@
|
|||
/*
|
||||
@media
|
||||
(min-resolution: 120dpi) and (min-width: 800px),
|
||||
(max-resolution: 119dpi) and (max-width: 800px)
|
||||
{
|
||||
|
||||
}
|
||||
*/
|
||||
@media
|
||||
(min-resolution: 120dpi) and (orientation: portrait)
|
||||
{
|
||||
* { font-size: 18pt; }
|
||||
}
|
||||
@media
|
||||
(min-resolution: 120dpi) and (orientation: landscape)
|
||||
{
|
||||
* { font-size: 10pt; }
|
||||
}
|
||||
@media (orientation: portrait)
|
||||
{
|
||||
#main
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
#main > div
|
||||
{
|
||||
display: block;
|
||||
width: 80%;
|
||||
padding: 0 10%;
|
||||
}
|
||||
#main > div
|
||||
{
|
||||
padding-bottom: 2em;
|
||||
}
|
||||
}
|
||||
@media (orientation: landscape)
|
||||
{
|
||||
#main
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
#main > div
|
||||
{
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
width: 24%;
|
||||
padding: 0 5%;
|
||||
}
|
||||
}
|
||||
|
||||
*
|
||||
{
|
||||
font-family: 'Open Sans';
|
||||
}
|
||||
body
|
||||
{
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
#main
|
||||
{
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
h1
|
||||
{
|
||||
font-size: 2.5em;
|
||||
font-weight: normal;
|
||||
margin: 1.2em 1em;
|
||||
padding: 0;
|
||||
}
|
||||
img
|
||||
{
|
||||
width: 100%;
|
||||
margin-bottom: .8em;
|
||||
}
|
||||
p
|
||||
{
|
||||
text-align: center;
|
||||
font-size: 1.6em;
|
||||
margin: 0;
|
||||
}
|
||||
a
|
||||
{
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
Loading…
Reference in New Issue