From e1937679239bbb5e3ee300ced57dcc1cbe160557 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 22 Mar 2023 23:11:31 +0100 Subject: [PATCH] byl and vue added --- byl/Makefile | 13 + byl/README.md | 0 byl/byl.css | 12 + byl/byl.js | 129 +++ byl/css/burger.css | 125 +++ byl/css/byl.min.css | 1696 +++++++++++++++++++++++++++++++++++ byl/css/color.css | 56 ++ byl/css/display.css | 32 + byl/css/flexboxgrid.css | 948 ++++++++++++++++++++ byl/css/fonts.css | 12 + byl/css/hero.css | 40 + byl/css/iconfont.css | 307 +++++++ byl/css/layout.css | 152 ++++ byl/css/tooltiped.css | 24 + byl/fonts/byl-iconfont.eot | Bin 0 -> 15972 bytes byl/fonts/byl-iconfont.svg | 103 +++ byl/fonts/byl-iconfont.ttf | Bin 0 -> 15788 bytes byl/fonts/byl-iconfont.woff | Bin 0 -> 15864 bytes js/vue.min.js | 6 + 19 files changed, 3655 insertions(+) create mode 100644 byl/Makefile create mode 100644 byl/README.md create mode 100644 byl/byl.css create mode 100644 byl/byl.js create mode 100644 byl/css/burger.css create mode 100644 byl/css/byl.min.css create mode 100644 byl/css/color.css create mode 100644 byl/css/display.css create mode 100644 byl/css/flexboxgrid.css create mode 100644 byl/css/fonts.css create mode 100644 byl/css/hero.css create mode 100644 byl/css/iconfont.css create mode 100644 byl/css/layout.css create mode 100644 byl/css/tooltiped.css create mode 100644 byl/fonts/byl-iconfont.eot create mode 100644 byl/fonts/byl-iconfont.svg create mode 100644 byl/fonts/byl-iconfont.ttf create mode 100644 byl/fonts/byl-iconfont.woff create mode 100644 js/vue.min.js diff --git a/byl/Makefile b/byl/Makefile new file mode 100644 index 0000000..8e31d54 --- /dev/null +++ b/byl/Makefile @@ -0,0 +1,13 @@ + +concat: + rm -f css/byl.min.css + cat css/layout.css > byl.min.css + cat css/flexboxgrid.css >> byl.min.css + cat css/display.css >> byl.min.css + cat css/fonts.css >> byl.min.css + cat css/color.css >> byl.min.css + cat css/burger.css >> byl.min.css + cat css/hero.css >> byl.min.css + cat css/iconfont.css >> byl.min.css + cat css/tooltiped.css >> byl.min.css + mv byl.min.css css/ diff --git a/byl/README.md b/byl/README.md new file mode 100644 index 0000000..e69de29 diff --git a/byl/byl.css b/byl/byl.css new file mode 100644 index 0000000..cab6f33 --- /dev/null +++ b/byl/byl.css @@ -0,0 +1,12 @@ +/*@import url("css/normalize.css");*/ + +@import url("https://file.brz9.dev/web/byl-color-book/bcb.css"); +@import url("css/layout.css"); +@import url("css/flexboxgrid.css"); +@import url("css/display.css"); +@import url("css/fonts.css"); +@import url("css/color.css"); +@import url("css/burger.css"); +@import url("css/hero.css"); +@import url("css/iconfont.css"); +@import url("css/tooltiped.css"); diff --git a/byl/byl.js b/byl/byl.js new file mode 100644 index 0000000..dd067cc --- /dev/null +++ b/byl/byl.js @@ -0,0 +1,129 @@ +const tooltiped = { + template: ` +
+ {{ text }} + +
+ `, + props: { + text: String + } +} + +const hero = { + template:` +
+ + +
+

{{ text }}

+
+
+ `, + props: { + link: String, + imgurl: String, + text: String + }, +} + +const mobilemenu = { + template: ` + + `, + data () { + return { + + } + }, + props: { + toggle: Boolean + }, + mounted () { + } +} + +const burger = { + template: ` +
+ + + + + + +
+ `, + data () { + return { + toggle: false + } + }, + props: { + mobileToggle: Boolean + }, + mounted: function () { + this.toggle = this.mobileToggle; + }, + methods: { + toggleBurger () { + this.toggle = !this.toggle; + this.mobileToggle = this.toggle; + this.$emit('toggled',this.toggle); + } + } + +} + +export default { +install (Vue) { +Vue.mixin({ + data () { + return { + mobileToggle: false, + } + }, + components: { hero, burger, mobilemenu, tooltiped }, + created() { + }, + computed: { + }, + methods: { + burgerToggle (value) { + this.mobileToggle = value; + }, + isActiveTab (name) { + let t = 0; + for (t in tabs) { + let i = 0; + let items = tabs[t].tabs + for (i in items){ + if (items[i].label == name) { + return items[i].selected + } + } + } + }, + setMainPadding () { + if (document.querySelector(".byl-main") != null && document.querySelector(".byl-footer") != null) { + document.querySelector(".byl-main").style.paddingBottom = getComputedStyle(document.querySelector(".byl-footer")).height + } + } + }, + mounted: function () { + this.setMainPadding() + window.addEventListener('resize', this.setMainPadding) + } + +}); } }; + diff --git a/byl/css/burger.css b/byl/css/burger.css new file mode 100644 index 0000000..6dcae5f --- /dev/null +++ b/byl/css/burger.css @@ -0,0 +1,125 @@ +#root{ + --burger-speed: 0.5s; + --burger-width: 30px; + --burger-offset: 10px; + --burger-thicc: 5px; +} + +.byl-burger-size-medium { + --burger-width: 40px; + --burger-offset: 13px; + --burger-thicc: 7px; +} + +.byl-burger-size-big { + --burger-width: 55px; + --burger-offset: 20px; + --burger-thicc: 10px; +} + +.byl-burger-box { + position: relative; + display: flex; + justify-content: center; + align-items: center; + width: var(--burger-width); + height: var(--burger-width); +} + +.byl-burger-btn { + width: var(--burger-width); + height: var(--burger-thicc); + border-radius: 0px; +} + +.byl-burger-btn::before, +.byl-burger-btn::after { + content: ''; + position: absolute; + z-index: 5; + width: var(--burger-width); + height: var(--burger-thicc); +} + +.byl-burger-btn::before { + transform: translateY(calc(0px - var(--burger-offset))); + +} + +.byl-burger-btn::after { + transform: translateY(var(--burger-offset)); +} + +.byl-burger-box.open .byl-burger-btn::before { + + transform: rotate(45deg); + transition: var(--burger-speed); +} + + +.byl-burger-box.open .byl-burger-btn::after { + bottom: unset; + transform: rotate(-45deg); + transition: var(--burger-speed); +} + +.byl-burger-box.open .byl-burger-btn { + background: transparent; +} + +.byl-ghost-burger-checkbox { + position: absolute; + top: 0px; + left: 0px; + height: var(--burger-width); + width: var(--burger-width); + z-index: 7; + opacity: 0; + cursor: pointer; +} + +.byl-mobile-menu { + position: absolute; + top: 0px; + right: 0px; + z-index: 2; + opacity: 0; + width: 100vw; + height: 0px; +} + +.byl-mobile-menu ul { + height: 0px; + list-style: none; + text-align: center; + transition: var(--burger-speed); +} + +.byl-mobile-menu li { + height: 0px; + transition: var(--burger-speed); +} + +.byl-mobile-menu.open { + height: 100vh; + opacity: 1; +} + +.byl-mobile-menu.open ul{ + margin-top: 50px; +} + +.byl-mobile-menu.open li{ + height: 6rem; + margin-bottom: 20px; +} + +.byl-burger-container { + position: absolute; + top: 5px; + right: 5px; +} + +.byl-mobile-menu ul { + display: block; +} diff --git a/byl/css/byl.min.css b/byl/css/byl.min.css new file mode 100644 index 0000000..f2763f2 --- /dev/null +++ b/byl/css/byl.min.css @@ -0,0 +1,1696 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +.byl-root { + position: relative; + width: 100%; + min-height: 100vh; + max-width: 100vw; + overflow-x: hidden; +} + +.byl-header { + width: 100%; + min-height: 20px; +} + +.byl-flex { + display: flex; +} + +.byl-bloc { + display: inline-block; +} + +.byl-header-menu li { + display: inline-block; + margin-top: 10px; + margin-bottom: 10px; +} + +.byl-header .byl-logo{ + padding-top: 5px; + padding-bottom: 5px; + height: 30px; + padding-left: 10px; +} + +.byl-header ul li { + list-style: none; + padding-right: 20px; +} + +.byl-footer { + position: absolute; + text-align: center; + width: 100%; + bottom: 0px; +} + +.byl-footer * { + padding-top: 10px; + padding-bottom: 10px; +} + +.byl-main { + display: flex; + height: auto; +} + +.byl-80vw { + min-width: 80vw; + width: 80vw; + margin-left: auto; + margin-right: auto; +} + +.byl-60vw { + min-width: 60vw; + width: 60vw; + margin-left: auto; + margin-right: auto; +} + +.byl-50vw { + min-width: 50vw; + width: 50vw; + margin-left: auto; + margin-right: auto; +} + +.byl-30vw { + min-width: 30vw; + width: 30vw; + margin-left: auto; + margin-right: auto; +} + +.byl-20vw { + min-width: 20vw; + width: 20vw; + margin-right: auto; + +} + +.byl-10vw { + min-width: 10vw; + width: 10vw; + margin-left: auto; + margin-right: auto; +} + +.byl-centered { + text-align: center; +} + +.byl-container { + width: inherit; + position: relative; +} + +.byl-left { + position: absolute; + left: 0px; + top: 0px; +} + +.byl-right { + position: absolute; + right: 0px; + top: 0px; +} + +.byl-mobile, +.byl-mobile * { + min-width: 0px; + width: 0px; + min-height: 0px; + height: 0px; + visibility: hidden; +} + +@media only screen and (max-width: 64em) { + .byl-desk, + .byl-desk * { + min-width: 0px; + width: 0px; + min-height: 0px; + height: 0px; + visibility: hidden; + } + .byl-mobile, + .byl-mobile * { + min-width: revert; + width: revert; + min-height: revert; + height: revert; + visibility: revert; + } +} +.container-fluid, +.container { + margin-right: auto; + margin-left: auto; +} + +.container-fluid { +} + +.row { + box-sizing: border-box; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} + +.row.reverse { + -webkit-box-orient: horizontal; + -webkit-box-direction: reverse; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; +} + +.col.reverse { + -webkit-box-orient: vertical; + -webkit-box-direction: reverse; + -ms-flex-direction: column-reverse; + flex-direction: column-reverse; +} + +.col-xs, +.col-xs-1, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9, +.col-xs-10, +.col-xs-11, +.col-xs-12, +.col-xs-offset-0, +.col-xs-offset-1, +.col-xs-offset-2, +.col-xs-offset-3, +.col-xs-offset-4, +.col-xs-offset-5, +.col-xs-offset-6, +.col-xs-offset-7, +.col-xs-offset-8, +.col-xs-offset-9, +.col-xs-offset-10, +.col-xs-offset-11, +.col-xs-offset-12 { + box-sizing: border-box; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; +} + +.col-xs { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-preferred-size: 0; + flex-basis: 0; + max-width: 100%; +} + +.col-xs-1 { + -ms-flex-preferred-size: 8.33333333%; + flex-basis: 8.33333333%; + max-width: 8.33333333%; +} + +.col-xs-2 { + -ms-flex-preferred-size: 16.66666667%; + flex-basis: 16.66666667%; + max-width: 16.66666667%; +} + +.col-xs-3 { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; + max-width: 25%; +} + +.col-xs-4 { + -ms-flex-preferred-size: 33.33333333%; + flex-basis: 33.33333333%; + max-width: 33.33333333%; +} + +.col-xs-5 { + -ms-flex-preferred-size: 41.66666667%; + flex-basis: 41.66666667%; + max-width: 41.66666667%; +} + +.col-xs-6 { + -ms-flex-preferred-size: 50%; + flex-basis: 50%; + max-width: 50%; +} + +.col-xs-7 { + -ms-flex-preferred-size: 58.33333333%; + flex-basis: 58.33333333%; + max-width: 58.33333333%; +} + +.col-xs-8 { + -ms-flex-preferred-size: 66.66666667%; + flex-basis: 66.66666667%; + max-width: 66.66666667%; +} + +.col-xs-9 { + -ms-flex-preferred-size: 75%; + flex-basis: 75%; + max-width: 75%; +} + +.col-xs-10 { + -ms-flex-preferred-size: 83.33333333%; + flex-basis: 83.33333333%; + max-width: 83.33333333%; +} + +.col-xs-11 { + -ms-flex-preferred-size: 91.66666667%; + flex-basis: 91.66666667%; + max-width: 91.66666667%; +} + +.col-xs-12 { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + max-width: 100%; +} + +.col-xs-offset-0 { + margin-left: 0; +} + +.col-xs-offset-1 { + margin-left: 8.33333333%; +} + +.col-xs-offset-2 { + margin-left: 16.66666667%; +} + +.col-xs-offset-3 { + margin-left: 25%; +} + +.col-xs-offset-4 { + margin-left: 33.33333333%; +} + +.col-xs-offset-5 { + margin-left: 41.66666667%; +} + +.col-xs-offset-6 { + margin-left: 50%; +} + +.col-xs-offset-7 { + margin-left: 58.33333333%; +} + +.col-xs-offset-8 { + margin-left: 66.66666667%; +} + +.col-xs-offset-9 { + margin-left: 75%; +} + +.col-xs-offset-10 { + margin-left: 83.33333333%; +} + +.col-xs-offset-11 { + margin-left: 91.66666667%; +} + +.start-xs { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: start; +} + +.center-xs { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; +} + +.end-xs { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: end; +} + +.top-xs { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; +} + +.middle-xs { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.bottom-xs { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; +} + +.around-xs { + -ms-flex-pack: distribute; + justify-content: space-around; +} + +.between-xs { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.first-xs { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; +} + +.last-xs { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; +} + +@media only screen and (min-width: 48em) { + .container { + width: 49rem; + } + + .col-sm, + .col-sm-1, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9, + .col-sm-10, + .col-sm-11, + .col-sm-12, + .col-sm-offset-0, + .col-sm-offset-1, + .col-sm-offset-2, + .col-sm-offset-3, + .col-sm-offset-4, + .col-sm-offset-5, + .col-sm-offset-6, + .col-sm-offset-7, + .col-sm-offset-8, + .col-sm-offset-9, + .col-sm-offset-10, + .col-sm-offset-11, + .col-sm-offset-12 { + box-sizing: border-box; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + } + + .col-sm { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-preferred-size: 0; + flex-basis: 0; + max-width: 100%; + } + + .col-sm-1 { + -ms-flex-preferred-size: 8.33333333%; + flex-basis: 8.33333333%; + max-width: 8.33333333%; + } + + .col-sm-2 { + -ms-flex-preferred-size: 16.66666667%; + flex-basis: 16.66666667%; + max-width: 16.66666667%; + } + + .col-sm-3 { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; + max-width: 25%; + } + + .col-sm-4 { + -ms-flex-preferred-size: 33.33333333%; + flex-basis: 33.33333333%; + max-width: 33.33333333%; + } + + .col-sm-5 { + -ms-flex-preferred-size: 41.66666667%; + flex-basis: 41.66666667%; + max-width: 41.66666667%; + } + + .col-sm-6 { + -ms-flex-preferred-size: 50%; + flex-basis: 50%; + max-width: 50%; + } + + .col-sm-7 { + -ms-flex-preferred-size: 58.33333333%; + flex-basis: 58.33333333%; + max-width: 58.33333333%; + } + + .col-sm-8 { + -ms-flex-preferred-size: 66.66666667%; + flex-basis: 66.66666667%; + max-width: 66.66666667%; + } + + .col-sm-9 { + -ms-flex-preferred-size: 75%; + flex-basis: 75%; + max-width: 75%; + } + + .col-sm-10 { + -ms-flex-preferred-size: 83.33333333%; + flex-basis: 83.33333333%; + max-width: 83.33333333%; + } + + .col-sm-11 { + -ms-flex-preferred-size: 91.66666667%; + flex-basis: 91.66666667%; + max-width: 91.66666667%; + } + + .col-sm-12 { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + max-width: 100%; + } + + .col-sm-offset-0 { + margin-left: 0; + } + + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + + .col-sm-offset-3 { + margin-left: 25%; + } + + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + + .col-sm-offset-6 { + margin-left: 50%; + } + + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + + .col-sm-offset-9 { + margin-left: 75%; + } + + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + + .start-sm { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: start; + } + + .center-sm { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; + } + + .end-sm { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: end; + } + + .top-sm { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + } + + .middle-sm { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + } + + .bottom-sm { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; + } + + .around-sm { + -ms-flex-pack: distribute; + justify-content: space-around; + } + + .between-sm { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + } + + .first-sm { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + + .last-sm { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } +} + +@media only screen and (min-width: 64em) { + .container { + width: 65rem; + } + + .col-md, + .col-md-1, + .col-md-2, + .col-md-3, + .col-md-4, + .col-md-5, + .col-md-6, + .col-md-7, + .col-md-8, + .col-md-9, + .col-md-10, + .col-md-11, + .col-md-12, + .col-md-offset-0, + .col-md-offset-1, + .col-md-offset-2, + .col-md-offset-3, + .col-md-offset-4, + .col-md-offset-5, + .col-md-offset-6, + .col-md-offset-7, + .col-md-offset-8, + .col-md-offset-9, + .col-md-offset-10, + .col-md-offset-11, + .col-md-offset-12 { + box-sizing: border-box; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + } + + .col-md { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-preferred-size: 0; + flex-basis: 0; + max-width: 100%; + } + + .col-md-1 { + -ms-flex-preferred-size: 8.33333333%; + flex-basis: 8.33333333%; + max-width: 8.33333333%; + } + + .col-md-2 { + -ms-flex-preferred-size: 16.66666667%; + flex-basis: 16.66666667%; + max-width: 16.66666667%; + } + + .col-md-3 { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; + max-width: 25%; + } + + .col-md-4 { + -ms-flex-preferred-size: 33.33333333%; + flex-basis: 33.33333333%; + max-width: 33.33333333%; + } + + .col-md-5 { + -ms-flex-preferred-size: 41.66666667%; + flex-basis: 41.66666667%; + max-width: 41.66666667%; + } + + .col-md-6 { + -ms-flex-preferred-size: 50%; + flex-basis: 50%; + max-width: 50%; + } + + .col-md-7 { + -ms-flex-preferred-size: 58.33333333%; + flex-basis: 58.33333333%; + max-width: 58.33333333%; + } + + .col-md-8 { + -ms-flex-preferred-size: 66.66666667%; + flex-basis: 66.66666667%; + max-width: 66.66666667%; + } + + .col-md-9 { + -ms-flex-preferred-size: 75%; + flex-basis: 75%; + max-width: 75%; + } + + .col-md-10 { + -ms-flex-preferred-size: 83.33333333%; + flex-basis: 83.33333333%; + max-width: 83.33333333%; + } + + .col-md-11 { + -ms-flex-preferred-size: 91.66666667%; + flex-basis: 91.66666667%; + max-width: 91.66666667%; + } + + .col-md-12 { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + max-width: 100%; + } + + .col-md-offset-0 { + margin-left: 0; + } + + .col-md-offset-1 { + margin-left: 8.33333333%; + } + + .col-md-offset-2 { + margin-left: 16.66666667%; + } + + .col-md-offset-3 { + margin-left: 25%; + } + + .col-md-offset-4 { + margin-left: 33.33333333%; + } + + .col-md-offset-5 { + margin-left: 41.66666667%; + } + + .col-md-offset-6 { + margin-left: 50%; + } + + .col-md-offset-7 { + margin-left: 58.33333333%; + } + + .col-md-offset-8 { + margin-left: 66.66666667%; + } + + .col-md-offset-9 { + margin-left: 75%; + } + + .col-md-offset-10 { + margin-left: 83.33333333%; + } + + .col-md-offset-11 { + margin-left: 91.66666667%; + } + + .start-md { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: start; + } + + .center-md { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; + } + + .end-md { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: end; + } + + .top-md { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + } + + .middle-md { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + } + + .bottom-md { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; + } + + .around-md { + -ms-flex-pack: distribute; + justify-content: space-around; + } + + .between-md { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + } + + .first-md { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + + .last-md { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } +} + +@media only screen and (min-width: 75em) { + .container { + width: 76rem; + } + + .col-lg, + .col-lg-1, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9, + .col-lg-10, + .col-lg-11, + .col-lg-12, + .col-lg-offset-0, + .col-lg-offset-1, + .col-lg-offset-2, + .col-lg-offset-3, + .col-lg-offset-4, + .col-lg-offset-5, + .col-lg-offset-6, + .col-lg-offset-7, + .col-lg-offset-8, + .col-lg-offset-9, + .col-lg-offset-10, + .col-lg-offset-11, + .col-lg-offset-12 { + box-sizing: border-box; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + } + + .col-lg { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-preferred-size: 0; + flex-basis: 0; + max-width: 100%; + } + + .col-lg-1 { + -ms-flex-preferred-size: 8.33333333%; + flex-basis: 8.33333333%; + max-width: 8.33333333%; + } + + .col-lg-2 { + -ms-flex-preferred-size: 16.66666667%; + flex-basis: 16.66666667%; + max-width: 16.66666667%; + } + + .col-lg-3 { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; + max-width: 25%; + } + + .col-lg-4 { + -ms-flex-preferred-size: 33.33333333%; + flex-basis: 33.33333333%; + max-width: 33.33333333%; + } + + .col-lg-5 { + -ms-flex-preferred-size: 41.66666667%; + flex-basis: 41.66666667%; + max-width: 41.66666667%; + } + + .col-lg-6 { + -ms-flex-preferred-size: 50%; + flex-basis: 50%; + max-width: 50%; + } + + .col-lg-7 { + -ms-flex-preferred-size: 58.33333333%; + flex-basis: 58.33333333%; + max-width: 58.33333333%; + } + + .col-lg-8 { + -ms-flex-preferred-size: 66.66666667%; + flex-basis: 66.66666667%; + max-width: 66.66666667%; + } + + .col-lg-9 { + -ms-flex-preferred-size: 75%; + flex-basis: 75%; + max-width: 75%; + } + + .col-lg-10 { + -ms-flex-preferred-size: 83.33333333%; + flex-basis: 83.33333333%; + max-width: 83.33333333%; + } + + .col-lg-11 { + -ms-flex-preferred-size: 91.66666667%; + flex-basis: 91.66666667%; + max-width: 91.66666667%; + } + + .col-lg-12 { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + max-width: 100%; + } + + .col-lg-offset-0 { + margin-left: 0; + } + + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + + .col-lg-offset-3 { + margin-left: 25%; + } + + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + + .col-lg-offset-6 { + margin-left: 50%; + } + + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + + .col-lg-offset-9 { + margin-left: 75%; + } + + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + + .start-lg { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: start; + } + + .center-lg { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; + } + + .end-lg { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: end; + } + + .top-lg { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + } + + .middle-lg { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + } + + .bottom-lg { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; + } + + .around-lg { + -ms-flex-pack: distribute; + justify-content: space-around; + } + + .between-lg { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + } + + .first-lg { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + + .last-lg { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } +} +.byl-inact { + opacity: 0.5; +} + +.byl-pages { + position: relative; +} + +blockquote { + border-left-width: 10px; + border-left-style: solid; + padding-left: 10px; +} + +.byl-hidden { + width: 0px; + height: 0px; + border: 0px; + margin: 0px; + padding: 0px; + border: 0px; +} + +img { + max-width: 100%; + height: auto; +} + +textarea { + box-sizing: border-box; + max-width: 100%; +} +.byl-justext p { + text-align: justify; +} + +.byl-justext p::before { + content: " "; + white-space: pre; +} + +.byl-txt-right { + text-align: right; +} +a { + color: inherit; + text-decoration: none; + outline: 0; +} + +blockquote { + border-left-color: var(--col-fg); + opacity: 0.8; +} + +.byl-marker-under { + background-color: var(--col-fg); +} + +.byl-mobile-menu{ + color: var(--b9c-bg); + background-color: var(--b9c-fg); +} + +.byl-header .byl-mobile-menu { + color: var(--b9c-hf-fg); + background-color: var(--b9c-hf-bg) +} + +.byl-burger-btn, +.byl-burger-btn::before, +.byl-burger-btn::after { + background-color: var(--b9c-fg); + } + +.byl-burger-box.open .byl-burger-btn::before, +.byl-burger-box.open .byl-burger-btn::after { + background-color: var(--b9c-bg); + } + +.byl-header .byl-burger-btn, +.byl-header .byl-burger-btn::before, +.byl-header .byl-burger-btn::after { + background-color: var(--b9c-hf-fg); + } + +.byl-header .byl-burger-box.open .byl-burger-btn::before, +.byl-header .byl-burger-box.open .byl-burger-btn::after { + background-color: var(--b9c-hf-fg); + } + +.byl-header,.byl-footer { + color: var(--b9c-hf-fg); + background-color: var(--b9c-hf-bg); +} + +.byl-header a,.byl-footer a{ + color: var(--b9c-hf-fg); + text-decoration: none; +} +#root{ + --burger-speed: 0.5s; + --burger-width: 30px; + --burger-offset: 10px; + --burger-thicc: 5px; +} + +.byl-burger-size-medium { + --burger-width: 40px; + --burger-offset: 13px; + --burger-thicc: 7px; +} + +.byl-burger-size-big { + --burger-width: 55px; + --burger-offset: 20px; + --burger-thicc: 10px; +} + +.byl-burger-box { + position: relative; + display: flex; + justify-content: center; + align-items: center; + width: var(--burger-width); + height: var(--burger-width); +} + +.byl-burger-btn { + width: var(--burger-width); + height: var(--burger-thicc); + border-radius: 0px; +} + +.byl-burger-btn::before, +.byl-burger-btn::after { + content: ''; + position: absolute; + z-index: 5; + width: var(--burger-width); + height: var(--burger-thicc); +} + +.byl-burger-btn::before { + transform: translateY(calc(0px - var(--burger-offset))); + +} + +.byl-burger-btn::after { + transform: translateY(var(--burger-offset)); +} + +.byl-burger-box.open .byl-burger-btn::before { + + transform: rotate(45deg); + transition: var(--burger-speed); +} + + +.byl-burger-box.open .byl-burger-btn::after { + bottom: unset; + transform: rotate(-45deg); + transition: var(--burger-speed); +} + +.byl-burger-box.open .byl-burger-btn { + background: transparent; +} + +.byl-ghost-burger-checkbox { + position: absolute; + top: 0px; + left: 0px; + height: var(--burger-width); + width: var(--burger-width); + z-index: 7; + opacity: 0; + cursor: pointer; +} + +.byl-mobile-menu { + position: absolute; + top: 0px; + right: 0px; + z-index: 2; + opacity: 0; + width: 100vw; + height: 0px; +} + +.byl-mobile-menu ul { + height: 0px; + list-style: none; + text-align: center; + transition: var(--burger-speed); +} + +.byl-mobile-menu li { + height: 0px; + transition: var(--burger-speed); +} + +.byl-mobile-menu.open { + height: 100vh; + opacity: 1; +} + +.byl-mobile-menu.open ul{ + margin-top: 50px; +} + +.byl-mobile-menu.open li{ + height: 6rem; + margin-bottom: 20px; +} + +.byl-burger-container { + position: absolute; + top: 5px; + right: 5px; +} + +.byl-mobile-menu ul { + display: block; +} +.byl-hero { + width: 100%; + position: relative; + cursor: pointer; +} + +.byl-hero img { + width: 100%; +} + +.byl-hero h4 { + position: absolute; + color: #dbdbdb; + bottom: 0px; + opacity: 1; +} + +.byl-hero:hover h4 { + color: #ffffff; +} + +.byl-hero-fader { + position: absolute; + top: 0; + height: 100%; + width: 100%; + background-image: + linear-gradient( + to bottom, rgba(0, 0, 0, 0) 0, + #0a0a0a 100% + ); +} + +.byl-hero:hover .byl-hero-fader { + background-image: + linear-gradient( + to bottom, rgba(0, 0, 0, 0.2) 0, + #000 100% + ); +} +@font-face { + font-family: 'byl-iconfont'; + src: url('../fonts/byl-iconfont.eot?kprama'); + src: url('../fonts/byl-iconfont.eot?kprama#iefix') format('embedded-opentype'), + url('../fonts/byl-iconfont.ttf?kprama') format('truetype'), + url('../fonts/byl-iconfont.woff?kprama') format('woff'), + url('../fonts/byl-iconfont.svg?kprama#byl-iconfont') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="byl-icon-"], [class*=" byl-icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'byl-iconfont' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.byl-icon-home:before { + content: "\e900"; +} +.byl-icon-newspaper:before { + content: "\e904"; +} +.byl-icon-pencil2:before { + content: "\e906"; +} +.byl-icon-image:before { + content: "\e90d"; +} +.byl-icon-headphones:before { + content: "\e910"; +} +.byl-icon-music:before { + content: "\e911"; +} +.byl-icon-play:before { + content: "\e912"; +} +.byl-icon-bullhorn:before { + content: "\e91a"; +} +.byl-icon-mic:before { + content: "\e91e"; +} +.byl-icon-book:before { + content: "\e91f"; +} +.byl-icon-file-empty:before { + content: "\e924"; +} +.byl-icon-files-empty:before { + content: "\e925"; +} +.byl-icon-folder-open:before { + content: "\e930"; +} +.byl-icon-folder-download:before { + content: "\e933"; +} +.byl-icon-folder-upload:before { + content: "\e934"; +} +.byl-icon-price-tag:before { + content: "\e935"; +} +.byl-icon-price-tags:before { + content: "\e936"; +} +.byl-icon-cart:before { + content: "\e93a"; +} +.byl-icon-credit-card:before { + content: "\e93f"; +} +.byl-icon-phone:before { + content: "\e942"; +} +.byl-icon-map2:before { + content: "\e94c"; +} +.byl-icon-clock:before { + content: "\e94e"; +} +.byl-icon-calendar:before { + content: "\e953"; +} +.byl-icon-display:before { + content: "\e956"; +} +.byl-icon-mobile:before { + content: "\e958"; +} +.byl-icon-tv:before { + content: "\e95b"; +} +.byl-icon-undo2:before { + content: "\e967"; +} +.byl-icon-redo2:before { + content: "\e968"; +} +.byl-icon-user-plus:before { + content: "\e973"; +} +.byl-icon-user-minus:before { + content: "\e974"; +} +.byl-icon-user-check:before { + content: "\e975"; +} +.byl-icon-zoom-in:before { + content: "\e987"; +} +.byl-icon-zoom-out:before { + content: "\e988"; +} +.byl-icon-enlarge2:before { + content: "\e98b"; +} +.byl-icon-shrink2:before { + content: "\e98c"; +} +.byl-icon-equalizer:before { + content: "\e992"; +} +.byl-icon-cog:before { + content: "\e994"; +} +.byl-icon-link:before { + content: "\e9cb"; +} +.byl-icon-attachment:before { + content: "\e9cd"; +} +.byl-icon-bookmark:before { + content: "\e9d2"; +} +.byl-icon-plus:before { + content: "\ea0a"; +} +.byl-icon-minus:before { + content: "\ea0b"; +} +.byl-icon-cross:before { + content: "\ea0f"; +} +.byl-icon-checkmark:before { + content: "\ea10"; +} +.byl-icon-enter:before { + content: "\ea13"; +} +.byl-icon-exit:before { + content: "\ea14"; +} +.byl-icon-play3:before { + content: "\ea1c"; +} +.byl-icon-pause2:before { + content: "\ea1d"; +} +.byl-icon-stop2:before { + content: "\ea1e"; +} +.byl-icon-backward2:before { + content: "\ea1f"; +} +.byl-icon-forward3:before { + content: "\ea20"; +} +.byl-icon-first:before { + content: "\ea21"; +} +.byl-icon-last:before { + content: "\ea22"; +} +.byl-icon-previous2:before { + content: "\ea23"; +} +.byl-icon-next2:before { + content: "\ea24"; +} +.byl-icon-volume-high:before { + content: "\ea26"; +} +.byl-icon-volume-medium:before { + content: "\ea27"; +} +.byl-icon-volume-low:before { + content: "\ea28"; +} +.byl-icon-volume-mute:before { + content: "\ea29"; +} +.byl-icon-volume-mute2:before { + content: "\ea2a"; +} +.byl-icon-volume-increase:before { + content: "\ea2b"; +} +.byl-icon-volume-decrease:before { + content: "\ea2c"; +} +.byl-icon-loop:before { + content: "\ea2d"; +} +.byl-icon-loop2:before { + content: "\ea2e"; +} +.byl-icon-arrow-up-left:before { + content: "\ea31"; +} +.byl-icon-arrow-up:before { + content: "\ea32"; +} +.byl-icon-arrow-up-right:before { + content: "\ea33"; +} +.byl-icon-arrow-right:before { + content: "\ea34"; +} +.byl-icon-arrow-down-right:before { + content: "\ea35"; +} +.byl-icon-arrow-down:before { + content: "\ea36"; +} +.byl-icon-arrow-down-left:before { + content: "\ea37"; +} +.byl-icon-arrow-left:before { + content: "\ea38"; +} +.byl-icon-circle-up:before { + content: "\ea41"; +} +.byl-icon-circle-right:before { + content: "\ea42"; +} +.byl-icon-circle-down:before { + content: "\ea43"; +} +.byl-icon-circle-left:before { + content: "\ea44"; +} +.byl-icon-sort-alpha-asc:before { + content: "\ea48"; +} +.byl-icon-sort-alpha-desc:before { + content: "\ea49"; +} +.byl-icon-sort-numeric-asc:before { + content: "\ea4a"; +} +.byl-icon-sort-numberic-desc:before { + content: "\ea4b"; +} +.byl-icon-checkbox-checked:before { + content: "\ea52"; +} +.byl-icon-checkbox-unchecked:before { + content: "\ea53"; +} +.byl-icon-radio-checked:before { + content: "\ea54"; +} +.byl-icon-radio-unchecked:before { + content: "\ea56"; +} +.byl-icon-mail:before { + content: "\ea83"; +} +.byl-icon-facebook:before { + content: "\ea91"; +} +.byl-icon-instagram:before { + content: "\ea92"; +} +.byl-icon-twitter:before { + content: "\ea96"; +} +.byl-icon-rss:before { + content: "\ea9b"; +} +.byl-icon-rss2:before { + content: "\ea9c"; +} +.byl-icon-youtube:before { + content: "\ea9d"; +} +.byl-icon-vimeo:before { + content: "\eaa0"; +} +.byl-icon-reddit:before { + content: "\eac6"; +} + +.byl-tooltiped { + position: relative; + display: inline-block; +} + +.byl-tooltiped .byl-tooltip-text { + visibility: hidden; + background-color: #2f2f2f; + color: #fefefe; + border-radius: 0px; + display: float; + padding: 5px; + border-radius: 2px; + + /* Position the tooltip */ + position: absolute; + z-index: 1; + bottom: 100%; + left: 80%; +} + +.byl-tooltiped:hover .byl-tooltip-text { + visibility: visible; +} diff --git a/byl/css/color.css b/byl/css/color.css new file mode 100644 index 0000000..b37f5b7 --- /dev/null +++ b/byl/css/color.css @@ -0,0 +1,56 @@ +a { + color: inherit; + text-decoration: none; + outline: 0; +} + +blockquote { + border-left-color: var(--col-fg); + opacity: 0.8; +} + +.byl-marker-under { + background-color: var(--col-fg); +} + +.byl-mobile-menu{ + color: var(--b9c-bg); + background-color: var(--b9c-fg); +} + +.byl-header .byl-mobile-menu { + color: var(--b9c-hf-fg); + background-color: var(--b9c-hf-bg) +} + +.byl-burger-btn, +.byl-burger-btn::before, +.byl-burger-btn::after { + background-color: var(--b9c-fg); + } + +.byl-burger-box.open .byl-burger-btn::before, +.byl-burger-box.open .byl-burger-btn::after { + background-color: var(--b9c-bg); + } + +.byl-header .byl-burger-btn, +.byl-header .byl-burger-btn::before, +.byl-header .byl-burger-btn::after { + background-color: var(--b9c-hf-fg); + } + +.byl-header .byl-burger-box.open .byl-burger-btn::before, +.byl-header .byl-burger-box.open .byl-burger-btn::after { + background-color: var(--b9c-hf-fg); + } + +.byl-header,.byl-footer { + color: var(--b9c-hf-fg); + background-color: var(--b9c-hf-bg); +} + +.byl-header a,.byl-footer a{ + color: var(--b9c-hf-fg); + text-decoration: none; +} diff --git a/byl/css/display.css b/byl/css/display.css new file mode 100644 index 0000000..203d41c --- /dev/null +++ b/byl/css/display.css @@ -0,0 +1,32 @@ +.byl-inact { + opacity: 0.5; +} + +.byl-pages { + position: relative; +} + +blockquote { + border-left-width: 10px; + border-left-style: solid; + padding-left: 10px; +} + +.byl-hidden { + width: 0px; + height: 0px; + border: 0px; + margin: 0px; + padding: 0px; + border: 0px; +} + +img { + max-width: 100%; + height: auto; +} + +textarea { + box-sizing: border-box; + max-width: 100%; +} diff --git a/byl/css/flexboxgrid.css b/byl/css/flexboxgrid.css new file mode 100644 index 0000000..255aee9 --- /dev/null +++ b/byl/css/flexboxgrid.css @@ -0,0 +1,948 @@ +.container-fluid, +.container { + margin-right: auto; + margin-left: auto; +} + +.container-fluid { +} + +.row { + box-sizing: border-box; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} + +.row.reverse { + -webkit-box-orient: horizontal; + -webkit-box-direction: reverse; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; +} + +.col.reverse { + -webkit-box-orient: vertical; + -webkit-box-direction: reverse; + -ms-flex-direction: column-reverse; + flex-direction: column-reverse; +} + +.col-xs, +.col-xs-1, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9, +.col-xs-10, +.col-xs-11, +.col-xs-12, +.col-xs-offset-0, +.col-xs-offset-1, +.col-xs-offset-2, +.col-xs-offset-3, +.col-xs-offset-4, +.col-xs-offset-5, +.col-xs-offset-6, +.col-xs-offset-7, +.col-xs-offset-8, +.col-xs-offset-9, +.col-xs-offset-10, +.col-xs-offset-11, +.col-xs-offset-12 { + box-sizing: border-box; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; +} + +.col-xs { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-preferred-size: 0; + flex-basis: 0; + max-width: 100%; +} + +.col-xs-1 { + -ms-flex-preferred-size: 8.33333333%; + flex-basis: 8.33333333%; + max-width: 8.33333333%; +} + +.col-xs-2 { + -ms-flex-preferred-size: 16.66666667%; + flex-basis: 16.66666667%; + max-width: 16.66666667%; +} + +.col-xs-3 { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; + max-width: 25%; +} + +.col-xs-4 { + -ms-flex-preferred-size: 33.33333333%; + flex-basis: 33.33333333%; + max-width: 33.33333333%; +} + +.col-xs-5 { + -ms-flex-preferred-size: 41.66666667%; + flex-basis: 41.66666667%; + max-width: 41.66666667%; +} + +.col-xs-6 { + -ms-flex-preferred-size: 50%; + flex-basis: 50%; + max-width: 50%; +} + +.col-xs-7 { + -ms-flex-preferred-size: 58.33333333%; + flex-basis: 58.33333333%; + max-width: 58.33333333%; +} + +.col-xs-8 { + -ms-flex-preferred-size: 66.66666667%; + flex-basis: 66.66666667%; + max-width: 66.66666667%; +} + +.col-xs-9 { + -ms-flex-preferred-size: 75%; + flex-basis: 75%; + max-width: 75%; +} + +.col-xs-10 { + -ms-flex-preferred-size: 83.33333333%; + flex-basis: 83.33333333%; + max-width: 83.33333333%; +} + +.col-xs-11 { + -ms-flex-preferred-size: 91.66666667%; + flex-basis: 91.66666667%; + max-width: 91.66666667%; +} + +.col-xs-12 { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + max-width: 100%; +} + +.col-xs-offset-0 { + margin-left: 0; +} + +.col-xs-offset-1 { + margin-left: 8.33333333%; +} + +.col-xs-offset-2 { + margin-left: 16.66666667%; +} + +.col-xs-offset-3 { + margin-left: 25%; +} + +.col-xs-offset-4 { + margin-left: 33.33333333%; +} + +.col-xs-offset-5 { + margin-left: 41.66666667%; +} + +.col-xs-offset-6 { + margin-left: 50%; +} + +.col-xs-offset-7 { + margin-left: 58.33333333%; +} + +.col-xs-offset-8 { + margin-left: 66.66666667%; +} + +.col-xs-offset-9 { + margin-left: 75%; +} + +.col-xs-offset-10 { + margin-left: 83.33333333%; +} + +.col-xs-offset-11 { + margin-left: 91.66666667%; +} + +.start-xs { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: start; +} + +.center-xs { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; +} + +.end-xs { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: end; +} + +.top-xs { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; +} + +.middle-xs { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.bottom-xs { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; +} + +.around-xs { + -ms-flex-pack: distribute; + justify-content: space-around; +} + +.between-xs { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.first-xs { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; +} + +.last-xs { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; +} + +@media only screen and (min-width: 48em) { + .container { + width: 49rem; + } + + .col-sm, + .col-sm-1, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9, + .col-sm-10, + .col-sm-11, + .col-sm-12, + .col-sm-offset-0, + .col-sm-offset-1, + .col-sm-offset-2, + .col-sm-offset-3, + .col-sm-offset-4, + .col-sm-offset-5, + .col-sm-offset-6, + .col-sm-offset-7, + .col-sm-offset-8, + .col-sm-offset-9, + .col-sm-offset-10, + .col-sm-offset-11, + .col-sm-offset-12 { + box-sizing: border-box; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + } + + .col-sm { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-preferred-size: 0; + flex-basis: 0; + max-width: 100%; + } + + .col-sm-1 { + -ms-flex-preferred-size: 8.33333333%; + flex-basis: 8.33333333%; + max-width: 8.33333333%; + } + + .col-sm-2 { + -ms-flex-preferred-size: 16.66666667%; + flex-basis: 16.66666667%; + max-width: 16.66666667%; + } + + .col-sm-3 { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; + max-width: 25%; + } + + .col-sm-4 { + -ms-flex-preferred-size: 33.33333333%; + flex-basis: 33.33333333%; + max-width: 33.33333333%; + } + + .col-sm-5 { + -ms-flex-preferred-size: 41.66666667%; + flex-basis: 41.66666667%; + max-width: 41.66666667%; + } + + .col-sm-6 { + -ms-flex-preferred-size: 50%; + flex-basis: 50%; + max-width: 50%; + } + + .col-sm-7 { + -ms-flex-preferred-size: 58.33333333%; + flex-basis: 58.33333333%; + max-width: 58.33333333%; + } + + .col-sm-8 { + -ms-flex-preferred-size: 66.66666667%; + flex-basis: 66.66666667%; + max-width: 66.66666667%; + } + + .col-sm-9 { + -ms-flex-preferred-size: 75%; + flex-basis: 75%; + max-width: 75%; + } + + .col-sm-10 { + -ms-flex-preferred-size: 83.33333333%; + flex-basis: 83.33333333%; + max-width: 83.33333333%; + } + + .col-sm-11 { + -ms-flex-preferred-size: 91.66666667%; + flex-basis: 91.66666667%; + max-width: 91.66666667%; + } + + .col-sm-12 { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + max-width: 100%; + } + + .col-sm-offset-0 { + margin-left: 0; + } + + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + + .col-sm-offset-3 { + margin-left: 25%; + } + + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + + .col-sm-offset-6 { + margin-left: 50%; + } + + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + + .col-sm-offset-9 { + margin-left: 75%; + } + + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + + .start-sm { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: start; + } + + .center-sm { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; + } + + .end-sm { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: end; + } + + .top-sm { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + } + + .middle-sm { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + } + + .bottom-sm { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; + } + + .around-sm { + -ms-flex-pack: distribute; + justify-content: space-around; + } + + .between-sm { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + } + + .first-sm { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + + .last-sm { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } +} + +@media only screen and (min-width: 64em) { + .container { + width: 65rem; + } + + .col-md, + .col-md-1, + .col-md-2, + .col-md-3, + .col-md-4, + .col-md-5, + .col-md-6, + .col-md-7, + .col-md-8, + .col-md-9, + .col-md-10, + .col-md-11, + .col-md-12, + .col-md-offset-0, + .col-md-offset-1, + .col-md-offset-2, + .col-md-offset-3, + .col-md-offset-4, + .col-md-offset-5, + .col-md-offset-6, + .col-md-offset-7, + .col-md-offset-8, + .col-md-offset-9, + .col-md-offset-10, + .col-md-offset-11, + .col-md-offset-12 { + box-sizing: border-box; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + } + + .col-md { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-preferred-size: 0; + flex-basis: 0; + max-width: 100%; + } + + .col-md-1 { + -ms-flex-preferred-size: 8.33333333%; + flex-basis: 8.33333333%; + max-width: 8.33333333%; + } + + .col-md-2 { + -ms-flex-preferred-size: 16.66666667%; + flex-basis: 16.66666667%; + max-width: 16.66666667%; + } + + .col-md-3 { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; + max-width: 25%; + } + + .col-md-4 { + -ms-flex-preferred-size: 33.33333333%; + flex-basis: 33.33333333%; + max-width: 33.33333333%; + } + + .col-md-5 { + -ms-flex-preferred-size: 41.66666667%; + flex-basis: 41.66666667%; + max-width: 41.66666667%; + } + + .col-md-6 { + -ms-flex-preferred-size: 50%; + flex-basis: 50%; + max-width: 50%; + } + + .col-md-7 { + -ms-flex-preferred-size: 58.33333333%; + flex-basis: 58.33333333%; + max-width: 58.33333333%; + } + + .col-md-8 { + -ms-flex-preferred-size: 66.66666667%; + flex-basis: 66.66666667%; + max-width: 66.66666667%; + } + + .col-md-9 { + -ms-flex-preferred-size: 75%; + flex-basis: 75%; + max-width: 75%; + } + + .col-md-10 { + -ms-flex-preferred-size: 83.33333333%; + flex-basis: 83.33333333%; + max-width: 83.33333333%; + } + + .col-md-11 { + -ms-flex-preferred-size: 91.66666667%; + flex-basis: 91.66666667%; + max-width: 91.66666667%; + } + + .col-md-12 { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + max-width: 100%; + } + + .col-md-offset-0 { + margin-left: 0; + } + + .col-md-offset-1 { + margin-left: 8.33333333%; + } + + .col-md-offset-2 { + margin-left: 16.66666667%; + } + + .col-md-offset-3 { + margin-left: 25%; + } + + .col-md-offset-4 { + margin-left: 33.33333333%; + } + + .col-md-offset-5 { + margin-left: 41.66666667%; + } + + .col-md-offset-6 { + margin-left: 50%; + } + + .col-md-offset-7 { + margin-left: 58.33333333%; + } + + .col-md-offset-8 { + margin-left: 66.66666667%; + } + + .col-md-offset-9 { + margin-left: 75%; + } + + .col-md-offset-10 { + margin-left: 83.33333333%; + } + + .col-md-offset-11 { + margin-left: 91.66666667%; + } + + .start-md { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: start; + } + + .center-md { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; + } + + .end-md { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: end; + } + + .top-md { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + } + + .middle-md { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + } + + .bottom-md { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; + } + + .around-md { + -ms-flex-pack: distribute; + justify-content: space-around; + } + + .between-md { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + } + + .first-md { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + + .last-md { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } +} + +@media only screen and (min-width: 75em) { + .container { + width: 76rem; + } + + .col-lg, + .col-lg-1, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9, + .col-lg-10, + .col-lg-11, + .col-lg-12, + .col-lg-offset-0, + .col-lg-offset-1, + .col-lg-offset-2, + .col-lg-offset-3, + .col-lg-offset-4, + .col-lg-offset-5, + .col-lg-offset-6, + .col-lg-offset-7, + .col-lg-offset-8, + .col-lg-offset-9, + .col-lg-offset-10, + .col-lg-offset-11, + .col-lg-offset-12 { + box-sizing: border-box; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + } + + .col-lg { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-preferred-size: 0; + flex-basis: 0; + max-width: 100%; + } + + .col-lg-1 { + -ms-flex-preferred-size: 8.33333333%; + flex-basis: 8.33333333%; + max-width: 8.33333333%; + } + + .col-lg-2 { + -ms-flex-preferred-size: 16.66666667%; + flex-basis: 16.66666667%; + max-width: 16.66666667%; + } + + .col-lg-3 { + -ms-flex-preferred-size: 25%; + flex-basis: 25%; + max-width: 25%; + } + + .col-lg-4 { + -ms-flex-preferred-size: 33.33333333%; + flex-basis: 33.33333333%; + max-width: 33.33333333%; + } + + .col-lg-5 { + -ms-flex-preferred-size: 41.66666667%; + flex-basis: 41.66666667%; + max-width: 41.66666667%; + } + + .col-lg-6 { + -ms-flex-preferred-size: 50%; + flex-basis: 50%; + max-width: 50%; + } + + .col-lg-7 { + -ms-flex-preferred-size: 58.33333333%; + flex-basis: 58.33333333%; + max-width: 58.33333333%; + } + + .col-lg-8 { + -ms-flex-preferred-size: 66.66666667%; + flex-basis: 66.66666667%; + max-width: 66.66666667%; + } + + .col-lg-9 { + -ms-flex-preferred-size: 75%; + flex-basis: 75%; + max-width: 75%; + } + + .col-lg-10 { + -ms-flex-preferred-size: 83.33333333%; + flex-basis: 83.33333333%; + max-width: 83.33333333%; + } + + .col-lg-11 { + -ms-flex-preferred-size: 91.66666667%; + flex-basis: 91.66666667%; + max-width: 91.66666667%; + } + + .col-lg-12 { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + max-width: 100%; + } + + .col-lg-offset-0 { + margin-left: 0; + } + + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + + .col-lg-offset-3 { + margin-left: 25%; + } + + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + + .col-lg-offset-6 { + margin-left: 50%; + } + + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + + .col-lg-offset-9 { + margin-left: 75%; + } + + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + + .start-lg { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: start; + } + + .center-lg { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; + } + + .end-lg { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: end; + } + + .top-lg { + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + } + + .middle-lg { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + } + + .bottom-lg { + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; + } + + .around-lg { + -ms-flex-pack: distribute; + justify-content: space-around; + } + + .between-lg { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + } + + .first-lg { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + + .last-lg { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } +} diff --git a/byl/css/fonts.css b/byl/css/fonts.css new file mode 100644 index 0000000..dea23f6 --- /dev/null +++ b/byl/css/fonts.css @@ -0,0 +1,12 @@ +.byl-justext p { + text-align: justify; +} + +.byl-justext p::before { + content: " "; + white-space: pre; +} + +.byl-txt-right { + text-align: right; +} diff --git a/byl/css/hero.css b/byl/css/hero.css new file mode 100644 index 0000000..41e0140 --- /dev/null +++ b/byl/css/hero.css @@ -0,0 +1,40 @@ +.byl-hero { + width: 100%; + position: relative; + cursor: pointer; +} + +.byl-hero img { + width: 100%; +} + +.byl-hero h4 { + position: absolute; + color: #dbdbdb; + bottom: 0px; + opacity: 1; +} + +.byl-hero:hover h4 { + color: #ffffff; +} + +.byl-hero-fader { + position: absolute; + top: 0; + height: 100%; + width: 100%; + background-image: + linear-gradient( + to bottom, rgba(0, 0, 0, 0) 0, + #0a0a0a 100% + ); +} + +.byl-hero:hover .byl-hero-fader { + background-image: + linear-gradient( + to bottom, rgba(0, 0, 0, 0.2) 0, + #000 100% + ); +} diff --git a/byl/css/iconfont.css b/byl/css/iconfont.css new file mode 100644 index 0000000..cb8e2d7 --- /dev/null +++ b/byl/css/iconfont.css @@ -0,0 +1,307 @@ +@font-face { + font-family: 'byl-iconfont'; + src: url('../fonts/byl-iconfont.eot?kprama'); + src: url('../fonts/byl-iconfont.eot?kprama#iefix') format('embedded-opentype'), + url('../fonts/byl-iconfont.ttf?kprama') format('truetype'), + url('../fonts/byl-iconfont.woff?kprama') format('woff'), + url('../fonts/byl-iconfont.svg?kprama#byl-iconfont') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="byl-icon-"], [class*=" byl-icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'byl-iconfont' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.byl-icon-home:before { + content: "\e900"; +} +.byl-icon-newspaper:before { + content: "\e904"; +} +.byl-icon-pencil2:before { + content: "\e906"; +} +.byl-icon-image:before { + content: "\e90d"; +} +.byl-icon-headphones:before { + content: "\e910"; +} +.byl-icon-music:before { + content: "\e911"; +} +.byl-icon-play:before { + content: "\e912"; +} +.byl-icon-bullhorn:before { + content: "\e91a"; +} +.byl-icon-mic:before { + content: "\e91e"; +} +.byl-icon-book:before { + content: "\e91f"; +} +.byl-icon-file-empty:before { + content: "\e924"; +} +.byl-icon-files-empty:before { + content: "\e925"; +} +.byl-icon-folder-open:before { + content: "\e930"; +} +.byl-icon-folder-download:before { + content: "\e933"; +} +.byl-icon-folder-upload:before { + content: "\e934"; +} +.byl-icon-price-tag:before { + content: "\e935"; +} +.byl-icon-price-tags:before { + content: "\e936"; +} +.byl-icon-cart:before { + content: "\e93a"; +} +.byl-icon-credit-card:before { + content: "\e93f"; +} +.byl-icon-phone:before { + content: "\e942"; +} +.byl-icon-map2:before { + content: "\e94c"; +} +.byl-icon-clock:before { + content: "\e94e"; +} +.byl-icon-calendar:before { + content: "\e953"; +} +.byl-icon-display:before { + content: "\e956"; +} +.byl-icon-mobile:before { + content: "\e958"; +} +.byl-icon-tv:before { + content: "\e95b"; +} +.byl-icon-undo2:before { + content: "\e967"; +} +.byl-icon-redo2:before { + content: "\e968"; +} +.byl-icon-user-plus:before { + content: "\e973"; +} +.byl-icon-user-minus:before { + content: "\e974"; +} +.byl-icon-user-check:before { + content: "\e975"; +} +.byl-icon-zoom-in:before { + content: "\e987"; +} +.byl-icon-zoom-out:before { + content: "\e988"; +} +.byl-icon-enlarge2:before { + content: "\e98b"; +} +.byl-icon-shrink2:before { + content: "\e98c"; +} +.byl-icon-equalizer:before { + content: "\e992"; +} +.byl-icon-cog:before { + content: "\e994"; +} +.byl-icon-link:before { + content: "\e9cb"; +} +.byl-icon-attachment:before { + content: "\e9cd"; +} +.byl-icon-bookmark:before { + content: "\e9d2"; +} +.byl-icon-plus:before { + content: "\ea0a"; +} +.byl-icon-minus:before { + content: "\ea0b"; +} +.byl-icon-cross:before { + content: "\ea0f"; +} +.byl-icon-checkmark:before { + content: "\ea10"; +} +.byl-icon-enter:before { + content: "\ea13"; +} +.byl-icon-exit:before { + content: "\ea14"; +} +.byl-icon-play3:before { + content: "\ea1c"; +} +.byl-icon-pause2:before { + content: "\ea1d"; +} +.byl-icon-stop2:before { + content: "\ea1e"; +} +.byl-icon-backward2:before { + content: "\ea1f"; +} +.byl-icon-forward3:before { + content: "\ea20"; +} +.byl-icon-first:before { + content: "\ea21"; +} +.byl-icon-last:before { + content: "\ea22"; +} +.byl-icon-previous2:before { + content: "\ea23"; +} +.byl-icon-next2:before { + content: "\ea24"; +} +.byl-icon-volume-high:before { + content: "\ea26"; +} +.byl-icon-volume-medium:before { + content: "\ea27"; +} +.byl-icon-volume-low:before { + content: "\ea28"; +} +.byl-icon-volume-mute:before { + content: "\ea29"; +} +.byl-icon-volume-mute2:before { + content: "\ea2a"; +} +.byl-icon-volume-increase:before { + content: "\ea2b"; +} +.byl-icon-volume-decrease:before { + content: "\ea2c"; +} +.byl-icon-loop:before { + content: "\ea2d"; +} +.byl-icon-loop2:before { + content: "\ea2e"; +} +.byl-icon-arrow-up-left:before { + content: "\ea31"; +} +.byl-icon-arrow-up:before { + content: "\ea32"; +} +.byl-icon-arrow-up-right:before { + content: "\ea33"; +} +.byl-icon-arrow-right:before { + content: "\ea34"; +} +.byl-icon-arrow-down-right:before { + content: "\ea35"; +} +.byl-icon-arrow-down:before { + content: "\ea36"; +} +.byl-icon-arrow-down-left:before { + content: "\ea37"; +} +.byl-icon-arrow-left:before { + content: "\ea38"; +} +.byl-icon-circle-up:before { + content: "\ea41"; +} +.byl-icon-circle-right:before { + content: "\ea42"; +} +.byl-icon-circle-down:before { + content: "\ea43"; +} +.byl-icon-circle-left:before { + content: "\ea44"; +} +.byl-icon-sort-alpha-asc:before { + content: "\ea48"; +} +.byl-icon-sort-alpha-desc:before { + content: "\ea49"; +} +.byl-icon-sort-numeric-asc:before { + content: "\ea4a"; +} +.byl-icon-sort-numberic-desc:before { + content: "\ea4b"; +} +.byl-icon-checkbox-checked:before { + content: "\ea52"; +} +.byl-icon-checkbox-unchecked:before { + content: "\ea53"; +} +.byl-icon-radio-checked:before { + content: "\ea54"; +} +.byl-icon-radio-unchecked:before { + content: "\ea56"; +} +.byl-icon-mail:before { + content: "\ea83"; +} +.byl-icon-facebook:before { + content: "\ea91"; +} +.byl-icon-instagram:before { + content: "\ea92"; +} +.byl-icon-twitter:before { + content: "\ea96"; +} +.byl-icon-rss:before { + content: "\ea9b"; +} +.byl-icon-rss2:before { + content: "\ea9c"; +} +.byl-icon-youtube:before { + content: "\ea9d"; +} +.byl-icon-vimeo:before { + content: "\eaa0"; +} +.byl-icon-reddit:before { + content: "\eac6"; +} + diff --git a/byl/css/layout.css b/byl/css/layout.css new file mode 100644 index 0000000..9a3e6db --- /dev/null +++ b/byl/css/layout.css @@ -0,0 +1,152 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +.byl-root { + position: relative; + width: 100%; + min-height: 100vh; + max-width: 100vw; + overflow-x: hidden; +} + +.byl-header { + width: 100%; + min-height: 20px; +} + +.byl-flex { + display: flex; +} + +.byl-bloc { + display: inline-block; +} + +.byl-header-menu li { + display: inline-block; + margin-top: 10px; + margin-bottom: 10px; +} + +.byl-header .byl-logo{ + padding-top: 5px; + padding-bottom: 5px; + height: 30px; + padding-left: 10px; +} + +.byl-header ul li { + list-style: none; + padding-right: 20px; +} + +.byl-footer { + position: absolute; + text-align: center; + width: 100%; + bottom: 0px; +} + +.byl-footer * { + padding-top: 10px; + padding-bottom: 10px; +} + +.byl-main { + display: flex; + height: auto; +} + +.byl-80vw { + min-width: 80vw; + width: 80vw; + margin-left: auto; + margin-right: auto; +} + +.byl-60vw { + min-width: 60vw; + width: 60vw; + margin-left: auto; + margin-right: auto; +} + +.byl-50vw { + min-width: 50vw; + width: 50vw; + margin-left: auto; + margin-right: auto; +} + +.byl-30vw { + min-width: 30vw; + width: 30vw; + margin-left: auto; + margin-right: auto; +} + +.byl-20vw { + min-width: 20vw; + width: 20vw; + margin-right: auto; + +} + +.byl-10vw { + min-width: 10vw; + width: 10vw; + margin-left: auto; + margin-right: auto; +} + +.byl-centered { + text-align: center; +} + +.byl-container { + width: inherit; + position: relative; +} + +.byl-left { + position: absolute; + left: 0px; + top: 0px; +} + +.byl-right { + position: absolute; + right: 0px; + top: 0px; +} + +.byl-mobile, +.byl-mobile * { + min-width: 0px; + width: 0px; + min-height: 0px; + height: 0px; + visibility: hidden; +} + +@media only screen and (max-width: 64em) { + .byl-desk, + .byl-desk * { + min-width: 0px; + width: 0px; + min-height: 0px; + height: 0px; + visibility: hidden; + } + .byl-mobile, + .byl-mobile * { + min-width: revert; + width: revert; + min-height: revert; + height: revert; + visibility: revert; + } +} diff --git a/byl/css/tooltiped.css b/byl/css/tooltiped.css new file mode 100644 index 0000000..6a6d27d --- /dev/null +++ b/byl/css/tooltiped.css @@ -0,0 +1,24 @@ +.byl-tooltiped { + position: relative; + display: inline-block; +} + +.byl-tooltiped .byl-tooltip-text { + visibility: hidden; + background-color: #2f2f2f; + color: #fefefe; + border-radius: 0px; + display: float; + padding: 5px; + border-radius: 2px; + + /* Position the tooltip */ + position: absolute; + z-index: 1; + bottom: 100%; + left: 80%; +} + +.byl-tooltiped:hover .byl-tooltip-text { + visibility: visible; +} diff --git a/byl/fonts/byl-iconfont.eot b/byl/fonts/byl-iconfont.eot new file mode 100644 index 0000000000000000000000000000000000000000..23af92a367b7702950f84d89c8591bd06260dec0 GIT binary patch literal 15972 zcmcJ03v?UTdFH({00saFfP>e7APM6A-~$8+0w6^_M%2TyDN&RZ%d#9Pkgca5k}S#c zYvY~cZk@z=RDP`Oy6q`8&E}+a;8>D&J3ubB+82IUSMYK-231E{{Maa|9}5`=kR($zPgSON;tAIP;!B?lX$q{ml+=Ki>cnfX^{RJAyZ$$d;H{~yN>v7e^Z7lm zK6UmS=tNleIhId&UZWR?9rgb@_c~I3&3Mv(BxUMiaF#$p_R1g=vhZDAT~dk6<3eV; zLl|6~-Spa6jlIY-p1cm#OKhkaZG>`mz)}*QC-b&>$Gm6WKOdd%pU=#f=Bx8-<~Phw z&u^cfo!>LRcYfdeE%V3c@0tJf{O9H$pMP@x&*%T={9i6~EOadd7t#yGg^7jD3o{EJ zTiCnsD+`Y=Jhkv!3yp>EF141H7%7$-x==%GK8+g6SE%9G{Mq?W&41QXgL}cZ5LoD4 z$S#a7Y+Ts3uv@R;G1TxI%QeuYpGY=|N+kU6;a`ORPx#&NLbw@zEBt2oN8ulaUl0Fz z_)o*%3BMYCCH#%>*TTOUem4AH!%v0}h7W{q4kyF?;l6M<90~`*9bspf3)9dKL*EO1 zC-m*mw?faN<*Y5MGxL$(D4}R4pQR>D#M-1@@x|J&o`zgPY=r-B=umdXppk(`#?11O0Fg)!=_e@+uu4JgN3$VOmUAdxJos9yy$0n}QfIm#DlE>NQ>%4cYW3RF?3Dr@p@OH*UF0X?t+3sp2_ zmddi8rTx~}ltjf@me^8M9Yz60qm2~EfdqupIPg!Y~C}jb^h^UcW07`TPXCB&@vKS36cuaZIk2BiB?T`P9HC%X^3qUHicu*niAXBa%6M%( zt${v0F%)zlEhkp>#L9R!w;qiamt{{NK>r7B9=Vy%fA-*k+iyQ`@U!`Rm(SPb^Ny!d zg~(9QW=q8H-oAbB-tF7(jwfuk;83KHN{xE~;_Cv{a==3shC{<0Ep4DM&=vO;x+nVw zve~IX&_Q3eb$NmVAp?@MspvM#|GH`}3#m$DetSxqH% z#+SJRyY|(ycvbd`>k5Tpu~1ki`i=O=o|s0in9QrKc%rXwsMF)=9O~;!81ZPBo<5`b zuav=^hNuRuvOYH^2($vtT6;!tm>pzvO;~@F$MjyPwL3#EkfWl9@;|IjOrBr6Zo`Ik zYtK(kR67J`2anL<6gpPVX+6g#2_JVl98L~_JqrT^HxCy_MvB8X4-6Dm&uKL=4KV5m zfz}}$_)y3InT3MBi#!HyjB%F3L`ao%R&Zm(&ERCTTpAxWxT)|-opUzwbjH?G%ninG z3_Bpjkr5fkx0*;Wa^=t_MLDzosJXx zZh9z{+|v_@q&nQcEqHA%ztfN4^t)_c!FU$~0a1T%J!yBOr?X|TRujwF>9oUsPT9?e zJI{Bz1bUvgbG*O{2zYRIp0`t5``t$ETwrE;(`|jdG!ogEN`{lWiX*#{p;U4@5}|#4 zw@puP*Z!=-))5aC@135$w-`*g?HwI%y8 zl1=KQ)2Phj6pPXBqTktR<81hMI{n4Ξ=}P(8+)x}@?1a?nHAtT4nv$`DRyX6qDL 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 + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/byl/fonts/byl-iconfont.ttf b/byl/fonts/byl-iconfont.ttf new file mode 100644 index 0000000000000000000000000000000000000000..4825d5ecccb09f01d06e4112a433de2a6934b597 GIT binary patch literal 15788 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 E2XxW*XaE2J literal 0 HcmV?d00001 diff --git a/byl/fonts/byl-iconfont.woff b/byl/fonts/byl-iconfont.woff new file mode 100644 index 0000000000000000000000000000000000000000..8c1e66f445d1cc3e107d76a3a60accfb41f9ad78 GIT binary patch literal 15864 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 literal 0 HcmV?d00001 diff --git a/js/vue.min.js b/js/vue.min.js new file mode 100644 index 0000000..05e2110 --- /dev/null +++ b/js/vue.min.js @@ -0,0 +1,6 @@ +/*! + * Vue.js v2.6.11 + * (c) 2014-2019 Evan You + * Released under the MIT License. + */ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).Vue=t()}(this,function(){"use strict";var e=Object.freeze({});function t(e){return null==e}function n(e){return null!=e}function r(e){return!0===e}function i(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function o(e){return null!==e&&"object"==typeof e}var a=Object.prototype.toString;function s(e){return"[object Object]"===a.call(e)}function c(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function u(e){return n(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function l(e){return null==e?"":Array.isArray(e)||s(e)&&e.toString===a?JSON.stringify(e,null,2):String(e)}function f(e){var t=parseFloat(e);return isNaN(t)?e:t}function p(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i-1)return e.splice(n,1)}}var m=Object.prototype.hasOwnProperty;function y(e,t){return m.call(e,t)}function g(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}var _=/-(\w)/g,b=g(function(e){return e.replace(_,function(e,t){return t?t.toUpperCase():""})}),$=g(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),w=/\B([A-Z])/g,C=g(function(e){return e.replace(w,"-$1").toLowerCase()});var x=Function.prototype.bind?function(e,t){return e.bind(t)}:function(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n};function k(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function A(e,t){for(var n in t)e[n]=t[n];return e}function O(e){for(var t={},n=0;n0,Z=J&&J.indexOf("edge/")>0,G=(J&&J.indexOf("android"),J&&/iphone|ipad|ipod|ios/.test(J)||"ios"===K),X=(J&&/chrome\/\d+/.test(J),J&&/phantomjs/.test(J),J&&J.match(/firefox\/(\d+)/)),Y={}.watch,Q=!1;if(z)try{var ee={};Object.defineProperty(ee,"passive",{get:function(){Q=!0}}),window.addEventListener("test-passive",null,ee)}catch(e){}var te=function(){return void 0===B&&(B=!z&&!V&&"undefined"!=typeof global&&(global.process&&"server"===global.process.env.VUE_ENV)),B},ne=z&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function re(e){return"function"==typeof e&&/native code/.test(e.toString())}var ie,oe="undefined"!=typeof Symbol&&re(Symbol)&&"undefined"!=typeof Reflect&&re(Reflect.ownKeys);ie="undefined"!=typeof Set&&re(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var ae=S,se=0,ce=function(){this.id=se++,this.subs=[]};ce.prototype.addSub=function(e){this.subs.push(e)},ce.prototype.removeSub=function(e){h(this.subs,e)},ce.prototype.depend=function(){ce.target&&ce.target.addDep(this)},ce.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;t-1)if(o&&!y(i,"default"))a=!1;else if(""===a||a===C(e)){var c=Pe(String,i.type);(c<0||s0&&(st((u=e(u,(a||"")+"_"+c))[0])&&st(f)&&(s[l]=he(f.text+u[0].text),u.shift()),s.push.apply(s,u)):i(u)?st(f)?s[l]=he(f.text+u):""!==u&&s.push(he(u)):st(u)&&st(f)?s[l]=he(f.text+u.text):(r(o._isVList)&&n(u.tag)&&t(u.key)&&n(a)&&(u.key="__vlist"+a+"_"+c+"__"),s.push(u)));return s}(e):void 0}function st(e){return n(e)&&n(e.text)&&!1===e.isComment}function ct(e,t){if(e){for(var n=Object.create(null),r=oe?Reflect.ownKeys(e):Object.keys(e),i=0;i0,a=t?!!t.$stable:!o,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==e&&s===r.$key&&!o&&!r.$hasNormal)return r;for(var c in i={},t)t[c]&&"$"!==c[0]&&(i[c]=pt(n,c,t[c]))}else i={};for(var u in n)u in i||(i[u]=dt(n,u));return t&&Object.isExtensible(t)&&(t._normalized=i),R(i,"$stable",a),R(i,"$key",s),R(i,"$hasNormal",o),i}function pt(e,t,n){var r=function(){var e=arguments.length?n.apply(null,arguments):n({});return(e=e&&"object"==typeof e&&!Array.isArray(e)?[e]:at(e))&&(0===e.length||1===e.length&&e[0].isComment)?void 0:e};return n.proxy&&Object.defineProperty(e,t,{get:r,enumerable:!0,configurable:!0}),r}function dt(e,t){return function(){return e[t]}}function vt(e,t){var r,i,a,s,c;if(Array.isArray(e)||"string"==typeof e)for(r=new Array(e.length),i=0,a=e.length;idocument.createEvent("Event").timeStamp&&(sn=function(){return cn.now()})}function un(){var e,t;for(an=sn(),rn=!0,Qt.sort(function(e,t){return e.id-t.id}),on=0;onon&&Qt[n].id>e.id;)n--;Qt.splice(n+1,0,e)}else Qt.push(e);nn||(nn=!0,Ye(un))}}(this)},fn.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||o(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){Re(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},fn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},fn.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},fn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||h(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var pn={enumerable:!0,configurable:!0,get:S,set:S};function dn(e,t,n){pn.get=function(){return this[t][n]},pn.set=function(e){this[t][n]=e},Object.defineProperty(e,n,pn)}function vn(e){e._watchers=[];var t=e.$options;t.props&&function(e,t){var n=e.$options.propsData||{},r=e._props={},i=e.$options._propKeys=[];e.$parent&&$e(!1);var o=function(o){i.push(o);var a=Me(o,t,n,e);xe(r,o,a),o in e||dn(e,"_props",o)};for(var a in t)o(a);$e(!0)}(e,t.props),t.methods&&function(e,t){e.$options.props;for(var n in t)e[n]="function"!=typeof t[n]?S:x(t[n],e)}(e,t.methods),t.data?function(e){var t=e.$options.data;s(t=e._data="function"==typeof t?function(e,t){le();try{return e.call(t,t)}catch(e){return Re(e,t,"data()"),{}}finally{fe()}}(t,e):t||{})||(t={});var n=Object.keys(t),r=e.$options.props,i=(e.$options.methods,n.length);for(;i--;){var o=n[i];r&&y(r,o)||(a=void 0,36!==(a=(o+"").charCodeAt(0))&&95!==a&&dn(e,"_data",o))}var a;Ce(t,!0)}(e):Ce(e._data={},!0),t.computed&&function(e,t){var n=e._computedWatchers=Object.create(null),r=te();for(var i in t){var o=t[i],a="function"==typeof o?o:o.get;r||(n[i]=new fn(e,a||S,S,hn)),i in e||mn(e,i,o)}}(e,t.computed),t.watch&&t.watch!==Y&&function(e,t){for(var n in t){var r=t[n];if(Array.isArray(r))for(var i=0;i-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,"[object RegExp]"===a.call(n)&&e.test(t));var n}function An(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=xn(a.componentOptions);s&&!t(s)&&On(n,o,r,i)}}}function On(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,h(n,t)}!function(t){t.prototype._init=function(t){var n=this;n._uid=bn++,n._isVue=!0,t&&t._isComponent?function(e,t){var n=e.$options=Object.create(e.constructor.options),r=t._parentVnode;n.parent=t.parent,n._parentVnode=r;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}(n,t):n.$options=De($n(n.constructor),t||{},n),n._renderProxy=n,n._self=n,function(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(n),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&qt(e,t)}(n),function(t){t._vnode=null,t._staticTrees=null;var n=t.$options,r=t.$vnode=n._parentVnode,i=r&&r.context;t.$slots=ut(n._renderChildren,i),t.$scopedSlots=e,t._c=function(e,n,r,i){return Pt(t,e,n,r,i,!1)},t.$createElement=function(e,n,r,i){return Pt(t,e,n,r,i,!0)};var o=r&&r.data;xe(t,"$attrs",o&&o.attrs||e,null,!0),xe(t,"$listeners",n._parentListeners||e,null,!0)}(n),Yt(n,"beforeCreate"),function(e){var t=ct(e.$options.inject,e);t&&($e(!1),Object.keys(t).forEach(function(n){xe(e,n,t[n])}),$e(!0))}(n),vn(n),function(e){var t=e.$options.provide;t&&(e._provided="function"==typeof t?t.call(e):t)}(n),Yt(n,"created"),n.$options.el&&n.$mount(n.$options.el)}}(wn),function(e){var t={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(e.prototype,"$data",t),Object.defineProperty(e.prototype,"$props",n),e.prototype.$set=ke,e.prototype.$delete=Ae,e.prototype.$watch=function(e,t,n){if(s(t))return _n(this,e,t,n);(n=n||{}).user=!0;var r=new fn(this,e,t,n);if(n.immediate)try{t.call(this,r.value)}catch(e){Re(e,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(wn),function(e){var t=/^hook:/;e.prototype.$on=function(e,n){var r=this;if(Array.isArray(e))for(var i=0,o=e.length;i1?k(t):t;for(var n=k(arguments,1),r='event handler for "'+e+'"',i=0,o=t.length;iparseInt(this.max)&&On(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={get:function(){return F}};Object.defineProperty(e,"config",t),e.util={warn:ae,extend:A,mergeOptions:De,defineReactive:xe},e.set=ke,e.delete=Ae,e.nextTick=Ye,e.observable=function(e){return Ce(e),e},e.options=Object.create(null),M.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,A(e.options.components,Tn),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=k(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=De(this.options,e),this}}(e),Cn(e),function(e){M.forEach(function(t){e[t]=function(e,n){return n?("component"===t&&s(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}})}(e)}(wn),Object.defineProperty(wn.prototype,"$isServer",{get:te}),Object.defineProperty(wn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(wn,"FunctionalRenderContext",{value:Tt}),wn.version="2.6.11";var En=p("style,class"),Nn=p("input,textarea,option,select,progress"),jn=function(e,t,n){return"value"===n&&Nn(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},Dn=p("contenteditable,draggable,spellcheck"),Ln=p("events,caret,typing,plaintext-only"),Mn=function(e,t){return Hn(t)||"false"===t?"false":"contenteditable"===e&&Ln(t)?t:"true"},In=p("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Fn="http://www.w3.org/1999/xlink",Pn=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},Rn=function(e){return Pn(e)?e.slice(6,e.length):""},Hn=function(e){return null==e||!1===e};function Bn(e){for(var t=e.data,r=e,i=e;n(i.componentInstance);)(i=i.componentInstance._vnode)&&i.data&&(t=Un(i.data,t));for(;n(r=r.parent);)r&&r.data&&(t=Un(t,r.data));return function(e,t){if(n(e)||n(t))return zn(e,Vn(t));return""}(t.staticClass,t.class)}function Un(e,t){return{staticClass:zn(e.staticClass,t.staticClass),class:n(e.class)?[e.class,t.class]:t.class}}function zn(e,t){return e?t?e+" "+t:e:t||""}function Vn(e){return Array.isArray(e)?function(e){for(var t,r="",i=0,o=e.length;i-1?hr(e,t,n):In(t)?Hn(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):Dn(t)?e.setAttribute(t,Mn(t,n)):Pn(t)?Hn(n)?e.removeAttributeNS(Fn,Rn(t)):e.setAttributeNS(Fn,t,n):hr(e,t,n)}function hr(e,t,n){if(Hn(n))e.removeAttribute(t);else{if(q&&!W&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==n&&!e.__ieph){var r=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",r)};e.addEventListener("input",r),e.__ieph=!0}e.setAttribute(t,n)}}var mr={create:dr,update:dr};function yr(e,r){var i=r.elm,o=r.data,a=e.data;if(!(t(o.staticClass)&&t(o.class)&&(t(a)||t(a.staticClass)&&t(a.class)))){var s=Bn(r),c=i._transitionClasses;n(c)&&(s=zn(s,Vn(c))),s!==i._prevClass&&(i.setAttribute("class",s),i._prevClass=s)}}var gr,_r,br,$r,wr,Cr,xr={create:yr,update:yr},kr=/[\w).+\-_$\]]/;function Ar(e){var t,n,r,i,o,a=!1,s=!1,c=!1,u=!1,l=0,f=0,p=0,d=0;for(r=0;r=0&&" "===(h=e.charAt(v));v--);h&&kr.test(h)||(u=!0)}}else void 0===i?(d=r+1,i=e.slice(0,r).trim()):m();function m(){(o||(o=[])).push(e.slice(d,r).trim()),d=r+1}if(void 0===i?i=e.slice(0,r).trim():0!==d&&m(),o)for(r=0;r-1?{exp:e.slice(0,$r),key:'"'+e.slice($r+1)+'"'}:{exp:e,key:null};_r=e,$r=wr=Cr=0;for(;!zr();)Vr(br=Ur())?Jr(br):91===br&&Kr(br);return{exp:e.slice(0,wr),key:e.slice(wr+1,Cr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function Ur(){return _r.charCodeAt(++$r)}function zr(){return $r>=gr}function Vr(e){return 34===e||39===e}function Kr(e){var t=1;for(wr=$r;!zr();)if(Vr(e=Ur()))Jr(e);else if(91===e&&t++,93===e&&t--,0===t){Cr=$r;break}}function Jr(e){for(var t=e;!zr()&&(e=Ur())!==t;);}var qr,Wr="__r",Zr="__c";function Gr(e,t,n){var r=qr;return function i(){null!==t.apply(null,arguments)&&Qr(e,i,n,r)}}var Xr=Ve&&!(X&&Number(X[1])<=53);function Yr(e,t,n,r){if(Xr){var i=an,o=t;t=o._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=i||e.timeStamp<=0||e.target.ownerDocument!==document)return o.apply(this,arguments)}}qr.addEventListener(e,t,Q?{capture:n,passive:r}:n)}function Qr(e,t,n,r){(r||qr).removeEventListener(e,t._wrapper||t,n)}function ei(e,r){if(!t(e.data.on)||!t(r.data.on)){var i=r.data.on||{},o=e.data.on||{};qr=r.elm,function(e){if(n(e[Wr])){var t=q?"change":"input";e[t]=[].concat(e[Wr],e[t]||[]),delete e[Wr]}n(e[Zr])&&(e.change=[].concat(e[Zr],e.change||[]),delete e[Zr])}(i),rt(i,o,Yr,Qr,Gr,r.context),qr=void 0}}var ti,ni={create:ei,update:ei};function ri(e,r){if(!t(e.data.domProps)||!t(r.data.domProps)){var i,o,a=r.elm,s=e.data.domProps||{},c=r.data.domProps||{};for(i in n(c.__ob__)&&(c=r.data.domProps=A({},c)),s)i in c||(a[i]="");for(i in c){if(o=c[i],"textContent"===i||"innerHTML"===i){if(r.children&&(r.children.length=0),o===s[i])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===i&&"PROGRESS"!==a.tagName){a._value=o;var u=t(o)?"":String(o);ii(a,u)&&(a.value=u)}else if("innerHTML"===i&&qn(a.tagName)&&t(a.innerHTML)){(ti=ti||document.createElement("div")).innerHTML=""+o+"";for(var l=ti.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;l.firstChild;)a.appendChild(l.firstChild)}else if(o!==s[i])try{a[i]=o}catch(e){}}}}function ii(e,t){return!e.composing&&("OPTION"===e.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(e,t)||function(e,t){var r=e.value,i=e._vModifiers;if(n(i)){if(i.number)return f(r)!==f(t);if(i.trim)return r.trim()!==t.trim()}return r!==t}(e,t))}var oi={create:ri,update:ri},ai=g(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t});function si(e){var t=ci(e.style);return e.staticStyle?A(e.staticStyle,t):t}function ci(e){return Array.isArray(e)?O(e):"string"==typeof e?ai(e):e}var ui,li=/^--/,fi=/\s*!important$/,pi=function(e,t,n){if(li.test(t))e.style.setProperty(t,n);else if(fi.test(n))e.style.setProperty(C(t),n.replace(fi,""),"important");else{var r=vi(t);if(Array.isArray(n))for(var i=0,o=n.length;i-1?t.split(yi).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function _i(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(yi).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function bi(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&A(t,$i(e.name||"v")),A(t,e),t}return"string"==typeof e?$i(e):void 0}}var $i=g(function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}}),wi=z&&!W,Ci="transition",xi="animation",ki="transition",Ai="transitionend",Oi="animation",Si="animationend";wi&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(ki="WebkitTransition",Ai="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Oi="WebkitAnimation",Si="webkitAnimationEnd"));var Ti=z?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function Ei(e){Ti(function(){Ti(e)})}function Ni(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),gi(e,t))}function ji(e,t){e._transitionClasses&&h(e._transitionClasses,t),_i(e,t)}function Di(e,t,n){var r=Mi(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Ci?Ai:Si,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c0&&(n=Ci,l=a,f=o.length):t===xi?u>0&&(n=xi,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?Ci:xi:null)?n===Ci?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Ci&&Li.test(r[ki+"Property"])}}function Ii(e,t){for(;e.length1}function Ui(e,t){!0!==t.data.show&&Pi(t)}var zi=function(e){var o,a,s={},c=e.modules,u=e.nodeOps;for(o=0;ov?_(e,t(i[y+1])?null:i[y+1].elm,i,d,y,o):d>y&&$(r,p,v)}(p,h,y,o,l):n(y)?(n(e.text)&&u.setTextContent(p,""),_(p,null,y,0,y.length-1,o)):n(h)?$(h,0,h.length-1):n(e.text)&&u.setTextContent(p,""):e.text!==i.text&&u.setTextContent(p,i.text),n(v)&&n(d=v.hook)&&n(d=d.postpatch)&&d(e,i)}}}function k(e,t,i){if(r(i)&&n(e.parent))e.parent.data.pendingInsert=t;else for(var o=0;o-1,a.selected!==o&&(a.selected=o);else if(N(Wi(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function qi(e,t){return t.every(function(t){return!N(t,e)})}function Wi(e){return"_value"in e?e._value:e.value}function Zi(e){e.target.composing=!0}function Gi(e){e.target.composing&&(e.target.composing=!1,Xi(e.target,"input"))}function Xi(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Yi(e){return!e.componentInstance||e.data&&e.data.transition?e:Yi(e.componentInstance._vnode)}var Qi={model:Vi,show:{bind:function(e,t,n){var r=t.value,i=(n=Yi(n)).data&&n.data.transition,o=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;r&&i?(n.data.show=!0,Pi(n,function(){e.style.display=o})):e.style.display=r?o:"none"},update:function(e,t,n){var r=t.value;!r!=!t.oldValue&&((n=Yi(n)).data&&n.data.transition?(n.data.show=!0,r?Pi(n,function(){e.style.display=e.__vOriginalDisplay}):Ri(n,function(){e.style.display="none"})):e.style.display=r?e.__vOriginalDisplay:"none")},unbind:function(e,t,n,r,i){i||(e.style.display=e.__vOriginalDisplay)}}},eo={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function to(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?to(zt(t.children)):e}function no(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[b(o)]=i[o];return t}function ro(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var io=function(e){return e.tag||Ut(e)},oo=function(e){return"show"===e.name},ao={name:"transition",props:eo,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(io)).length){var r=this.mode,o=n[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return o;var a=to(o);if(!a)return o;if(this._leaving)return ro(e,o);var s="__transition-"+this._uid+"-";a.key=null==a.key?a.isComment?s+"comment":s+a.tag:i(a.key)?0===String(a.key).indexOf(s)?a.key:s+a.key:a.key;var c=(a.data||(a.data={})).transition=no(this),u=this._vnode,l=to(u);if(a.data.directives&&a.data.directives.some(oo)&&(a.data.show=!0),l&&l.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(a,l)&&!Ut(l)&&(!l.componentInstance||!l.componentInstance._vnode.isComment)){var f=l.data.transition=A({},c);if("out-in"===r)return this._leaving=!0,it(f,"afterLeave",function(){t._leaving=!1,t.$forceUpdate()}),ro(e,o);if("in-out"===r){if(Ut(a))return u;var p,d=function(){p()};it(c,"afterEnter",d),it(c,"enterCancelled",d),it(f,"delayLeave",function(e){p=e})}}return o}}},so=A({tag:String,moveClass:String},eo);function co(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function uo(e){e.data.newPos=e.elm.getBoundingClientRect()}function lo(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}delete so.mode;var fo={Transition:ao,TransitionGroup:{props:so,beforeMount:function(){var e=this,t=this._update;this._update=function(n,r){var i=Zt(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,i(),t.call(e,n,r)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],a=no(this),s=0;s-1?Gn[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Gn[e]=/HTMLUnknownElement/.test(t.toString())},A(wn.options.directives,Qi),A(wn.options.components,fo),wn.prototype.__patch__=z?zi:S,wn.prototype.$mount=function(e,t){return function(e,t,n){var r;return e.$el=t,e.$options.render||(e.$options.render=ve),Yt(e,"beforeMount"),r=function(){e._update(e._render(),n)},new fn(e,r,S,{before:function(){e._isMounted&&!e._isDestroyed&&Yt(e,"beforeUpdate")}},!0),n=!1,null==e.$vnode&&(e._isMounted=!0,Yt(e,"mounted")),e}(this,e=e&&z?Yn(e):void 0,t)},z&&setTimeout(function(){F.devtools&&ne&&ne.emit("init",wn)},0);var po=/\{\{((?:.|\r?\n)+?)\}\}/g,vo=/[-.*+?^${}()|[\]\/\\]/g,ho=g(function(e){var t=e[0].replace(vo,"\\$&"),n=e[1].replace(vo,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")});var mo={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=Fr(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=Ir(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}};var yo,go={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=Fr(e,"style");n&&(e.staticStyle=JSON.stringify(ai(n)));var r=Ir(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},_o=function(e){return(yo=yo||document.createElement("div")).innerHTML=e,yo.textContent},bo=p("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),$o=p("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),wo=p("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),Co=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,xo=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ko="[a-zA-Z_][\\-\\.0-9_a-zA-Z"+P.source+"]*",Ao="((?:"+ko+"\\:)?"+ko+")",Oo=new RegExp("^<"+Ao),So=/^\s*(\/?)>/,To=new RegExp("^<\\/"+Ao+"[^>]*>"),Eo=/^]+>/i,No=/^",""":'"',"&":"&"," ":"\n"," ":"\t","'":"'"},Io=/&(?:lt|gt|quot|amp|#39);/g,Fo=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Po=p("pre,textarea",!0),Ro=function(e,t){return e&&Po(e)&&"\n"===t[0]};function Ho(e,t){var n=t?Fo:Io;return e.replace(n,function(e){return Mo[e]})}var Bo,Uo,zo,Vo,Ko,Jo,qo,Wo,Zo=/^@|^v-on:/,Go=/^v-|^@|^:|^#/,Xo=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Yo=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Qo=/^\(|\)$/g,ea=/^\[.*\]$/,ta=/:(.*)$/,na=/^:|^\.|^v-bind:/,ra=/\.[^.\]]+(?=[^\]]*$)/g,ia=/^v-slot(:|$)|^#/,oa=/[\r\n]/,aa=/\s+/g,sa=g(_o),ca="_empty_";function ua(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:ma(t),rawAttrsMap:{},parent:n,children:[]}}function la(e,t){Bo=t.warn||Sr,Jo=t.isPreTag||T,qo=t.mustUseProp||T,Wo=t.getTagNamespace||T;t.isReservedTag;zo=Tr(t.modules,"transformNode"),Vo=Tr(t.modules,"preTransformNode"),Ko=Tr(t.modules,"postTransformNode"),Uo=t.delimiters;var n,r,i=[],o=!1!==t.preserveWhitespace,a=t.whitespace,s=!1,c=!1;function u(e){if(l(e),s||e.processed||(e=fa(e,t)),i.length||e===n||n.if&&(e.elseif||e.else)&&da(n,{exp:e.elseif,block:e}),r&&!e.forbidden)if(e.elseif||e.else)a=e,(u=function(e){var t=e.length;for(;t--;){if(1===e[t].type)return e[t];e.pop()}}(r.children))&&u.if&&da(u,{exp:a.elseif,block:a});else{if(e.slotScope){var o=e.slotTarget||'"default"';(r.scopedSlots||(r.scopedSlots={}))[o]=e}r.children.push(e),e.parent=r}var a,u;e.children=e.children.filter(function(e){return!e.slotScope}),l(e),e.pre&&(s=!1),Jo(e.tag)&&(c=!1);for(var f=0;f]*>)","i")),p=e.replace(f,function(e,n,r){return u=r.length,Do(l)||"noscript"===l||(n=n.replace(//g,"$1").replace(//g,"$1")),Ro(l,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});c+=e.length-p.length,e=p,A(l,c-u,c)}else{var d=e.indexOf("<");if(0===d){if(No.test(e)){var v=e.indexOf("--\x3e");if(v>=0){t.shouldKeepComment&&t.comment(e.substring(4,v),c,c+v+3),C(v+3);continue}}if(jo.test(e)){var h=e.indexOf("]>");if(h>=0){C(h+2);continue}}var m=e.match(Eo);if(m){C(m[0].length);continue}var y=e.match(To);if(y){var g=c;C(y[0].length),A(y[1],g,c);continue}var _=x();if(_){k(_),Ro(_.tagName,e)&&C(1);continue}}var b=void 0,$=void 0,w=void 0;if(d>=0){for($=e.slice(d);!(To.test($)||Oo.test($)||No.test($)||jo.test($)||(w=$.indexOf("<",1))<0);)d+=w,$=e.slice(d);b=e.substring(0,d)}d<0&&(b=e),b&&C(b.length),t.chars&&b&&t.chars(b,c-b.length,c)}if(e===n){t.chars&&t.chars(e);break}}function C(t){c+=t,e=e.substring(t)}function x(){var t=e.match(Oo);if(t){var n,r,i={tagName:t[1],attrs:[],start:c};for(C(t[0].length);!(n=e.match(So))&&(r=e.match(xo)||e.match(Co));)r.start=c,C(r[0].length),r.end=c,i.attrs.push(r);if(n)return i.unarySlash=n[1],C(n[0].length),i.end=c,i}}function k(e){var n=e.tagName,c=e.unarySlash;o&&("p"===r&&wo(n)&&A(r),s(n)&&r===n&&A(n));for(var u=a(n)||!!c,l=e.attrs.length,f=new Array(l),p=0;p=0&&i[a].lowerCasedTag!==s;a--);else a=0;if(a>=0){for(var u=i.length-1;u>=a;u--)t.end&&t.end(i[u].tag,n,o);i.length=a,r=a&&i[a-1].tag}else"br"===s?t.start&&t.start(e,[],!0,n,o):"p"===s&&(t.start&&t.start(e,[],!1,n,o),t.end&&t.end(e,n,o))}A()}(e,{warn:Bo,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,outputSourceRange:t.outputSourceRange,start:function(e,o,a,l,f){var p=r&&r.ns||Wo(e);q&&"svg"===p&&(o=function(e){for(var t=[],n=0;nc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Ar(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c-1"+("true"===o?":("+t+")":":_q("+t+","+o+")")),Mr(e,"change","var $$a="+t+",$$el=$event.target,$$c=$$el.checked?("+o+"):("+a+");if(Array.isArray($$a)){var $$v="+(r?"_n("+i+")":i)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Br(t,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Br(t,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Br(t,"$$c")+"}",null,!0)}(e,r,i);else if("input"===o&&"radio"===a)!function(e,t,n){var r=n&&n.number,i=Ir(e,"value")||"null";Er(e,"checked","_q("+t+","+(i=r?"_n("+i+")":i)+")"),Mr(e,"change",Br(t,i),null,!0)}(e,r,i);else if("input"===o||"textarea"===o)!function(e,t,n){var r=e.attrsMap.type,i=n||{},o=i.lazy,a=i.number,s=i.trim,c=!o&&"range"!==r,u=o?"change":"range"===r?Wr:"input",l="$event.target.value";s&&(l="$event.target.value.trim()"),a&&(l="_n("+l+")");var f=Br(t,l);c&&(f="if($event.target.composing)return;"+f),Er(e,"value","("+t+")"),Mr(e,u,f,null,!0),(s||a)&&Mr(e,"blur","$forceUpdate()")}(e,r,i);else if(!F.isReservedTag(o))return Hr(e,r,i),!1;return!0},text:function(e,t){t.value&&Er(e,"textContent","_s("+t.value+")",t)},html:function(e,t){t.value&&Er(e,"innerHTML","_s("+t.value+")",t)}},isPreTag:function(e){return"pre"===e},isUnaryTag:bo,mustUseProp:jn,canBeLeftOpenTag:$o,isReservedTag:Wn,getTagNamespace:Zn,staticKeys:function(e){return e.reduce(function(e,t){return e.concat(t.staticKeys||[])},[]).join(",")}(ba)},xa=g(function(e){return p("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(e?","+e:""))});function ka(e,t){e&&($a=xa(t.staticKeys||""),wa=t.isReservedTag||T,function e(t){t.static=function(e){if(2===e.type)return!1;if(3===e.type)return!0;return!(!e.pre&&(e.hasBindings||e.if||e.for||d(e.tag)||!wa(e.tag)||function(e){for(;e.parent;){if("template"!==(e=e.parent).tag)return!1;if(e.for)return!0}return!1}(e)||!Object.keys(e).every($a)))}(t);if(1===t.type){if(!wa(t.tag)&&"slot"!==t.tag&&null==t.attrsMap["inline-template"])return;for(var n=0,r=t.children.length;n|^function(?:\s+[\w$]+)?\s*\(/,Oa=/\([^)]*?\);*$/,Sa=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,Ta={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},Ea={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},Na=function(e){return"if("+e+")return null;"},ja={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:Na("$event.target !== $event.currentTarget"),ctrl:Na("!$event.ctrlKey"),shift:Na("!$event.shiftKey"),alt:Na("!$event.altKey"),meta:Na("!$event.metaKey"),left:Na("'button' in $event && $event.button !== 0"),middle:Na("'button' in $event && $event.button !== 1"),right:Na("'button' in $event && $event.button !== 2")};function Da(e,t){var n=t?"nativeOn:":"on:",r="",i="";for(var o in e){var a=La(e[o]);e[o]&&e[o].dynamic?i+=o+","+a+",":r+='"'+o+'":'+a+","}return r="{"+r.slice(0,-1)+"}",i?n+"_d("+r+",["+i.slice(0,-1)+"])":n+r}function La(e){if(!e)return"function(){}";if(Array.isArray(e))return"["+e.map(function(e){return La(e)}).join(",")+"]";var t=Sa.test(e.value),n=Aa.test(e.value),r=Sa.test(e.value.replace(Oa,""));if(e.modifiers){var i="",o="",a=[];for(var s in e.modifiers)if(ja[s])o+=ja[s],Ta[s]&&a.push(s);else if("exact"===s){var c=e.modifiers;o+=Na(["ctrl","shift","alt","meta"].filter(function(e){return!c[e]}).map(function(e){return"$event."+e+"Key"}).join("||"))}else a.push(s);return a.length&&(i+=function(e){return"if(!$event.type.indexOf('key')&&"+e.map(Ma).join("&&")+")return null;"}(a)),o&&(i+=o),"function($event){"+i+(t?"return "+e.value+"($event)":n?"return ("+e.value+")($event)":r?"return "+e.value:e.value)+"}"}return t||n?e.value:"function($event){"+(r?"return "+e.value:e.value)+"}"}function Ma(e){var t=parseInt(e,10);if(t)return"$event.keyCode!=="+t;var n=Ta[e],r=Ea[e];return"_k($event.keyCode,"+JSON.stringify(e)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(r)+")"}var Ia={on:function(e,t){e.wrapListeners=function(e){return"_g("+e+","+t.value+")"}},bind:function(e,t){e.wrapData=function(n){return"_b("+n+",'"+e.tag+"',"+t.value+","+(t.modifiers&&t.modifiers.prop?"true":"false")+(t.modifiers&&t.modifiers.sync?",true":"")+")"}},cloak:S},Fa=function(e){this.options=e,this.warn=e.warn||Sr,this.transforms=Tr(e.modules,"transformCode"),this.dataGenFns=Tr(e.modules,"genData"),this.directives=A(A({},Ia),e.directives);var t=e.isReservedTag||T;this.maybeComponent=function(e){return!!e.component||!t(e.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Pa(e,t){var n=new Fa(t);return{render:"with(this){return "+(e?Ra(e,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function Ra(e,t){if(e.parent&&(e.pre=e.pre||e.parent.pre),e.staticRoot&&!e.staticProcessed)return Ha(e,t);if(e.once&&!e.onceProcessed)return Ba(e,t);if(e.for&&!e.forProcessed)return za(e,t);if(e.if&&!e.ifProcessed)return Ua(e,t);if("template"!==e.tag||e.slotTarget||t.pre){if("slot"===e.tag)return function(e,t){var n=e.slotName||'"default"',r=qa(e,t),i="_t("+n+(r?","+r:""),o=e.attrs||e.dynamicAttrs?Ga((e.attrs||[]).concat(e.dynamicAttrs||[]).map(function(e){return{name:b(e.name),value:e.value,dynamic:e.dynamic}})):null,a=e.attrsMap["v-bind"];!o&&!a||r||(i+=",null");o&&(i+=","+o);a&&(i+=(o?"":",null")+","+a);return i+")"}(e,t);var n;if(e.component)n=function(e,t,n){var r=t.inlineTemplate?null:qa(t,n,!0);return"_c("+e+","+Va(t,n)+(r?","+r:"")+")"}(e.component,e,t);else{var r;(!e.plain||e.pre&&t.maybeComponent(e))&&(r=Va(e,t));var i=e.inlineTemplate?null:qa(e,t,!0);n="_c('"+e.tag+"'"+(r?","+r:"")+(i?","+i:"")+")"}for(var o=0;o>>0}(a):"")+")"}(e,e.scopedSlots,t)+","),e.model&&(n+="model:{value:"+e.model.value+",callback:"+e.model.callback+",expression:"+e.model.expression+"},"),e.inlineTemplate){var o=function(e,t){var n=e.children[0];if(n&&1===n.type){var r=Pa(n,t.options);return"inlineTemplate:{render:function(){"+r.render+"},staticRenderFns:["+r.staticRenderFns.map(function(e){return"function(){"+e+"}"}).join(",")+"]}"}}(e,t);o&&(n+=o+",")}return n=n.replace(/,$/,"")+"}",e.dynamicAttrs&&(n="_b("+n+',"'+e.tag+'",'+Ga(e.dynamicAttrs)+")"),e.wrapData&&(n=e.wrapData(n)),e.wrapListeners&&(n=e.wrapListeners(n)),n}function Ka(e){return 1===e.type&&("slot"===e.tag||e.children.some(Ka))}function Ja(e,t){var n=e.attrsMap["slot-scope"];if(e.if&&!e.ifProcessed&&!n)return Ua(e,t,Ja,"null");if(e.for&&!e.forProcessed)return za(e,t,Ja);var r=e.slotScope===ca?"":String(e.slotScope),i="function("+r+"){return "+("template"===e.tag?e.if&&n?"("+e.if+")?"+(qa(e,t)||"undefined")+":undefined":qa(e,t)||"undefined":Ra(e,t))+"}",o=r?"":",proxy:true";return"{key:"+(e.slotTarget||'"default"')+",fn:"+i+o+"}"}function qa(e,t,n,r,i){var o=e.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&"template"!==a.tag&&"slot"!==a.tag){var s=n?t.maybeComponent(a)?",1":",0":"";return""+(r||Ra)(a,t)+s}var c=n?function(e,t){for(var n=0,r=0;r':'
',ts.innerHTML.indexOf(" ")>0}var os=!!z&&is(!1),as=!!z&&is(!0),ss=g(function(e){var t=Yn(e);return t&&t.innerHTML}),cs=wn.prototype.$mount;return wn.prototype.$mount=function(e,t){if((e=e&&Yn(e))===document.body||e===document.documentElement)return this;var n=this.$options;if(!n.render){var r=n.template;if(r)if("string"==typeof r)"#"===r.charAt(0)&&(r=ss(r));else{if(!r.nodeType)return this;r=r.innerHTML}else e&&(r=function(e){if(e.outerHTML)return e.outerHTML;var t=document.createElement("div");return t.appendChild(e.cloneNode(!0)),t.innerHTML}(e));if(r){var i=rs(r,{outputSourceRange:!1,shouldDecodeNewlines:os,shouldDecodeNewlinesForHref:as,delimiters:n.delimiters,comments:n.comments},this),o=i.render,a=i.staticRenderFns;n.render=o,n.staticRenderFns=a}}return cs.call(this,e,t)},wn.compile=rs,wn}); \ No newline at end of file