barbican-reset 1.2.4 → 1.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/components/{notification.vue → alert.vue} +29 -50
  2. package/components/container.vue +15 -7
  3. package/components/event_summary.vue +1 -1
  4. package/components/footer_logos.vue +30 -0
  5. package/components/footer_lower.vue +20 -0
  6. package/components/footer_upper.vue +43 -0
  7. package/components/form_group.vue +92 -0
  8. package/components/form_update.vue +2 -3
  9. package/components/radio_group.vue +27 -0
  10. package/helpers/mixins/_buttons.scss +14 -0
  11. package/icons/.DS_Store +0 -0
  12. package/icons/account/index.js +6 -6
  13. package/icons/account/{MembershipIcon.vue → membership.vue} +0 -0
  14. package/icons/account/{OrdersIcon.vue → orders.vue} +0 -0
  15. package/icons/account/{PaymentIcon.vue → payment.vue} +0 -0
  16. package/icons/account/{PersonalIcon.vue → personal.vue} +0 -0
  17. package/icons/account/{SupportIcon.vue → support.vue} +0 -0
  18. package/icons/account/{VideoIcon.vue → video.vue} +0 -0
  19. package/icons/{arrow_icon.vue → arrow.vue} +0 -0
  20. package/icons/{barbican/index.vue → barbican.vue} +8 -1
  21. package/icons/city_of_london_lockup.vue +30 -0
  22. package/icons/index.js +3 -1
  23. package/icons/password/index.js +2 -2
  24. package/icons/password/{RequestIcon.vue → request.vue} +0 -0
  25. package/icons/password/{ResetIcon.vue → reset.vue} +0 -0
  26. package/icons/power/alleyne.vue +3 -0
  27. package/icons/power/banff.vue +3 -0
  28. package/icons/power/council.vue +13 -0
  29. package/icons/power/index.js +3 -3
  30. package/icons/snippets/{BarbicanIcon.vue → barbican.vue} +0 -0
  31. package/icons/snippets/{ContributorIcon.vue → contributor.vue} +0 -0
  32. package/icons/snippets/index.js +4 -4
  33. package/icons/snippets/{OtherIcon.vue → other.vue} +0 -0
  34. package/icons/snippets/{PinIcon.vue → pin.vue} +0 -0
  35. package/icons/stream/{AirplayIcon.vue → airplay.vue} +0 -0
  36. package/icons/stream/{CastIcon.vue → cast.vue} +0 -0
  37. package/icons/stream/{ChatIcon.vue → chat.vue} +0 -0
  38. package/icons/stream/close.vue +7 -0
  39. package/icons/stream/{CogIcon.vue → cog.vue} +0 -0
  40. package/icons/stream/index.js +7 -7
  41. package/icons/stream/{LiveIcon/index.vue → live.vue} +46 -1
  42. package/icons/stream/{VolumeIcon.vue → volume.vue} +0 -0
  43. package/index.js +13 -5
  44. package/package.json +1 -1
  45. package/scss/_atomic.scss +10 -0
  46. package/scss/_btn.scss +4 -0
  47. package/scss/_radio-group.scss +4 -8
  48. package/scss/card/_account.scss +16 -0
  49. package/scss/card/index.scss +1 -0
  50. package/scss/index.scss +9 -3
  51. package/scss/table/_details.scss +66 -0
  52. package/scss/table/_orders.scss +50 -0
  53. package/scss/table/_preferences.scss +73 -0
  54. package/scss/table/_tickets.scss +5 -3
  55. package/scss/table/index.scss +3 -0
  56. package/components/account_card.vue +0 -31
  57. package/icons/barbican/index.scss +0 -5
  58. package/icons/power/AlleyneIcon.vue +0 -16
  59. package/icons/power/BanffIcon.vue +0 -41
  60. package/icons/power/CouncilIcon.vue +0 -56
  61. package/icons/stream/LiveIcon/live_icon.scss +0 -42
  62. package/icons/stream/close_icon.vue +0 -23
  63. package/scss/_form-group.scss +0 -59
  64. package/scss/_radio.scss +0 -4
File without changes
File without changes
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="28" viewBox="0 0 20 20">
3
+ <path data-fill fill="#fefbfa" d="M10,0C4.5,0,0,4.5,0,10s4.5,10,10,10s10-4.5,10-10S15.5,0,10,0z" />
4
+ <path data-outline fill="#353535" d="M10,0C4.5,0,0,4.5,0,10s4.5,10,10,10s10-4.5,10-10S15.5,0,10,0z M10,18c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8 S14.4,18,10,18z" />
5
+ <path data-cross fill="#353535" d="M12.6,6L10,8.6L7.4,6L6,7.4L8.6,10L6,12.6L7.4,14l2.6-2.6l2.6,2.6l1.4-1.4L11.4,10L14,7.4L12.6,6z" />
6
+ </svg>
7
+ </template>
File without changes
@@ -1,10 +1,10 @@
1
- import AirplayIcon from './AirplayIcon'
2
- import CastIcon from './CastIcon'
3
- import ChatIcon from './ChatIcon'
4
- import CogIcon from './CogIcon'
5
- import VolumeIcon from './VolumeIcon'
6
- import LiveIcon from './LiveIcon'
7
- import CloseIcon from './close_icon'
1
+ import AirplayIcon from './airplay'
2
+ import CastIcon from './cast'
3
+ import ChatIcon from './chat'
4
+ import CogIcon from './cog'
5
+ import VolumeIcon from './volume'
6
+ import LiveIcon from './live'
7
+ import CloseIcon from './close'
8
8
 
9
9
  export {
10
10
  AirplayIcon,
@@ -58,4 +58,49 @@ export default {
58
58
  };
59
59
  </script>
60
60
 
61
- <style src="./live_icon.scss" lang="scss"></style>
61
+ <style lang="scss" scoped>
62
+
63
+ .live-icon {
64
+ &__container {
65
+ background-color: $c-grey-midnight;
66
+ border-radius: $border-radius;
67
+ font-size: $font-size-sm;
68
+ padding: 0.6rem 0.8rem;
69
+ border-color: white;
70
+ position: absolute;
71
+ font-weight: bold;
72
+ border: 1px solid;
73
+ color: white;
74
+ right: 1rem;
75
+ top: 1rem;
76
+
77
+ @include media-breakpoint-up(sm) {
78
+ font-size: $font-size-base;
79
+ padding: 0.8rem 1rem;
80
+ }
81
+
82
+ @include media-breakpoint-up(md) {
83
+ right: 2rem;
84
+ top: 2rem;
85
+ }
86
+ }
87
+
88
+ &__title {
89
+ vertical-align: middle;
90
+ display: inline-block;
91
+ margin-right: 0.5rem;
92
+ }
93
+
94
+ &__svg {
95
+ vertical-align: middle;
96
+ display: inline-block;
97
+ height: 1.5rem;
98
+ fill: white;
99
+
100
+ @include media-breakpoint-up(sm) {
101
+ height: 1.75rem;
102
+ }
103
+ }
104
+ }
105
+
106
+ </style>
File without changes
package/index.js CHANGED
@@ -3,12 +3,11 @@ import Card from './components/card'
3
3
  import Container from './components/container'
4
4
  import Block from './components/block'
5
5
  import EventSummary from './components/event_summary'
6
- import AccountCard from './components/account_card'
7
6
  import AccountTitle from './components/account_title'
8
7
  import Wrap from './components/wrap'
9
8
  import TableRow from './components/table_row'
10
9
  import Banner from './components/banner'
11
- import Notification from './components/notification'
10
+ import Alert from './components/alert'
12
11
  import LoadingAnimation from './components/loading_animation'
13
12
  import RelatedTitle from './components/related_title'
14
13
  import TypeText from './components/type_text'
@@ -17,10 +16,15 @@ import Carousel from './components/carousel'
17
16
  import CardDeck from './components/card_deck'
18
17
  import FormSection from './components/form_section'
19
18
  import FormUpdate from './components/form_update'
19
+ import FormGroup from './components/form_group'
20
+ import RadioGroup from './components/radio_group'
21
+ import FooterUpper from './components/footer_upper'
22
+ import FooterLogos from './components/footer_logos'
23
+ import FooterLower from './components/footer_lower'
20
24
 
21
25
  export {
22
26
  LoadingAnimation,
23
- Notification,
27
+ Alert,
24
28
  RelatedTitle,
25
29
  TypeText,
26
30
  Container,
@@ -28,13 +32,17 @@ export {
28
32
  Card,
29
33
  Carousel,
30
34
  Banner,
31
- AccountCard,
32
35
  AccountTitle,
33
36
  Placeholder,
34
37
  FormSection,
35
38
  FormUpdate,
39
+ FormGroup,
40
+ RadioGroup,
36
41
  TableRow,
37
42
  Block,
38
43
  EventSummary,
39
- CardDeck
44
+ CardDeck,
45
+ FooterUpper,
46
+ FooterLogos,
47
+ FooterLower
40
48
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "1.2.4",
3
+ "version": "1.2.8",
4
4
  "description": "A collection of useful scss imports and js scripts, that provide consistent styling and functionality across barbican projects.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/scss/_atomic.scss CHANGED
@@ -16,6 +16,10 @@ $aligns: "left", "center", "right";
16
16
  }
17
17
  }
18
18
 
19
+ .margin-0 {
20
+ margin: 0;
21
+ }
22
+
19
23
  .width-100 {
20
24
  width: 100%;
21
25
  }
@@ -34,4 +38,10 @@ $aligns: "left", "center", "right";
34
38
 
35
39
  .c-brand-orange {
36
40
  color: $c-brand-orange;
41
+ }
42
+
43
+ .list-style-none {
44
+ list-style-type: none;
45
+ padding: 0;
46
+ margin: 0;
37
47
  }
package/scss/_btn.scss CHANGED
@@ -56,6 +56,10 @@
56
56
  @include btn-video-login;
57
57
  }
58
58
 
59
+ &.btn-invisible {
60
+ @include btn-invisible;
61
+ }
62
+
59
63
  // modifyers
60
64
  &.expand {
61
65
  @include btn-expand;
@@ -29,13 +29,8 @@ $margin-radio: 0.25rem;
29
29
  border: 1px solid $c-status-neutral;
30
30
  color: $c-status-neutral;
31
31
  }
32
-
33
- &:hover, &[data-focus-visible-added] {
34
- &:focus {
35
- box-shadow: none;
36
- outline: none;
37
- }
38
-
32
+
33
+ @include focus {
39
34
  ~ label {
40
35
  @include single-box($c-grey-steel, 0.0625rem);
41
36
  border: 1px solid $c-grey-steel;
@@ -59,6 +54,7 @@ $margin-radio: 0.25rem;
59
54
  border-radius: $border-radius-lg;
60
55
  background-color: $white;
61
56
  color: $c-grey-night;
57
+ font-weight: 400;
62
58
  cursor: pointer;
63
59
  }
64
60
  }
@@ -67,7 +63,7 @@ $margin-radio: 0.25rem;
67
63
  @if $status != 'neutral' {
68
64
  .radio-group.#{$status} {
69
65
  input[type=radio] {
70
- &:hover, &[data-focus-visible-added] {
66
+ @include focus {
71
67
  &:checked ~ label {
72
68
  @include single-box(map-get($color, base), 0.0625rem);
73
69
  border: 1px solid map-get($color, base);
@@ -0,0 +1,16 @@
1
+
2
+ .card[account] {
3
+ margin-top: $gap-account;
4
+ margin-bottom: 0;
5
+
6
+ .card-body {
7
+ padding: $gap-account;
8
+ }
9
+
10
+ iframe {
11
+ min-height: 590px;
12
+ @include media-breakpoint-up(sm) {
13
+ min-height: 440px;
14
+ }
15
+ }
16
+ }
@@ -2,6 +2,7 @@
2
2
  @import "confirm.scss";
3
3
  @import "login.scss";
4
4
  @import "password.scss";
5
+ @import "account.scss";
5
6
 
6
7
  .card {
7
8
  border: 1px solid $c-grey-pearl;
package/scss/index.scss CHANGED
@@ -17,11 +17,9 @@
17
17
  @import "checkbox.scss";
18
18
  @import "checkbox-group.scss";
19
19
  @import "form.scss";
20
- @import "form-group.scss";
21
20
  @import "list.scss";
22
21
  @import "input.scss";
23
22
  @import "radio-group.scss";
24
- @import "radio.scss";
25
23
 
26
24
  // atomic helper styles
27
25
  @import "atomic.scss";
@@ -40,6 +38,14 @@ a, a:hover {
40
38
  color: inherit;
41
39
  }
42
40
 
43
- p:last-of-type {
41
+ p:last-of-type:not([class^=margin]) {
44
42
  margin-bottom: 0;
43
+ }
44
+
45
+ footer {
46
+ color: $white;
47
+
48
+ &:not(.splash) {
49
+ background-color: $c-grey-midnight;
50
+ }
45
51
  }
@@ -0,0 +1,66 @@
1
+ table.details {
2
+
3
+ $mq: md;
4
+
5
+ thead {
6
+ background-color: $c-grey-alpine;
7
+ font-weight: 700;
8
+ display: block;
9
+
10
+ @include media-breakpoint-down($mq) {
11
+ display: none;
12
+ }
13
+ }
14
+
15
+ thead tr {
16
+ border: 1px solid $c-grey-pearl;
17
+ }
18
+
19
+ tr {
20
+ display: grid;
21
+
22
+ @include media-breakpoint-up($mq) {
23
+ grid-template-columns: auto 10rem 8rem;
24
+ }
25
+
26
+ @include media-breakpoint-down($mq) {
27
+ border-radius: $border-radius-lg;
28
+ }
29
+ }
30
+
31
+ tbody tr {
32
+ border-bottom: 1px solid $c-grey-pearl;
33
+ border-right: 1px solid $c-grey-pearl;
34
+ border-left: 1px solid $c-grey-pearl;
35
+
36
+ @include media-breakpoint-down($mq) {
37
+ border-top: 1px solid $c-grey-pearl;
38
+
39
+ &:not(:last-of-type) {
40
+ margin-bottom: 1rem;
41
+ }
42
+ }
43
+ }
44
+
45
+ th, td {
46
+ padding: 0.75rem;
47
+
48
+ @include media-breakpoint-up($mq) {
49
+ &:not(:last-of-type) {
50
+ border-right: 1px solid $c-grey-pearl;
51
+ }
52
+
53
+ &:last-of-type {
54
+ text-align: right;
55
+ }
56
+ }
57
+ }
58
+
59
+ label {
60
+ font-size: $font-size-lg;
61
+
62
+ @include media-breakpoint-up($mq) {
63
+ display: none;
64
+ }
65
+ }
66
+ }
@@ -0,0 +1,50 @@
1
+ table.orders {
2
+
3
+ $mq: md;
4
+
5
+ thead {
6
+ background-color: $c-grey-alpine;
7
+ margin-bottom: 1rem;
8
+ font-weight: 700;
9
+ display: block;
10
+
11
+ @include media-breakpoint-down($mq) {
12
+ display: none;
13
+ }
14
+ }
15
+
16
+ tr {
17
+ border: 1px solid $c-grey-pearl;
18
+ display: grid;
19
+
20
+ @include media-breakpoint-up($mq) {
21
+ grid-template-columns: 9rem 8rem auto 7rem;
22
+ }
23
+
24
+ @include media-breakpoint-down($mq) {
25
+ border-radius: $border-radius-lg;
26
+ }
27
+ }
28
+
29
+ th, td {
30
+ padding: 0.75rem;
31
+
32
+ @include media-breakpoint-up($mq) {
33
+ &:not(:last-of-type) {
34
+ border-right: 1px solid $c-grey-pearl;
35
+ }
36
+
37
+ &:last-of-type {
38
+ text-align: right;
39
+ }
40
+ }
41
+ }
42
+
43
+ label {
44
+ font-size: $font-size-lg;
45
+
46
+ @include media-breakpoint-up($mq) {
47
+ display: none;
48
+ }
49
+ }
50
+ }
@@ -0,0 +1,73 @@
1
+ table.preferences {
2
+
3
+ $mq: md;
4
+
5
+ thead {
6
+ background-color: $c-grey-alpine;
7
+ margin-bottom: 1rem;
8
+ font-weight: 700;
9
+ display: block;
10
+
11
+ @include media-breakpoint-down($mq) {
12
+ display: none;
13
+ }
14
+ }
15
+
16
+ tr {
17
+ border: 1px solid $c-grey-pearl;
18
+ display: grid;
19
+
20
+ &:not(:last-of-type) {
21
+ margin-bottom: 1rem;
22
+ }
23
+
24
+ @include media-breakpoint-up($mq) {
25
+ grid-template-columns: auto repeat(2, 5rem);
26
+ }
27
+
28
+ @include media-breakpoint-down($mq) {
29
+ border-radius: $border-radius-lg;
30
+ }
31
+ }
32
+
33
+ th, td {
34
+ padding: 0.75rem;
35
+
36
+ @include media-breakpoint-up($mq) {
37
+ text-align: center;
38
+
39
+ &:not(:last-of-type) {
40
+ border-right: 1px solid $c-grey-pearl;
41
+ }
42
+
43
+ &:first-of-type {
44
+ text-align: left;
45
+ }
46
+ }
47
+
48
+ @include media-breakpoint-down($mq) {
49
+ &:not(:first-of-type) {
50
+ padding-top: 0;
51
+ }
52
+ }
53
+ }
54
+
55
+ label {
56
+ font-size: $font-size-lg;
57
+
58
+ @include media-breakpoint-up($mq) {
59
+ display: none;
60
+ }
61
+ }
62
+
63
+ .custom-radio {
64
+ @include media-breakpoint-up($mq) {
65
+ margin: 0;
66
+
67
+ input[type=radio] {
68
+ position: relative;
69
+ inset: auto;
70
+ }
71
+ }
72
+ }
73
+ }
@@ -1,11 +1,13 @@
1
1
  table.tickets {
2
2
 
3
+ $mq: sm;
4
+
3
5
  th {
4
6
  font-weight: 700;
5
7
  }
6
8
 
7
9
  tr {
8
- @include media-breakpoint-up(sm) {
10
+ @include media-breakpoint-up($mq) {
9
11
  @include table-row;
10
12
  grid-template-columns: 2fr 5fr 5fr 2fr;
11
13
  display: grid;
@@ -16,7 +18,7 @@ table.tickets {
16
18
  }
17
19
  }
18
20
 
19
- @include media-breakpoint-down(sm) {
21
+ @include media-breakpoint-down($mq) {
20
22
  border-radius: $border-radius-lg;
21
23
  border: 1px solid $c-grey-pearl;
22
24
  display: block;
@@ -51,7 +53,7 @@ table.tickets {
51
53
  }
52
54
 
53
55
  .ticket-name {
54
- @include media-breakpoint-down(sm) {
56
+ @include media-breakpoint-down($mq) {
55
57
  display: none;
56
58
  }
57
59
  }
@@ -2,6 +2,9 @@
2
2
  @import "tickets.scss";
3
3
  @import "basket.scss";
4
4
  @import "section.scss";
5
+ @import "orders.scss";
6
+ @import "details.scss";
7
+ @import "preferences.scss";
5
8
 
6
9
  table {
7
10
  border-spacing: 0;
@@ -1,31 +0,0 @@
1
- <template>
2
- <div :class="$style.container">
3
- <slot></slot>
4
- </div>
5
- </template>
6
-
7
- <script>
8
- export default {
9
- name: 'AccountCard'
10
- }
11
- </script>
12
-
13
- <style lang="scss" module>
14
-
15
- .container {
16
- border-radius: $border-radius-lg;
17
- border: 1px solid $c-grey-pearl;
18
- background-color: $white;
19
- padding: $gap-account;
20
- overflow: hidden;
21
-
22
- &:first-of-type {
23
- margin-top: $gap-account;
24
- }
25
-
26
- &:not(:last-of-type) {
27
- margin-bottom: $gap-account;
28
- }
29
- }
30
-
31
- </style>
@@ -1,5 +0,0 @@
1
-
2
- .logo {
3
- height: auto;
4
- width: 10rem;
5
- }
@@ -1,16 +0,0 @@
1
- <template>
2
- <svg width="325px" height="181px" viewBox="0 0 325 181" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
- <g id="Alleyne_and_Logo_black-(2)" transform="translate(-48.000000, -48.000000)">
5
- <path d="M73.187,64.5955 L59.887,105.3405 L86.487,105.3405 L73.187,64.5955 Z M98.456,48.8185 L126.748,135.6275 L96.4,135.6275 L87.088,107.1565 L59.403,107.1565 L68.713,135.6275 L48.159,135.6275 L72.281,61.6935 L68.048,48.8185 L98.456,48.8185 Z" id="Fill-1"></path>
6
- <polygon points="128.5591 135.6278 128.5591 48.8178 158.8461 48.8178 158.8461 133.8128 170.1541 133.8128 199.5921 104.4348 199.5921 135.6278"></polygon>
7
- <polygon points="204.3657 135.6278 204.3657 48.8178 234.6537 48.8178 234.6537 133.8128 244.4427 133.8128 273.8847 104.4348 273.8847 135.6278"></polygon>
8
- <polygon points="278.8823 135.6278 278.8823 48.8178 348.4003 48.8178 348.4003 76.8688 320.9543 50.6338 309.1693 50.6338 309.1693 91.3148 315.1533 91.3148 332.6833 73.9668 332.6833 102.6828 332.6833 110.4798 315.1533 93.1308 309.1693 93.1308 309.1693 133.8128 320.9543 133.8128 348.4003 107.5768 348.4003 135.6278 313.6433 135.6278"></polygon>
9
- <polygon points="71.6968 228.2469 71.6968 188.1169 47.9778 141.3749 79.7538 141.3749 102.2018 185.7069 115.0138 160.0209 106.4528 141.3749 126.7478 141.3749 103.4708 188.1169 103.4708 228.2469"></polygon>
10
- <polygon points="186.6528 228.0047 130.1938 180.9137 130.1938 228.0047 128.5588 228.0047 128.5588 141.3747 130.1938 141.3747 197.9608 197.8977 197.9608 168.8197 168.1578 141.3747 199.5918 141.3747 199.5918 199.2287 199.5918 228.0047"></polygon>
11
- <polygon points="204.3657 228.0643 204.3657 141.2543 273.8847 141.2543 273.8847 169.3053 246.4387 143.0703 234.6537 143.0703 234.6537 183.7513 240.6377 183.7513 258.1667 166.4033 258.1667 195.1193 258.1667 202.9163 240.6377 185.5673 234.6537 185.5673 234.6537 226.2493 246.4387 226.2493 273.8847 200.0133 273.8847 228.0643 239.1267 228.0643"></polygon>
12
- <path d="M309.0688,173.4139 C307.0518,175.1089 306.2868,177.8879 306.7718,181.7599 C307.2538,185.6279 308.5838,189.8909 310.7598,194.5439 C312.9368,199.1979 315.5648,203.5609 318.6508,207.6299 C321.7328,211.7019 324.8658,214.7849 328.0478,216.8809 C331.2318,218.9769 334.0528,219.3979 336.5138,218.1509 L309.0688,173.4139 Z M317.8318,141.4349 L348.4228,141.4349 L348.4228,163.5019 L317.7118,143.1899 C316.6248,143.2299 315.6588,143.7259 314.8088,144.6719 C313.9638,145.6179 313.5518,146.7379 313.5718,148.0249 C313.5918,149.3149 314.3478,150.4859 315.8398,151.5319 L335.0028,164.0469 L353.9828,196.1449 L372.9658,172.2679 L372.9658,197.6569 L354.8888,197.6569 L372.9658,228.1849 L342.6788,228.1849 L337.4208,219.6629 C328.8348,225.4639 321.0678,228.3249 314.1138,228.2449 C307.1628,228.1649 301.4598,226.0989 297.0058,222.0499 C292.5518,217.9979 289.7638,212.9019 288.6338,206.7539 C287.5068,200.6089 288.4638,194.3929 291.5068,188.1049 C294.5478,181.8189 300.0818,176.3999 308.0988,171.8429 L304.1708,165.4969 C301.6328,161.1849 300.6728,157.2159 301.2978,153.5889 C301.9238,149.9609 303.7188,147.0389 306.6778,144.8219 C309.6398,142.6049 313.3578,141.4779 317.8318,141.4349 L317.8318,141.4349 Z" id="Fill-8"></path>
13
- </g>
14
- </g>
15
- </svg>
16
- </template>
@@ -1,41 +0,0 @@
1
- <template>
2
- <svg width="680px" height="382px" viewBox="0 0 680 382" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
- <g id="BC_LOGO_FV_BK_RGB" fill="#000000" fill-rule="nonzero">
5
- <g id="XMLID_765_">
6
- <path d="M90.3,111.3 C106.4,107.2 116.9,97 116.9,78.8 C116.9,53.1 99.4,38.1 55.6,38.1 L0.4,38.1 L0.4,197.1 L64.5,197.1 C107.4,197.1 125.6,177.8 125.6,151.4 C125.5,130.1 113.9,115.8 90.3,111.3 Z M30.3,62.9 L57.8,62.9 C76.2,62.9 86,67.9 86,82.2 C86,96.7 75.6,102.4 61.9,102.4 L30.3,102.4 L30.3,62.9 Z M65.5,172.4 L30.3,172.4 L30.3,124.9 L65,124.9 C78.6,124.9 93.8006308,129 93.8006308,149.4 C93.9,165.1 82.1,172.4 65.5,172.4 Z" id="XMLID_770_"></path>
7
- <polygon id="XMLID_769_" points="405.5 152 339.6 38.2 306.2 38.2 306.2 197.2 333.9 197.2 333.9 86.3 399.4 197.2 433.4 197.2 433.4 38.2 405.5 38.2"></polygon>
8
- <polygon id="XMLID_768_" points="458.2 197.2 488.4 197.2 488.4 132.4 553.6 132.4 553.6 107.4 488.4 107.4 488.4 63.6 558.9 63.6 558.9 38.2 458.2 38.2"></polygon>
9
- <polygon id="XMLID_767_" points="679.5 63.6 679.5 38.2 578.9 38.2 578.9 197.2 609.1 197.2 609.1 132.4 674.3 132.4 674.3 107.4 609.1 107.4 609.1 63.6"></polygon>
10
- <polygon id="XMLID_766_" points="125.1 197.2 159.5 197.2 208.9 76 258.3 197.2 292.7 197.2 208.9 0.8"></polygon>
11
- </g>
12
- <path d="M129.1,233.7 L119.9,236.1 C118,231.4 115,228.9 110,228.9 C103.1,228.9 98.7,234.2 98.7,243.6 C98.7,252.9 102.6,258.6 110.1,258.6 C115.8,258.6 119,255.7 120.9,250.4 L129.9,253.2 C126.5,262.1 118.8,266.5 109.6,266.5 C99.6,266.5 88.9,260.3 88.9,243.6 C88.9,227.4 99.2,220.8 109.9,220.8 C117.8,221 125.5,224.1 129.1,233.7 Z" id="XMLID_763_"></path>
13
- <polygon id="XMLID_761_" points="164.7 229.9 145.1 229.9 145.1 239.6 163.4 239.6 163.4 247.2 145.1 247.2 145.1 257.8 165.3 257.8 165.3 265.6 135.7 265.6 135.7 222 164.8 222 164.8 229.9"></polygon>
14
- <polygon id="XMLID_759_" points="208.9 265.6 198 265.6 181.6 236.6 181.6 265.6 173 265.6 173 222 183.9 222 200.3 251.7 200.3 222 208.9 222"></polygon>
15
- <polygon id="XMLID_757_" points="248.9 229.9 236.6 229.9 236.6 265.5 227.1 265.5 227.1 229.9 214.8 229.9 214.8 222 248.9 222"></polygon>
16
- <path d="M272.2,222 C284.3,222 289.4,228 289.4,235.5 C289.4,241.3 286.4,245.5 280.4,247.6 L291.8,265.6 L280.7,265.6 L271.1,249.1 L265.1,249.1 L265.1,265.6 L255.6,265.6 L255.6,222 L272.2,222 Z M265.1,229.7 L265.1,241.7 L272.6,241.7 C276.6,241.7 279.7,240.3 279.7,235.5 C279.7,231.6 277.2,229.7 272.9,229.7 L265.1,229.7 Z" id="XMLID_754_"></path>
17
- <polygon id="XMLID_751_" points="325.8 229.9 306.2 229.9 306.2 239.6 324.5 239.6 324.5 247.2 306.2 247.2 306.2 257.8 326.4 257.8 326.4 265.6 296.8 265.6 296.8 222 325.9 222 325.9 229.9"></polygon>
18
- <polygon id="XMLID_745_" points="30 286.6 11.1 286.6 11.1 297.4 28.6 297.4 28.6 305.1 11.1 305.1 11.1 322.3 1.6 322.3 1.6 278.8 30 278.8"></polygon>
19
- <path d="M77.2,300.6 C77.2,316.5 66.7,323.4 55.6,323.4 C45.5,323.4 34,317.4 34,300.5 C34,284.3 44.5,277.7 55.6,277.7 C65.8,277.7 77.2,283.4 77.2,300.6 Z M43.8,300.4 C43.8,309.7 47.9,315.5 55.6,315.5 C62.4,315.5 67.4,310.2 67.4,300.7 C67.4,291.5 63.4,285.6 55.6,285.6 C48.5,285.6 43.8,291 43.8,300.4 Z" id="XMLID_738_"></path>
20
- <path d="M99,278.8 C111.1,278.8 116.2,284.8 116.2,292.3 C116.2,298.1 113.2,302.3 107.2,304.4 L118.6,322.4 L107.5,322.4 L97.9,305.9 L91.9,305.9 L91.9,322.4 L82.4,322.4 L82.4,278.9 L99,278.9 L99,278.8 Z M91.9,286.5 L91.9,298.5 L99.4,298.5 C103.4,298.5 106.5,297.1 106.5,292.3 C106.5,288.4 104,286.5 99.7,286.5 L91.9,286.5 Z" id="XMLID_731_"></path>
21
- <path d="M164.5,315.5 L148.1,315.5 L146.1,322.3 L136.4,322.3 L150.5,278.8 L162.4,278.8 L176.5,322.3 L166.4,322.3 L164.5,315.5 Z M150.2,307.9 L162.4,307.9 L156.3,286.1 L150.2,307.9 Z" id="XMLID_727_"></path>
22
- <path d="M198.1,278.8 C210.2,278.8 215.3,284.8 215.3,292.3 C215.3,298.1 212.3,302.3 206.3,304.4 L217.7,322.4 L206.6,322.4 L197,305.9 L191,305.9 L191,322.4 L181.5,322.4 L181.5,278.9 L198.1,278.9 L198.1,278.8 Z M191,286.5 L191,298.5 L198.5,298.5 C202.5,298.5 205.6,297.1 205.6,292.3 C205.6,288.4 203.1,286.5 198.8,286.5 L191,286.5 Z" id="XMLID_719_"></path>
23
- <polygon id="XMLID_711_" points="253 286.7 240.7 286.7 240.7 322.3 231.2 322.3 231.2 286.7 219 286.7 219 278.8 253 278.8"></polygon>
24
- <path d="M254,315.3 L260.2,309.6 C263.7,313.2 267.8,315.4 273.8,315.4 C278.8,315.4 282.3,313.5 282.3,310.2 C282.3,307 280.7,305.3 271.5,303.7 C261.2,301.8 256.3,298.1 256.3,290.4 C256.3,282.6 263.1,277.6 273.3,277.6 C281.9,277.6 287.8,281 291.6,285.3 L285.1,290.5 C282.9,288 279.5,285.4 273.3,285.4 C268.6,285.4 266,287.1 266,290.1 C266,293 267.7,294.3 276.5,295.9 C287.4,297.8 292.2,301.6 292.2,309.5 C292.2,318.1 285.1,323.2 273.7,323.2 C265.6,323.4 258.6,320.6 254,315.3 Z" id="XMLID_707_"></path>
25
- <path d="M337.9,315.5 L321.5,315.5 L319.5,322.3 L309.8,322.3 L323.9,278.8 L335.8,278.8 L349.9,322.3 L339.8,322.3 L337.9,315.5 Z M323.6,307.9 L335.8,307.9 L329.7,286.1 L323.6,307.9 Z" id="XMLID_704_"></path>
26
- <polygon id="XMLID_702_" points="389.9 322.3 379 322.3 362.6 293.3 362.6 322.3 354 322.3 354 278.8 364.9 278.8 381.3 308.5 381.3 278.8 389.9 278.8"></polygon>
27
- <path d="M410.7,278.8 C422.9,278.8 433.7,284.6 433.7,300 C433.7,317.1 422.7,322.4 412.5,322.4 L396.4,322.4 L396.4,278.9 L410.7,278.9 L410.7,278.8 Z M406.1,286.5 L406.1,314.5 L412.6,314.5 C418.1,314.5 424,311.8 424,299.9 C424,291.8 420.3,286.5 411,286.5 L406.1,286.5 Z" id="XMLID_699_"></path>
28
- <path d="M79.7,349.2 L70.5,351.6 C68.6,346.9 65.6,344.4 60.6,344.4 C53.7,344.4 49.3,349.7 49.3,359.1 C49.3,368.4 53.2,374.1 60.7,374.1 C66.4,374.1 69.6,371.2 71.5,365.9 L80.5,368.7 C77.1,377.6 69.4,382 60.2,382 C50.2,382 39.5,375.8 39.5,359.1 C39.5,342.9 49.8,336.3 60.5,336.3 C68.4,336.5 76.1,339.6 79.7,349.2 Z" id="XMLID_697_"></path>
29
- <path d="M101.7,337.5 C113.8,337.5 118.9,343.5 118.9,351 C118.9,356.8 115.9,361 109.9,363.1 L121.3,381.1 L110.2,381.1 L100.6,364.6 L94.6,364.6 L94.6,381.1 L85.1,381.1 L85.1,337.6 L101.7,337.6 L101.7,337.5 Z M94.6,345.2 L94.6,357.2 L102.1,357.2 C106.1,357.2 109.2,355.8 109.2,351 C109.2,347.1 106.7,345.2 102.4,345.2 L94.6,345.2 Z" id="XMLID_694_"></path>
30
- <polygon id="XMLID_692_" points="154.6 345.4 135 345.4 135 355.1 153.3 355.1 153.3 362.7 135 362.7 135 373.3 155.2 373.3 155.2 381.1 125.6 381.1 125.6 337.6 154.7 337.6 154.7 345.4"></polygon>
31
- <path d="M188.5,374.2 L172.1,374.2 L170.1,381 L160.4,381 L174.5,337.5 L186.4,337.5 L200.5,381 L190.4,381 L188.5,374.2 Z M174.2,366.6 L186.4,366.6 L180.3,344.8 L174.2,366.6 Z" id="XMLID_689_"></path>
32
- <polygon id="XMLID_687_" points="230.7 345.4 218.4 345.4 218.4 381 208.9 381 208.9 345.4 196.6 345.4 196.6 337.5 230.7 337.5"></polygon>
33
- <polygon id="XMLID_685_" points="244.9 381.1 235.4 381.1 235.4 337.6 244.9 337.6"></polygon>
34
- <polygon id="XMLID_683_" points="275.7 381.1 263.8 381.1 250.7 337.6 260.8 337.6 269.9 373.4 278.9 337.6 288.8 337.6"></polygon>
35
- <polygon id="XMLID_681_" points="303.9 381.1 294.4 381.1 294.4 337.6 303.9 337.6"></polygon>
36
- <polygon id="XMLID_679_" points="343.7 345.4 331.4 345.4 331.4 381 321.9 381 321.9 345.4 309.6 345.4 309.6 337.5 343.7 337.5"></polygon>
37
- <polygon id="XMLID_677_" points="371.5 363.8 371.5 381.1 362 381.1 362 363.9 347.1 337.5 357.9 337.5 366.9 356.1 376 337.5 386.4 337.5"></polygon>
38
- </g>
39
- </g>
40
- </svg>
41
- </template>