Commit e61c864e9138ed04970cc911994365d21c0f38a7
1 parent
6553be75c4
Exists in
develop
Fix
Rollback
Showing
12 changed files
with
62 additions
and
191 deletions
Show diff stats
src/afavicon.ico
No preview for this file type
src/app/app.component.ts
1 | import { Component } from '@angular/core'; | 1 | import { Component } from '@angular/core'; |
2 | import { ConnectionService } from 'ng-connection-service'; | 2 | import { ConnectionService } from 'ng-connection-service'; |
3 | import { BsModalService, BsModalRef } from 'ngx-bootstrap/modal'; | 3 | import { BsModalService, BsModalRef } from 'ngx-bootstrap/modal'; |
4 | import { InternetConnectionComponent } from './shared/internet-connection/internet-connection.component'; | 4 | import { InternetConnectionComponent } from './shared/internet-connection/internet-connection.component'; |
5 | import { Title } from '@angular/platform-browser'; | 5 | import { Title } from '@angular/platform-browser'; |
6 | 6 | ||
7 | @Component({ | 7 | @Component({ |
8 | selector: 'app-root', | 8 | selector: 'app-root', |
9 | templateUrl: './app.component.html', | 9 | templateUrl: './app.component.html', |
10 | styleUrls: ['./app.component.scss'] | 10 | styleUrls: ['./app.component.scss'] |
11 | }) | 11 | }) |
12 | export class AppComponent { | 12 | export class AppComponent { |
13 | status = 'ONLINE'; | 13 | status = 'ONLINE'; |
14 | isConnected = true; | 14 | isConnected = true; |
15 | modalRef: BsModalRef; | 15 | modalRef: BsModalRef; |
16 | 16 | ||
17 | constructor( | 17 | constructor( |
18 | private connectionService: ConnectionService, | 18 | private connectionService: ConnectionService, |
19 | private modalService: BsModalService, | 19 | private modalService: BsModalService, |
20 | private title: Title | 20 | private title: Title |
21 | ) { | 21 | ) { |
22 | this.title.setTitle('Autoservicio'); | 22 | this.title.setTitle('Autoservicio Axion'); |
23 | this.connectionService.monitor().subscribe(isConnected => { | 23 | this.connectionService.monitor().subscribe(isConnected => { |
24 | this.isConnected = isConnected; | 24 | this.isConnected = isConnected; |
25 | if (this.isConnected && this.modalRef) { | 25 | if (this.isConnected && this.modalRef) { |
26 | this.modalRef.hide(); | 26 | this.modalRef.hide(); |
27 | } else { | 27 | } else { |
28 | this.modalRef = this.modalService.show(InternetConnectionComponent, { | 28 | this.modalRef = this.modalService.show(InternetConnectionComponent, { |
29 | backdrop: false, | 29 | backdrop: false, |
30 | ignoreBackdropClick: true, | 30 | ignoreBackdropClick: true, |
31 | class: 'modal-dialog-centered' | 31 | class: 'modal-dialog-centered' |
32 | }); | 32 | }); |
33 | } | 33 | } |
34 | }); | 34 | }); |
35 | } | 35 | } |
36 | } | 36 | } |
37 | 37 |
src/app/modules/comanda/comanda.component.html
1 | <div class="container-fluid d-flex flex-column h-100 fade-in pb-4 pr-2"> | 1 | <div class="container-fluid d-flex flex-column h-100 fade-in pb-4 pr-2"> |
2 | <div class="row pt-5 mt-n5"> | 2 | <div class="row pt-5 mt-n5"> |
3 | <div class="col-12"> | 3 | <div class="col-12"> |
4 | <p class="mb-3 h2 text-center mt-2">Pedidos a elaborar</p> | 4 | <p class="mb-3 h2 text-center mt-2">Pedidos a elaborar</p> |
5 | </div> | 5 | </div> |
6 | </div> | 6 | </div> |
7 | <div class="row flex-fill m-0 scroll-y"> | 7 | <div class="row flex-fill m-0 scroll-y"> |
8 | <div class="col-12 px-2"> | 8 | <div class="col-12 px-2"> |
9 | <div class="card-columns h-100 m-1 fade-in disable-user-select"> | 9 | <div class="card-columns h-100 m-1 fade-in disable-user-select"> |
10 | <div | 10 | <div |
11 | *ngFor="let comanda of comandas" | 11 | *ngFor="let comanda of comandas" |
12 | class="card fade-in rounded-xs shadow-sm mt-2" | 12 | class="card fade-in rounded-xs shadow-sm mt-2" |
13 | [ngClass]="{ | 13 | [ngClass]="{ |
14 | 'bg-light': comanda.estado === 1, | 14 | 'bg-light': comanda.estado === 1, |
15 | 'bg-danger': comanda.estado === 2, | 15 | 'bg-danger': comanda.estado === 2, |
16 | 'bg-success swing-out-top-bck': comanda.estado === 3 | 16 | 'bg-success swing-out-top-bck': comanda.estado === 3 |
17 | }"> | 17 | }"> |
18 | <div class="card-body p-2"> | 18 | <div class="card-body p-2"> |
19 | <div class="row justify-content-between"> | 19 | <div class="row justify-content-between"> |
20 | <img | 20 | <img |
21 | src="assets/img/para-llevar-fondo-sombra.png" | 21 | src="assets/img/para-llevar-fondo-sombra.png" |
22 | class="w-25 h-25 float-left ml-0 mt-n3" | 22 | class="w-25 h-25 float-left ml-0 mt-n3" |
23 | *ngIf="comanda.paraLlevar == true"> | 23 | *ngIf="comanda.paraLlevar == true"> |
24 | <div></div> | 24 | <div></div> |
25 | <!-- NUMERO DE PEDIDO --> | 25 | <!-- NUMERO DE PEDIDO --> |
26 | <p class="h1 text-right mr-3"> | 26 | <p class="h1 text-right mr-3"> |
27 | {{rellenar(comanda.id.toString().slice(0), 3)}} | 27 | {{rellenar(comanda.id.toString())}} |
28 | </p> | 28 | </p> |
29 | </div> | 29 | </div> |
30 | <div> | 30 | <div> |
31 | <!-- PEDIDO A NOMBRE DE --> | 31 | <!-- PEDIDO A NOMBRE DE --> |
32 | <p class="text-center m-0"> | 32 | <p class="text-center m-0"> |
33 | {{comanda.pedidoAnombreDe ? comanda.pedidoAnombreDe.toUpperCase() : ''}} | 33 | {{comanda.pedidoAnombreDe ? comanda.pedidoAnombreDe.toUpperCase() : ''}} |
34 | </p> | 34 | </p> |
35 | <!-- TIMER PEDIDO --> | 35 | <!-- TIMER PEDIDO --> |
36 | <div class="d-flex justify-content-between align-items-center mt-2"> | 36 | <div class="d-flex justify-content-between align-items-center mt-2"> |
37 | <p><i class="fas fa-user-clock text-info"></i></p> | 37 | <p><i class="fas fa-user-clock text-info"></i></p> |
38 | <p class="text-center mb-1"> | 38 | <p class="text-center mb-1"> |
39 | {{comanda.hoursPedido}}:{{comanda.minutesPedido}}:{{comanda.secondsPedido}} | 39 | {{comanda.hoursPedido}}:{{comanda.minutesPedido}}:{{comanda.secondsPedido}} |
40 | </p> | 40 | </p> |
41 | <p><i class="far fa-clock fa-spin text-info"></i></p> | 41 | <p><i class="far fa-clock fa-spin text-info"></i></p> |
42 | </div> | 42 | </div> |
43 | <div *ngFor="let detalle of comanda.detalles"> | 43 | <div *ngFor="let detalle of comanda.detalles"> |
44 | <div | 44 | <div |
45 | class="card-text border-top pt-2 mb-2" | 45 | class="card-text border-top pt-2 mb-2" |
46 | [ngClass]=" | 46 | [ngClass]=" |
47 | { | 47 | { |
48 | 'border-secondary': comanda.estado === 1, | 48 | 'border-secondary': comanda.estado === 1, |
49 | 'border-light': comanda.estado != 1 | 49 | 'border-light': comanda.estado != 1 |
50 | }"> | 50 | }"> |
51 | <!-- DETALLE Y CANTIDAD --> | 51 | <!-- DETALLE Y CANTIDAD --> |
52 | <p> | 52 | <p> |
53 | <small>{{detalle.MktDesc ? detalle.MktDesc.toUpperCase() : detalle.DetLar.toUpperCase()}}</small><br> | 53 | <small>{{detalle.MktDesc ? detalle.MktDesc.toUpperCase() : detalle.DetLar.toUpperCase()}}</small><br> |
54 | <small>CANT.{{detalle.cantidad}}</small> | 54 | <small>CANT.{{detalle.cantidad}}</small> |
55 | </p> | 55 | </p> |
56 | <div *ngFor="let componente of detalle.componentes"> | 56 | <div *ngFor="let componente of detalle.componentes"> |
57 | <p *ngIf="componente.DetArt !== 'Producto ingrediente general'"> | 57 | <p *ngIf="componente.DetArt !== 'Producto ingrediente general'"> |
58 | <small>{{componente.MktDesc ? componente.MktDesc.toLowerCase() : componente.DetArt.toLowerCase()}}</small> | 58 | <small>{{componente.MktDesc ? componente.MktDesc.toLowerCase() : componente.DetArt.toLowerCase()}}</small> |
59 | </p> | 59 | </p> |
60 | </div> | 60 | </div> |
61 | </div> | 61 | </div> |
62 | <blockquote | 62 | <blockquote |
63 | *ngIf="detalle.comentario"> | 63 | *ngIf="detalle.comentario"> |
64 | <p class="text-muted font-italic px-4" *ngIf="comanda.estado === 1"><small>{{detalle.comentario}}</small></p> | 64 | <p class="text-muted font-italic px-4" *ngIf="comanda.estado === 1"><small>{{detalle.comentario}}</small></p> |
65 | <p class="text-white font-italic px-4" *ngIf="comanda.estado !== 1"><small>{{detalle.comentario}}</small></p> | 65 | <p class="text-white font-italic px-4" *ngIf="comanda.estado !== 1"><small>{{detalle.comentario}}</small></p> |
66 | </blockquote> | 66 | </blockquote> |
67 | </div> | 67 | </div> |
68 | <!-- BOTONES --> | 68 | <!-- BOTONES --> |
69 | <button | 69 | <button |
70 | *ngIf="comanda.estado === 1" | 70 | *ngIf="comanda.estado === 1" |
71 | class="btn btn-block btn-primary shadow-sm btn-elaborar" | 71 | class="btn btn-block btn-primary shadow-sm btn-elaborar" |
72 | (click)="updateComanda(comanda, 2, 'En elaboracion')"> | 72 | (click)="updateComanda(comanda, 2, 'En elaboracion')"> |
73 | <div class="row justify-content-between"> | 73 | <div class="row justify-content-between"> |
74 | <div></div> | 74 | <div></div> |
75 | <p class="ml-4 text-white">Elaborar</p> | 75 | <p class="ml-4 text-white">Elaborar</p> |
76 | <img | 76 | <img |
77 | draggable="false" | 77 | draggable="false" |
78 | ondragstart="return false;" | 78 | ondragstart="return false;" |
79 | (contextmenu)="false" | 79 | (contextmenu)="false" |
80 | class="icon-30 mr-2" | 80 | class="icon-30 mr-2" |
81 | src="assets/img/ir.svg"> | 81 | src="assets/img/ir.svg"> |
82 | </div> | 82 | </div> |
83 | </button> | 83 | </button> |
84 | <button | 84 | <button |
85 | *ngIf="comanda.estado === 2" | 85 | *ngIf="comanda.estado === 2" |
86 | class="btn btn-block shadow-sm btn-terminar" | 86 | class="btn btn-block shadow-sm btn-terminar" |
87 | (click)="updateComanda(comanda, 3, 'Terminado')"> | 87 | (click)="updateComanda(comanda, 3, 'Terminado')"> |
88 | <div class="row justify-content-between"> | 88 | <div class="row justify-content-between"> |
89 | <div></div> | 89 | <div></div> |
90 | <p class="ml-4">Terminar</p> | 90 | <p class="ml-4">Terminar</p> |
91 | <img | 91 | <img |
92 | draggable="false" | 92 | draggable="false" |
93 | ondragstart="return false;" | 93 | ondragstart="return false;" |
94 | (contextmenu)="false" | 94 | (contextmenu)="false" |
95 | class="icon-30 mr-2" | 95 | class="icon-30 mr-2" |
96 | src="assets/img/flecha-borde-color.svg"> | 96 | src="assets/img/flecha-borde-color.svg"> |
97 | </div> | 97 | </div> |
98 | </button> | 98 | </button> |
99 | <button | 99 | <button |
100 | *ngIf="comanda.estado === 2" | 100 | *ngIf="comanda.estado === 2" |
101 | class="btn btn-block btn-deshacer btn-sm shadow-sm p-0" | 101 | class="btn btn-block btn-deshacer btn-sm shadow-sm p-0" |
102 | (click)="updateComanda(comanda, 1, 'Pagado')"> | 102 | (click)="updateComanda(comanda, 1, 'Pagado')"> |
103 | <div class="row justify-content-between"> | 103 | <div class="row justify-content-between"> |
104 | <div></div> | 104 | <div></div> |
105 | <span class="h6 ml-4 pt-1"><small>Deshacer</small></span> | 105 | <span class="h6 ml-4 pt-1"><small>Deshacer</small></span> |
106 | <i class="fas fa-undo-alt text-info mr-4 my-auto"></i> | 106 | <i class="fas fa-undo-alt text-info mr-4 my-auto"></i> |
107 | </div> | 107 | </div> |
108 | </button> | 108 | </button> |
109 | </div> | 109 | </div> |
110 | <!-- TIMER DE ELABORACION --> | 110 | <!-- TIMER DE ELABORACION --> |
111 | <div *ngIf="comanda.estado === 2" class="d-flex justify-content-between align-items-center mt-2"> | 111 | <div *ngIf="comanda.estado === 2" class="d-flex justify-content-between align-items-center mt-2"> |
112 | <div *ngIf="comanda.estado !== 1"> | 112 | <div *ngIf="comanda.estado !== 1"> |
113 | <i class="fa fa-utensils text-info" aria-hidden="true"></i> | 113 | <i class="fa fa-utensils text-info" aria-hidden="true"></i> |
114 | </div> | 114 | </div> |
115 | <span *ngIf="comanda.estado === 1" class="text-dark"> | 115 | <span *ngIf="comanda.estado === 1" class="text-dark"> |
116 | {{comanda.hoursElaboracion}}:{{comanda.minutesElaboracion}}:{{comanda.secondsElaboracion}} | 116 | {{comanda.hoursElaboracion}}:{{comanda.minutesElaboracion}}:{{comanda.secondsElaboracion}} |
117 | </span> | 117 | </span> |
118 | <span *ngIf="comanda.estado !== 1" class="text-white"> | 118 | <span *ngIf="comanda.estado !== 1" class="text-white"> |
119 | {{comanda.hoursElaboracion}}:{{comanda.minutesElaboracion}}:{{comanda.secondsElaboracion}} | 119 | {{comanda.hoursElaboracion}}:{{comanda.minutesElaboracion}}:{{comanda.secondsElaboracion}} |
120 | </span> | 120 | </span> |
121 | <i class="fas fa-clock fa-spin text-info"></i> | 121 | <i class="fas fa-clock fa-spin text-info"></i> |
122 | </div> | 122 | </div> |
123 | </div> | 123 | </div> |
124 | </div> | 124 | </div> |
125 | </div> | 125 | </div> |
126 | </div> | 126 | </div> |
127 | </div> | 127 | </div> |
128 | </div> | 128 | </div> |
129 | 129 |
src/app/modules/pedidos-salientes/pedidos-salientes.component.html
1 | <div class="row mt-2 justify-content-center h-15"> | 1 | <div class="row mt-2 justify-content-center h-15"> |
2 | <div class="col-3 col-lg-2"> | 2 | <div class="col-3 col-lg-2"> |
3 | <img | 3 | <img |
4 | draggable="false" | 4 | draggable="false" |
5 | ondragstart="return false;" | 5 | ondragstart="return false;" |
6 | (contextmenu)="false" | 6 | (contextmenu)="false" |
7 | class="w-60 h-auto d-block mx-auto" | 7 | class="w-60 h-auto d-block mx-auto" |
8 | src="assets/img/logo-spot.svg"> | 8 | src="assets/img/logo-spot.svg"> |
9 | </div> | 9 | </div> |
10 | </div> | 10 | </div> |
11 | <div class="row mt-n5 mx-0 justify-content-around h-75"> | 11 | <div class="row mt-n5 mx-0 justify-content-around h-75"> |
12 | <div class="col-5 col-md-6 col-lg-4 h-100"> | 12 | <div class="col-5 col-md-6 col-lg-4 h-100"> |
13 | <div class="p-3 bg-white text-center shadow-lg rounded h-100"> | 13 | <div class="p-3 bg-white text-center shadow-lg rounded h-100"> |
14 | <h5 class="pt-3">ESTAMOS</h5> | 14 | <h5 class="pt-3">ESTAMOS</h5> |
15 | <h3 class="font-weight-bold text-secondary">preparando</h3> | 15 | <h3 class="font-weight-bold text-secondary">preparando</h3> |
16 | <h5>TU PEDIDO</h5> | 16 | <h5>TU PEDIDO</h5> |
17 | <div | 17 | <div |
18 | *ngFor="let pedido of pedidosPendientes; let i = index" | 18 | *ngFor="let pedido of pedidosPendientes; let i = index" |
19 | [hidden]="i > 3" | 19 | [hidden]="i > 3" |
20 | class="font-weight-bold mb-2 text-muted"> | 20 | class="font-weight-bold mb-2 text-muted"> |
21 | <h1 class="display-4">{{rellenar(pedido.id.toString().slice(0), 3)}}</h1> | 21 | <h1 class="display-4">{{rellenar(pedido.id.toString(), 3)}}</h1> |
22 | </div> | 22 | </div> |
23 | </div> | 23 | </div> |
24 | </div> | 24 | </div> |
25 | <div class="col-5 col-md-6 col-lg-4 h-100"> | 25 | <div class="col-5 col-md-6 col-lg-4 h-100"> |
26 | <div class="p-3 bg-white shadow-lg rounded text-center h-100"> | 26 | <div class="p-3 bg-white shadow-lg rounded text-center h-100"> |
27 | <h5 class="pt-3">LISTO PARA</h5> | 27 | <h5 class="pt-3">LISTO PARA</h5> |
28 | <h3 class="font-weight-bold text-primary">retirar</h3> | 28 | <h3 class="font-weight-bold text-primary">retirar</h3> |
29 | <div *ngIf="pedidoFinalizado.length"> | 29 | <div *ngIf="pedidoFinalizado.length"> |
30 | <h1 class="display-1 mt-4 text-primary mb-0">{{rellenar(pedidoFinalizado[0].id.toString().slice(0), 3)}}</h1> | 30 | <h1 class="display-1 mt-4 text-primary mb-0">{{rellenar(pedidoFinalizado[0].id.toString(), 3)}}</h1> |
31 | <hr class="line mt-0"> | 31 | <hr class="line mt-0"> |
32 | </div> | 32 | </div> |
33 | <h3 class="font-weight-bold text-info mt-4">ยกQue lo disfrutes!</h3> | 33 | <h3 class="font-weight-bold text-info mt-4">ยกQue lo disfrutes!</h3> |
34 | </div> | 34 | </div> |
35 | </div> | 35 | </div> |
36 | </div> | 36 | </div> |
37 | 37 |
src/app/modules/splash-screen/splash-screen.component.ts
1 | import { Component, OnInit } from '@angular/core'; | 1 | import { Component, OnInit } from '@angular/core'; |
2 | import { ArticuloService } from 'src/app/services/articulo/articulo.service'; | 2 | import { ArticuloService } from 'src/app/services/articulo/articulo.service'; |
3 | 3 | ||
4 | @Component({ | 4 | @Component({ |
5 | selector: 'app-splash-screen', | 5 | selector: 'app-splash-screen', |
6 | templateUrl: './splash-screen.component.html', | 6 | templateUrl: './splash-screen.component.html', |
7 | styleUrls: ['./splash-screen.component.scss'] | 7 | styleUrls: ['./splash-screen.component.scss'] |
8 | }) | 8 | }) |
9 | export class SplashScreenComponent implements OnInit { | 9 | export class SplashScreenComponent implements OnInit { |
10 | timerSplashScreen = 2000; | 10 | timerSplashScreen = 2000; |
11 | showSplashScreen = true; | 11 | showSplashScreen = true; |
12 | textWelcome = 'BIENVENIDO!'; | 12 | textWelcome = 'BIENVENIDO A SPOT!'; |
13 | textComoEstas = 'ยฟcรณmo estรกs?'; | 13 | textComoEstas = 'ยฟcรณmo estรกs?'; |
14 | textInvitamos = 'TE INVITAMOS A HACER'; | 14 | textInvitamos = 'TE INVITAMOS A HACER'; |
15 | textTuPedido = 'tu pedido acรก'; | 15 | textTuPedido = 'tu pedido acรก'; |
16 | 16 | ||
17 | constructor( | 17 | constructor( |
18 | private articuloService: ArticuloService, | 18 | private articuloService: ArticuloService, |
19 | ) { } | 19 | ) { } |
20 | 20 | ||
21 | ngOnInit() { | 21 | ngOnInit() { |
22 | this.articuloService.cleanShoppingCar(); | 22 | this.articuloService.cleanShoppingCar(); |
23 | localStorage.clear(); | 23 | localStorage.clear(); |
24 | setTimeout(() => { | 24 | setTimeout(() => { |
25 | this.showSplashScreen = false; | 25 | this.showSplashScreen = false; |
26 | }, this.timerSplashScreen); | 26 | }, this.timerSplashScreen); |
27 | $('body').removeClass('media-pantalla'); | 27 | $('body').removeClass('media-pantalla'); |
28 | } | 28 | } |
29 | } | 29 | } |
30 | 30 |
src/assets/img/alogo-spot-2.svg
1 | <?xml version="1.0" encoding="UTF-8"?> | File was deleted | |
2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | ||
3 | <!-- Creator: CorelDRAW X7 --> | ||
4 | <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="78.7688mm" height="78.7676mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" | ||
5 | viewBox="0 0 2581 2581" | ||
6 | xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
7 | <defs> | ||
8 | <style type="text/css"> | ||
9 | <![CDATA[ | ||
10 | .fil0 {fill:#AD036F} | ||
11 | .fil1 {fill:white} | ||
12 | ]]> | ||
13 | </style> | ||
14 | </defs> | ||
15 | <g id="Capa_x0020_1"> | ||
16 | <metadata id="CorelCorpID_0Corel-Layer"/> | ||
17 | <path class="fil0" d="M2581 1291c0,713 -577,1290 -1290,1290 -713,0 -1291,-577 -1291,-1290 0,-713 578,-1291 1291,-1291 713,0 1290,578 1290,1291z"/> | ||
18 | <path class="fil1" d="M655 1065c-54,-47 -118,-118 -114,-140 10,-50 176,-64 221,-65 56,-2 80,-152 -3,-153 -71,-1 -264,19 -312,129 -56,130 22,248 140,351 55,49 150,126 143,211 -17,102 -208,152 -282,160 -103,13 -253,-6 -266,4 -13,7 10,44 112,84 220,78 387,27 482,-76 164,-214 -7,-411 -121,-505zm347 4c-30,-28 -64,5 -66,21 -1,10 -2,16 -4,44 -22,25 -54,80 -57,101 -2,21 22,59 48,55 -18,322 -5,396 -5,396 -2,0 27,278 30,266 19,112 44,183 49,0 6,-109 2,-172 12,-592 10,9 27,16 54,17 343,4 335,-588 -61,-308zm9 253c1,-30 3,-57 4,-83 0,0 0,0 0,0 91,-90 179,-107 179,-91 0,16 -68,114 -183,174zm520 -210c-69,0 -148,42 -154,68 -13,57 15,111 52,123 13,4 28,-23 69,-33 81,-21 153,31 155,104 3,73 -61,143 -145,156 -85,13 -163,-44 -163,-127 0,-25 2,-54 11,-88 13,-50 -33,-43 -71,66 -20,58 -7,146 38,212 40,59 105,94 177,94 136,0 254,-129 263,-288 8,-158 -95,-287 -232,-287zm684 -387c-134,-13 -205,-6 -221,-7 9,-68 27,-201 31,-231 6,-45 -102,-54 -109,-19 -7,37 -13,128 -28,252 -249,10 -563,41 -585,61 -39,37 -15,136 13,135 46,-2 330,-63 562,-85 -14,140 -56,576 -57,604 0,0 -7,229 -4,220 2,93 15,154 45,11 57,-298 100,-708 118,-849 41,-7 194,-23 235,-32 83,-16 134,-47 0,-60z"/> | ||
19 | <path class="fil1" d="M1828 1884c-55,-56 -105,-39 -135,13 -16,29 -10,79 6,102 15,26 33,41 52,51 37,19 78,22 113,-6 17,-13 32,-41 32,-63 10,-67 -34,-61 -68,-97z"/> | ||
20 | </g> | ||
21 | </svg> | ||
22 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
src/assets/img/alogo-spot.svg
1 | <?xml version="1.0" encoding="UTF-8"?> | File was deleted | |
2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | ||
3 | <!-- Creator: CorelDRAW X7 --> | ||
4 | <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="78.7688mm" height="78.7676mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" | ||
5 | viewBox="0 0 2581 2581" | ||
6 | xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
7 | <defs> | ||
8 | <style type="text/css"> | ||
9 | <![CDATA[ | ||
10 | .fil0 {fill:#AD036F} | ||
11 | .fil1 {fill:white} | ||
12 | ]]> | ||
13 | </style> | ||
14 | </defs> | ||
15 | <g id="Capa_x0020_1"> | ||
16 | <metadata id="CorelCorpID_0Corel-Layer"/> | ||
17 | <path class="fil0" d="M2581 1291c0,713 -577,1290 -1290,1290 -713,0 -1291,-577 -1291,-1290 0,-713 578,-1291 1291,-1291 713,0 1290,578 1290,1291z"/> | ||
18 | <path class="fil1" d="M655 1065c-54,-47 -118,-118 -114,-140 10,-50 176,-64 221,-65 56,-2 80,-152 -3,-153 -71,-1 -264,19 -312,129 -56,130 22,248 140,351 55,49 150,126 143,211 -17,102 -208,152 -282,160 -103,13 -253,-6 -266,4 -13,7 10,44 112,84 220,78 387,27 482,-76 164,-214 -7,-411 -121,-505zm347 4c-30,-28 -64,5 -66,21 -1,10 -2,16 -4,44 -22,25 -54,80 -57,101 -2,21 22,59 48,55 -18,322 -5,396 -5,396 -2,0 27,278 30,266 19,112 44,183 49,0 6,-109 2,-172 12,-592 10,9 27,16 54,17 343,4 335,-588 -61,-308zm9 253c1,-30 3,-57 4,-83 0,0 0,0 0,0 91,-90 179,-107 179,-91 0,16 -68,114 -183,174zm520 -210c-69,0 -148,42 -154,68 -13,57 15,111 52,123 13,4 28,-23 69,-33 81,-21 153,31 155,104 3,73 -61,143 -145,156 -85,13 -163,-44 -163,-127 0,-25 2,-54 11,-88 13,-50 -33,-43 -71,66 -20,58 -7,146 38,212 40,59 105,94 177,94 136,0 254,-129 263,-288 8,-158 -95,-287 -232,-287zm684 -387c-134,-13 -205,-6 -221,-7 9,-68 27,-201 31,-231 6,-45 -102,-54 -109,-19 -7,37 -13,128 -28,252 -249,10 -563,41 -585,61 -39,37 -15,136 13,135 46,-2 330,-63 562,-85 -14,140 -56,576 -57,604 0,0 -7,229 -4,220 2,93 15,154 45,11 57,-298 100,-708 118,-849 41,-7 194,-23 235,-32 83,-16 134,-47 0,-60z"/> | ||
19 | <path class="fil1" d="M1828 1884c-55,-56 -105,-39 -135,13 -16,29 -10,79 6,102 15,26 33,41 52,51 37,19 78,22 113,-6 17,-13 32,-41 32,-63 10,-67 -34,-61 -68,-97z"/> | ||
20 | </g> | ||
21 | </svg> | ||
22 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
src/assets/img/anegativo-spot.svg
1 | <?xml version="1.0" encoding="UTF-8"?> | File was deleted | |
2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | ||
3 | <!-- Creator: CorelDRAW X7 --> | ||
4 | <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="78.7688mm" height="78.7676mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" | ||
5 | viewBox="0 0 2760 2760" | ||
6 | xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
7 | <defs> | ||
8 | <style type="text/css"> | ||
9 | <![CDATA[ | ||
10 | .fil1 {fill:#AD036F} | ||
11 | .fil0 {fill:white} | ||
12 | ]]> | ||
13 | </style> | ||
14 | </defs> | ||
15 | <g id="Capa_x0020_1"> | ||
16 | <metadata id="CorelCorpID_0Corel-Layer"/> | ||
17 | <path class="fil0" d="M2760 1380c0,762 -618,1380 -1380,1380 -762,0 -1380,-618 -1380,-1380 0,-762 618,-1380 1380,-1380 762,0 1380,618 1380,1380z"/> | ||
18 | <path class="fil1" d="M700 1138c-58,-50 -125,-126 -121,-149 10,-53 187,-69 236,-70 60,-1 86,-162 -4,-163 -76,-1 -282,21 -333,138 -60,139 23,265 150,375 58,52 160,135 152,225 -18,110 -222,163 -301,172 -110,13 -270,-7 -285,3 -14,9 11,48 121,91 234,84 413,28 515,-81 175,-229 -8,-440 -130,-541zm372 4c-32,-29 -70,6 -71,23 -2,11 -2,18 -4,47 -24,28 -59,86 -61,108 -2,23 23,63 51,59 -19,345 -6,423 -6,423 -2,1 30,298 32,284 21,121 48,196 53,0 6,-115 2,-183 13,-632 10,9 28,17 57,18 367,5 359,-628 -64,-330zm9 271c1,-31 3,-61 5,-88 0,0 0,0 0,0 96,-96 190,-115 191,-98 0,18 -74,123 -196,186zm556 -224c-74,0 -158,45 -164,73 -15,61 15,118 54,131 14,5 31,-25 74,-36 87,-22 164,34 167,112 3,78 -66,153 -156,167 -91,14 -174,-48 -174,-137 0,-26 2,-57 12,-93 14,-54 -36,-46 -76,70 -22,62 -8,156 40,227 43,63 113,100 190,100 145,0 271,-137 280,-307 10,-170 -100,-307 -247,-307zm731 -414c-143,-14 -220,-6 -236,-8 10,-72 29,-214 33,-246 6,-48 -109,-58 -116,-21 -8,40 -15,138 -30,270 -267,11 -603,43 -626,65 -42,39 -16,146 14,144 49,-2 352,-67 600,-90 -14,149 -59,615 -60,645 0,0 -8,245 -5,236 2,99 16,164 49,11 61,-319 107,-757 126,-907 44,-8 207,-25 251,-35 89,-17 143,-50 0,-64z"/> | ||
19 | <path class="fil1" d="M1954 2014c-58,-60 -112,-41 -144,14 -17,31 -10,85 6,109 16,28 36,43 56,55 40,19 84,23 121,-7 18,-14 34,-43 34,-67 11,-71 -36,-65 -73,-104z"/> | ||
20 | </g> | ||
21 | </svg> | ||
22 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
src/assets/img/logo-spot-2.svg
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | ||
3 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | 2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> |
4 | <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" | 3 | <!-- Creator: CorelDRAW X7 --> |
5 | width="125.333px" height="130.667px" viewBox="0 0 125.333 130.667" enable-background="new 0 0 125.333 130.667" | 4 | <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="78.7688mm" height="78.7676mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" |
6 | xml:space="preserve"> | 5 | viewBox="0 0 2581 2581" |
7 | <g> | 6 | xmlns:xlink="http://www.w3.org/1999/xlink"> |
8 | 7 | <defs> | |
9 | <circle opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" fill="#F7F7F8" stroke="#476C9F" stroke-miterlimit="10" cx="62.667" cy="65.333" r="50"/> | 8 | <style type="text/css"> |
10 | <g> | 9 | <![CDATA[ |
11 | <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="39.4775" y1="85.063" x2="98.121" y2="70.0902"> | 10 | .fil0 {fill:#AD036F} |
12 | <stop offset="0" style="stop-color:#476297"/> | 11 | .fil1 {fill:white} |
13 | <stop offset="1" style="stop-color:#0D0C0C"/> | 12 | ]]> |
14 | </linearGradient> | 13 | </style> |
15 | <path fill-rule="evenodd" clip-rule="evenodd" fill="url(#SVGID_1_)" d="M52.696,90.272V61.046 | 14 | </defs> |
16 | c4.601,2.467,13.801,6.232,13.801,10.58v12.63c2.891,0,5.779,0,8.67,0c15.877,0.968,27.234-6.053,27.943-13.324 | 15 | <g id="Capa_x0020_1"> |
17 | c-0.004,1.654-0.543,5.023-0.643,5.455c-1.102,4.709-3.596,8.946-7.352,12.262c-4.998,4.411-11.279,6.577-19.418,6.577H57.65 | 16 | <metadata id="CorelCorpID_0Corel-Layer"/> |
18 | c-1.355,0-2.521-0.486-3.494-1.459C53.183,92.793,52.696,91.628,52.696,90.272z"/> | 17 | <path class="fil0" d="M2581 1291c0,713 -577,1290 -1290,1290 -713,0 -1291,-577 -1291,-1290 0,-713 578,-1291 1291,-1291 713,0 1290,578 1290,1291z"/> |
19 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#4E4E4E" d="M93.403,50.835c0.498,0.342,0.406,0.292,0.891,0.678 | 18 | <path class="fil1" d="M655 1065c-54,-47 -118,-118 -114,-140 10,-50 176,-64 221,-65 56,-2 80,-152 -3,-153 -71,-1 -264,19 -312,129 -56,130 22,248 140,351 55,49 150,126 143,211 -17,102 -208,152 -282,160 -103,13 -253,-6 -266,4 -13,7 10,44 112,84 220,78 387,27 482,-76 164,-214 -7,-411 -121,-505zm347 4c-30,-28 -64,5 -66,21 -1,10 -2,16 -4,44 -22,25 -54,80 -57,101 -2,21 22,59 48,55 -18,322 -5,396 -5,396 -2,0 27,278 30,266 19,112 44,183 49,0 6,-109 2,-172 12,-592 10,9 27,16 54,17 343,4 335,-588 -61,-308zm9 253c1,-30 3,-57 4,-83 0,0 0,0 0,0 91,-90 179,-107 179,-91 0,16 -68,114 -183,174zm520 -210c-69,0 -148,42 -154,68 -13,57 15,111 52,123 13,4 28,-23 69,-33 81,-21 153,31 155,104 3,73 -61,143 -145,156 -85,13 -163,-44 -163,-127 0,-25 2,-54 11,-88 13,-50 -33,-43 -71,66 -20,58 -7,146 38,212 40,59 105,94 177,94 136,0 254,-129 263,-288 8,-158 -95,-287 -232,-287zm684 -387c-134,-13 -205,-6 -221,-7 9,-68 27,-201 31,-231 6,-45 -102,-54 -109,-19 -7,37 -13,128 -28,252 -249,10 -563,41 -585,61 -39,37 -15,136 13,135 46,-2 330,-63 562,-85 -14,140 -56,576 -57,604 0,0 -7,229 -4,220 2,93 15,154 45,11 57,-298 100,-708 118,-849 41,-7 194,-23 235,-32 83,-16 134,-47 0,-60z"/> |
20 | c1.225,0.975,2.387,2.095,3.404,3.38c3.201,4.046,5.377,9.176,5.424,14.392c-0.219,2.826-2.988,6.006-6.789,7.871 | 19 | <path class="fil1" d="M1828 1884c-55,-56 -105,-39 -135,13 -16,29 -10,79 6,102 15,26 33,41 52,51 37,19 78,22 113,-6 17,-13 32,-41 32,-63 10,-67 -34,-61 -68,-97z"/> |
21 | c0.514-0.907,0.639-4.253,0.434-6.93c-0.279-3.622-1.756-7.251-3.793-10.191c-0.631-0.914-1.324-1.759-2.051-2.525 | 20 | </g> |
22 | c-0.316-0.333-0.055-0.24-0.381-0.544L93.403,50.835z"/> | ||
23 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#B2B7BC" d="M65.499,56.787c1.904,0.569,4.658,1.102,7.111,0.855 | ||
24 | c0.906-0.09,1.727-0.334,2.445-0.646C74.554,55.982,70.761,51.5,65.499,56.787L65.499,56.787z M68.269,47.791 | ||
25 | c1.115-0.92,3.475-1.482,4.871-1.68c1.529-0.217,3.084-0.224,4.682-0.115c2.758,0.188,6.432,0.797,9.512,1.965l-2.813,5.528 | ||
26 | c-2.064,4.058-5.393,7.109-10.08,8.043c-4.295,0.856-8.693-0.229-12.211-1.511l2.997-6.419c6.992-3.107,9.961,1.176,10.953,2.742 | ||
27 | c0.553-0.372,1.098-0.831,1.768-1.59c0.467-0.529,0.881-1.234,1.332-2.026C79.278,52.728,71.319,49.159,68.269,47.791z"/> | ||
28 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M49.707,44.82l-3.581,0.504 | ||
29 | c-1.214,0.171-3.115,0.738-4.225,1.264l-15.855,7.49c-1.109,0.523-2.444,0.047-2.971-1.065l-0.651-1.38 | ||
30 | c-0.525-1.109-0.045-2.444,1.065-2.967l16.266-7.688c1.109-0.524,2.143-1.001,2.299-1.06c0.154-0.06,1.574-0.291,2.789-0.46 | ||
31 | l4.028-0.567L49.707,44.82z"/> | ||
32 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#476C9F" d="M60.875,61.232l10.228-21.906 | ||
33 | c0.123-0.26,0.084-0.603-0.309-0.783c-1.969-0.919-3.9-1.822-5.867-2.741c-0.564-0.334-1.217-0.403-1.912-0.34L49.462,37.22 | ||
34 | l1.297,9.203l3.315-0.448c0.719-0.095,1.92,0.802,1.911,1.503c-0.061,2.338-0.121,4.676-0.183,7.015 | ||
35 | c0.14,4.59,1.018,4.979,4.35,6.891C60.47,61.565,60.581,61.716,60.875,61.232z"/> | ||
36 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M91.749,46.767c1.258,0.587,1.803,2.082,1.215,3.344 | ||
37 | l-3.018,6.466c-0.586,1.256-2.084,1.803-3.34,1.214l-0.475-0.223c-1.26-0.585-1.805-2.084-1.217-3.341l3.555-7.206l-0.006-0.004 | ||
38 | c0.725-0.703,1.84-0.925,2.811-0.47L91.749,46.767z"/> | ||
39 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M68.3,46.876c0.648-0.351,1.26-0.608,1.969-0.822 | ||
40 | c5.42-1.633,13.826-0.027,17.332,1.401l0.369-0.658l-16.225-7.236L68.3,46.876z"/> | ||
41 | </g> | ||
42 | </g> | ||
43 | </svg> | 21 | </svg> |
44 | 22 |
src/assets/img/logo-spot.svg
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | ||
3 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | 2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> |
4 | <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" | 3 | <!-- Creator: CorelDRAW X7 --> |
5 | width="125.333px" height="130.667px" viewBox="0 0 125.333 130.667" enable-background="new 0 0 125.333 130.667" | 4 | <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="78.7688mm" height="78.7676mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" |
6 | xml:space="preserve"> | 5 | viewBox="0 0 2581 2581" |
7 | <g> | 6 | xmlns:xlink="http://www.w3.org/1999/xlink"> |
8 | 7 | <defs> | |
9 | <circle opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" fill="#F7F7F8" stroke="#476C9F" stroke-miterlimit="10" cx="62.667" cy="65.333" r="50"/> | 8 | <style type="text/css"> |
10 | <g> | 9 | <![CDATA[ |
11 | <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="39.4775" y1="85.063" x2="98.121" y2="70.0902"> | 10 | .fil0 {fill:#AD036F} |
12 | <stop offset="0" style="stop-color:#476297"/> | 11 | .fil1 {fill:white} |
13 | <stop offset="1" style="stop-color:#0D0C0C"/> | 12 | ]]> |
14 | </linearGradient> | 13 | </style> |
15 | <path fill-rule="evenodd" clip-rule="evenodd" fill="url(#SVGID_1_)" d="M52.696,90.272V61.046 | 14 | </defs> |
16 | c4.601,2.467,13.801,6.232,13.801,10.58v12.63c2.891,0,5.779,0,8.67,0c15.877,0.968,27.234-6.053,27.943-13.324 | 15 | <g id="Capa_x0020_1"> |
17 | c-0.004,1.654-0.543,5.023-0.643,5.455c-1.102,4.709-3.596,8.946-7.352,12.262c-4.998,4.411-11.279,6.577-19.418,6.577H57.65 | 16 | <metadata id="CorelCorpID_0Corel-Layer"/> |
18 | c-1.355,0-2.521-0.486-3.494-1.459C53.183,92.793,52.696,91.628,52.696,90.272z"/> | 17 | <path class="fil0" d="M2581 1291c0,713 -577,1290 -1290,1290 -713,0 -1291,-577 -1291,-1290 0,-713 578,-1291 1291,-1291 713,0 1290,578 1290,1291z"/> |
19 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#4E4E4E" d="M93.403,50.835c0.498,0.342,0.406,0.292,0.891,0.678 | 18 | <path class="fil1" d="M655 1065c-54,-47 -118,-118 -114,-140 10,-50 176,-64 221,-65 56,-2 80,-152 -3,-153 -71,-1 -264,19 -312,129 -56,130 22,248 140,351 55,49 150,126 143,211 -17,102 -208,152 -282,160 -103,13 -253,-6 -266,4 -13,7 10,44 112,84 220,78 387,27 482,-76 164,-214 -7,-411 -121,-505zm347 4c-30,-28 -64,5 -66,21 -1,10 -2,16 -4,44 -22,25 -54,80 -57,101 -2,21 22,59 48,55 -18,322 -5,396 -5,396 -2,0 27,278 30,266 19,112 44,183 49,0 6,-109 2,-172 12,-592 10,9 27,16 54,17 343,4 335,-588 -61,-308zm9 253c1,-30 3,-57 4,-83 0,0 0,0 0,0 91,-90 179,-107 179,-91 0,16 -68,114 -183,174zm520 -210c-69,0 -148,42 -154,68 -13,57 15,111 52,123 13,4 28,-23 69,-33 81,-21 153,31 155,104 3,73 -61,143 -145,156 -85,13 -163,-44 -163,-127 0,-25 2,-54 11,-88 13,-50 -33,-43 -71,66 -20,58 -7,146 38,212 40,59 105,94 177,94 136,0 254,-129 263,-288 8,-158 -95,-287 -232,-287zm684 -387c-134,-13 -205,-6 -221,-7 9,-68 27,-201 31,-231 6,-45 -102,-54 -109,-19 -7,37 -13,128 -28,252 -249,10 -563,41 -585,61 -39,37 -15,136 13,135 46,-2 330,-63 562,-85 -14,140 -56,576 -57,604 0,0 -7,229 -4,220 2,93 15,154 45,11 57,-298 100,-708 118,-849 41,-7 194,-23 235,-32 83,-16 134,-47 0,-60z"/> |
20 | c1.225,0.975,2.387,2.095,3.404,3.38c3.201,4.046,5.377,9.176,5.424,14.392c-0.219,2.826-2.988,6.006-6.789,7.871 | 19 | <path class="fil1" d="M1828 1884c-55,-56 -105,-39 -135,13 -16,29 -10,79 6,102 15,26 33,41 52,51 37,19 78,22 113,-6 17,-13 32,-41 32,-63 10,-67 -34,-61 -68,-97z"/> |
21 | c0.514-0.907,0.639-4.253,0.434-6.93c-0.279-3.622-1.756-7.251-3.793-10.191c-0.631-0.914-1.324-1.759-2.051-2.525 | 20 | </g> |
22 | c-0.316-0.333-0.055-0.24-0.381-0.544L93.403,50.835z"/> | ||
23 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#B2B7BC" d="M65.499,56.787c1.904,0.569,4.658,1.102,7.111,0.855 | ||
24 | c0.906-0.09,1.727-0.334,2.445-0.646C74.554,55.982,70.761,51.5,65.499,56.787L65.499,56.787z M68.269,47.791 | ||
25 | c1.115-0.92,3.475-1.482,4.871-1.68c1.529-0.217,3.084-0.224,4.682-0.115c2.758,0.188,6.432,0.797,9.512,1.965l-2.813,5.528 | ||
26 | c-2.064,4.058-5.393,7.109-10.08,8.043c-4.295,0.856-8.693-0.229-12.211-1.511l2.997-6.419c6.992-3.107,9.961,1.176,10.953,2.742 | ||
27 | c0.553-0.372,1.098-0.831,1.768-1.59c0.467-0.529,0.881-1.234,1.332-2.026C79.278,52.728,71.319,49.159,68.269,47.791z"/> | ||
28 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M49.707,44.82l-3.581,0.504 | ||
29 | c-1.214,0.171-3.115,0.738-4.225,1.264l-15.855,7.49c-1.109,0.523-2.444,0.047-2.971-1.065l-0.651-1.38 | ||
30 | c-0.525-1.109-0.045-2.444,1.065-2.967l16.266-7.688c1.109-0.524,2.143-1.001,2.299-1.06c0.154-0.06,1.574-0.291,2.789-0.46 | ||
31 | l4.028-0.567L49.707,44.82z"/> | ||
32 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#476C9F" d="M60.875,61.232l10.228-21.906 | ||
33 | c0.123-0.26,0.084-0.603-0.309-0.783c-1.969-0.919-3.9-1.822-5.867-2.741c-0.564-0.334-1.217-0.403-1.912-0.34L49.462,37.22 | ||
34 | l1.297,9.203l3.315-0.448c0.719-0.095,1.92,0.802,1.911,1.503c-0.061,2.338-0.121,4.676-0.183,7.015 | ||
35 | c0.14,4.59,1.018,4.979,4.35,6.891C60.47,61.565,60.581,61.716,60.875,61.232z"/> | ||
36 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M91.749,46.767c1.258,0.587,1.803,2.082,1.215,3.344 | ||
37 | l-3.018,6.466c-0.586,1.256-2.084,1.803-3.34,1.214l-0.475-0.223c-1.26-0.585-1.805-2.084-1.217-3.341l3.555-7.206l-0.006-0.004 | ||
38 | c0.725-0.703,1.84-0.925,2.811-0.47L91.749,46.767z"/> | ||
39 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M68.3,46.876c0.648-0.351,1.26-0.608,1.969-0.822 | ||
40 | c5.42-1.633,13.826-0.027,17.332,1.401l0.369-0.658l-16.225-7.236L68.3,46.876z"/> | ||
41 | </g> | ||
42 | </g> | ||
43 | </svg> | 21 | </svg> |
44 | 22 |
src/assets/img/negativo-spot.svg
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | ||
3 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | 2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> |
4 | <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" | 3 | <!-- Creator: CorelDRAW X7 --> |
5 | width="125.333px" height="130.667px" viewBox="0 0 125.333 130.667" enable-background="new 0 0 125.333 130.667" | 4 | <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="78.7688mm" height="78.7676mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" |
6 | xml:space="preserve"> | 5 | viewBox="0 0 2760 2760" |
7 | <g> | 6 | xmlns:xlink="http://www.w3.org/1999/xlink"> |
8 | 7 | <defs> | |
9 | <circle opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" fill="#F7F7F8" stroke="#476C9F" stroke-miterlimit="10" cx="62.667" cy="65.333" r="50"/> | 8 | <style type="text/css"> |
10 | <g> | 9 | <![CDATA[ |
11 | <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="39.4775" y1="85.063" x2="98.121" y2="70.0902"> | 10 | .fil1 {fill:#AD036F} |
12 | <stop offset="0" style="stop-color:#476297"/> | 11 | .fil0 {fill:white} |
13 | <stop offset="1" style="stop-color:#0D0C0C"/> | 12 | ]]> |
14 | </linearGradient> | 13 | </style> |
15 | <path fill-rule="evenodd" clip-rule="evenodd" fill="url(#SVGID_1_)" d="M52.696,90.272V61.046 | 14 | </defs> |
16 | c4.601,2.467,13.801,6.232,13.801,10.58v12.63c2.891,0,5.779,0,8.67,0c15.877,0.968,27.234-6.053,27.943-13.324 | 15 | <g id="Capa_x0020_1"> |
17 | c-0.004,1.654-0.543,5.023-0.643,5.455c-1.102,4.709-3.596,8.946-7.352,12.262c-4.998,4.411-11.279,6.577-19.418,6.577H57.65 | 16 | <metadata id="CorelCorpID_0Corel-Layer"/> |
18 | c-1.355,0-2.521-0.486-3.494-1.459C53.183,92.793,52.696,91.628,52.696,90.272z"/> | 17 | <path class="fil0" d="M2760 1380c0,762 -618,1380 -1380,1380 -762,0 -1380,-618 -1380,-1380 0,-762 618,-1380 1380,-1380 762,0 1380,618 1380,1380z"/> |
19 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#4E4E4E" d="M93.403,50.835c0.498,0.342,0.406,0.292,0.891,0.678 | 18 | <path class="fil1" d="M700 1138c-58,-50 -125,-126 -121,-149 10,-53 187,-69 236,-70 60,-1 86,-162 -4,-163 -76,-1 -282,21 -333,138 -60,139 23,265 150,375 58,52 160,135 152,225 -18,110 -222,163 -301,172 -110,13 -270,-7 -285,3 -14,9 11,48 121,91 234,84 413,28 515,-81 175,-229 -8,-440 -130,-541zm372 4c-32,-29 -70,6 -71,23 -2,11 -2,18 -4,47 -24,28 -59,86 -61,108 -2,23 23,63 51,59 -19,345 -6,423 -6,423 -2,1 30,298 32,284 21,121 48,196 53,0 6,-115 2,-183 13,-632 10,9 28,17 57,18 367,5 359,-628 -64,-330zm9 271c1,-31 3,-61 5,-88 0,0 0,0 0,0 96,-96 190,-115 191,-98 0,18 -74,123 -196,186zm556 -224c-74,0 -158,45 -164,73 -15,61 15,118 54,131 14,5 31,-25 74,-36 87,-22 164,34 167,112 3,78 -66,153 -156,167 -91,14 -174,-48 -174,-137 0,-26 2,-57 12,-93 14,-54 -36,-46 -76,70 -22,62 -8,156 40,227 43,63 113,100 190,100 145,0 271,-137 280,-307 10,-170 -100,-307 -247,-307zm731 -414c-143,-14 -220,-6 -236,-8 10,-72 29,-214 33,-246 6,-48 -109,-58 -116,-21 -8,40 -15,138 -30,270 -267,11 -603,43 -626,65 -42,39 -16,146 14,144 49,-2 352,-67 600,-90 -14,149 -59,615 -60,645 0,0 -8,245 -5,236 2,99 16,164 49,11 61,-319 107,-757 126,-907 44,-8 207,-25 251,-35 89,-17 143,-50 0,-64z"/> |
20 | c1.225,0.975,2.387,2.095,3.404,3.38c3.201,4.046,5.377,9.176,5.424,14.392c-0.219,2.826-2.988,6.006-6.789,7.871 | 19 | <path class="fil1" d="M1954 2014c-58,-60 -112,-41 -144,14 -17,31 -10,85 6,109 16,28 36,43 56,55 40,19 84,23 121,-7 18,-14 34,-43 34,-67 11,-71 -36,-65 -73,-104z"/> |
21 | c0.514-0.907,0.639-4.253,0.434-6.93c-0.279-3.622-1.756-7.251-3.793-10.191c-0.631-0.914-1.324-1.759-2.051-2.525 | 20 | </g> |
22 | c-0.316-0.333-0.055-0.24-0.381-0.544L93.403,50.835z"/> | ||
23 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#B2B7BC" d="M65.499,56.787c1.904,0.569,4.658,1.102,7.111,0.855 | ||
24 | c0.906-0.09,1.727-0.334,2.445-0.646C74.554,55.982,70.761,51.5,65.499,56.787L65.499,56.787z M68.269,47.791 | ||
25 | c1.115-0.92,3.475-1.482,4.871-1.68c1.529-0.217,3.084-0.224,4.682-0.115c2.758,0.188,6.432,0.797,9.512,1.965l-2.813,5.528 | ||
26 | c-2.064,4.058-5.393,7.109-10.08,8.043c-4.295,0.856-8.693-0.229-12.211-1.511l2.997-6.419c6.992-3.107,9.961,1.176,10.953,2.742 | ||
27 | c0.553-0.372,1.098-0.831,1.768-1.59c0.467-0.529,0.881-1.234,1.332-2.026C79.278,52.728,71.319,49.159,68.269,47.791z"/> | ||
28 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M49.707,44.82l-3.581,0.504 | ||
29 | c-1.214,0.171-3.115,0.738-4.225,1.264l-15.855,7.49c-1.109,0.523-2.444,0.047-2.971-1.065l-0.651-1.38 | ||
30 | c-0.525-1.109-0.045-2.444,1.065-2.967l16.266-7.688c1.109-0.524,2.143-1.001,2.299-1.06c0.154-0.06,1.574-0.291,2.789-0.46 | ||
31 | l4.028-0.567L49.707,44.82z"/> | ||
32 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#476C9F" d="M60.875,61.232l10.228-21.906 | ||
33 | c0.123-0.26,0.084-0.603-0.309-0.783c-1.969-0.919-3.9-1.822-5.867-2.741c-0.564-0.334-1.217-0.403-1.912-0.34L49.462,37.22 | ||
34 | l1.297,9.203l3.315-0.448c0.719-0.095,1.92,0.802,1.911,1.503c-0.061,2.338-0.121,4.676-0.183,7.015 | ||
35 | c0.14,4.59,1.018,4.979,4.35,6.891C60.47,61.565,60.581,61.716,60.875,61.232z"/> | ||
36 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M91.749,46.767c1.258,0.587,1.803,2.082,1.215,3.344 | ||
37 | l-3.018,6.466c-0.586,1.256-2.084,1.803-3.34,1.214l-0.475-0.223c-1.26-0.585-1.805-2.084-1.217-3.341l3.555-7.206l-0.006-0.004 | ||
38 | c0.725-0.703,1.84-0.925,2.811-0.47L91.749,46.767z"/> | ||
39 | <path fill-rule="evenodd" clip-rule="evenodd" fill="#8D9094" d="M68.3,46.876c0.648-0.351,1.26-0.608,1.969-0.822 | ||
40 | c5.42-1.633,13.826-0.027,17.332,1.401l0.369-0.658l-16.225-7.236L68.3,46.876z"/> | ||
41 | </g> | ||
42 | </g> | ||
43 | </svg> | 21 | </svg> |
44 | 22 |
src/favicon.ico
No preview for this file type