diff --git a/proj/map/.index.html.swp b/proj/map/.index.html.swp index 27f3627..0169fe7 100644 Binary files a/proj/map/.index.html.swp and b/proj/map/.index.html.swp differ diff --git a/proj/map/asset/css/color.css b/proj/map/asset/css/color.css new file mode 100644 index 0000000..8a0cb97 --- /dev/null +++ b/proj/map/asset/css/color.css @@ -0,0 +1,20 @@ +:root { + --b9h-color-bg: #1c2729; + --b9h-color-bg-alpha: rgba(28,39,41,0.8); + --b9h-color-fg: #b3bfb6; + --b9h-color-accent: #ff5821; +} + +html { + background-color: var(--b9h-color-bg); + color: var(--b9h-color-fg); +} + +.marker { + background-color: var(--b9h-color-accent); +} + +a { + color: inherit; + text-decoration: none; +} diff --git a/proj/map/asset/css/font.css b/proj/map/asset/css/font.css new file mode 100644 index 0000000..882df63 --- /dev/null +++ b/proj/map/asset/css/font.css @@ -0,0 +1,28 @@ +@font-face { + font-family: LemonMilk; + src: url("../fonts/LemonMilk/LEMONMILK-Bold.otf"); + font-weight: 600; +} + +@font-face { + font-family: LemonMilk; + src: url("../fonts/LemonMilk/LEMONMILK-Light.otf"); + font-weight: 200; +} + +@font-face { + font-family: Inter; + src: url("../fonts/inter/Inter-Light.woff"); + font-weight: 200; +} + +@font-face { + font-family: Inter; + src: url("../fonts/inter/Inter-Regular.woff"); + font-weight: 400; +} + + +html { + font-family: Inter; +} \ No newline at end of file diff --git a/proj/map/asset/css/map.css b/proj/map/asset/css/map.css new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/proj/map/asset/css/map.css @@ -0,0 +1 @@ + diff --git a/proj/map/asset/css/style.css b/proj/map/asset/css/style.css new file mode 100644 index 0000000..a4fea74 --- /dev/null +++ b/proj/map/asset/css/style.css @@ -0,0 +1,109 @@ +@import url("https://file.brz9.dev/web/css/normalize.css"); +@import url("./color.css"); +@import url("./map.css"); +@import url("./font.css"); + +header { + +} + +body { + height: 100vh; + overflow: hidden; +} + +section#logo { + position: fixed; + left: 5px; + top: 5px; +} + +section#lang { + position: fixed; + right: 5px; + top: 5px; +} + +section#map-container { + position: fixed; + top: 40px; + width: 100vw; +} + +#map { + height: 300px; + width: 100vw; +} + +main { + position: fixed; + top: 340px; + bottom: 0px; + width: 100vw; +} + +div#list { + overflow-y: scroll; + height: 100%; + width: 100%; + padding-left: 10px; + padding-top: 10px + scrollbar-width: none; +} + +div#list::-webkit-scrollbar { + display: none; +} + +.marker { + position: absolute; + height: 5px; + left: 0; + width: 0; + bottom: -10px; + transition: 0.5s; +} + +.listchild { + height: 0%; + max-height: 0px; + overflow: hidden; + transition: height 0.3s; +} + +.listchild.active { + height: 100%; + max-height: none; + overflow: hidden; +} + +span.listname { + display: inline-block; +} + +span.listname h3 { + margin: 0px; + float: left; +} + +span.listname span.listicon { + margin: 5px; + float: left; + transform: rotate(0deg); + transition: transform 0.3s; +} + +span.listname.active span.listicon { + float: left; + transform: rotate(-180deg); + transition: transform 0.3s; +} + +section.listchild { + display: block; + padding-right: 10px; +} + + + + diff --git a/proj/map/asset/fonts/LemonMilk/.uuid b/proj/map/asset/fonts/LemonMilk/.uuid new file mode 100644 index 0000000..c8d36c3 --- /dev/null +++ b/proj/map/asset/fonts/LemonMilk/.uuid @@ -0,0 +1 @@ +d3e57bdb-3b07-4115-9278-c37ec26a282a \ No newline at end of file diff --git a/proj/map/asset/fonts/LemonMilk/LEMONMILK-Bold.otf b/proj/map/asset/fonts/LemonMilk/LEMONMILK-Bold.otf new file mode 100644 index 0000000..d0391fc Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/LEMONMILK-Bold.otf differ diff --git a/proj/map/asset/fonts/LemonMilk/LEMONMILK-BoldItalic.otf b/proj/map/asset/fonts/LemonMilk/LEMONMILK-BoldItalic.otf new file mode 100644 index 0000000..7b02b72 Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/LEMONMILK-BoldItalic.otf differ diff --git a/proj/map/asset/fonts/LemonMilk/LEMONMILK-Light.otf b/proj/map/asset/fonts/LemonMilk/LEMONMILK-Light.otf new file mode 100644 index 0000000..24d3e10 Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/LEMONMILK-Light.otf differ diff --git a/proj/map/asset/fonts/LemonMilk/LEMONMILK-LightItalic.otf b/proj/map/asset/fonts/LemonMilk/LEMONMILK-LightItalic.otf new file mode 100644 index 0000000..0a01027 Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/LEMONMILK-LightItalic.otf differ diff --git a/proj/map/asset/fonts/LemonMilk/LEMONMILK-Medium.otf b/proj/map/asset/fonts/LemonMilk/LEMONMILK-Medium.otf new file mode 100644 index 0000000..af05cda Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/LEMONMILK-Medium.otf differ diff --git a/proj/map/asset/fonts/LemonMilk/LEMONMILK-MediumItalic.otf b/proj/map/asset/fonts/LemonMilk/LEMONMILK-MediumItalic.otf new file mode 100644 index 0000000..39dd6d6 Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/LEMONMILK-MediumItalic.otf differ diff --git a/proj/map/asset/fonts/LemonMilk/LEMONMILK-Regular.otf b/proj/map/asset/fonts/LemonMilk/LEMONMILK-Regular.otf new file mode 100644 index 0000000..b186df8 Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/LEMONMILK-Regular.otf differ diff --git a/proj/map/asset/fonts/LemonMilk/LEMONMILK-RegularItalic.otf b/proj/map/asset/fonts/LemonMilk/LEMONMILK-RegularItalic.otf new file mode 100644 index 0000000..c5d4edf Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/LEMONMILK-RegularItalic.otf differ diff --git a/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 1.png b/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 1.png new file mode 100644 index 0000000..d7f9386 Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 1.png differ diff --git a/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 2.png b/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 2.png new file mode 100644 index 0000000..3a32656 Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 2.png differ diff --git a/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 3.png b/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 3.png new file mode 100644 index 0000000..d15cc74 Binary files /dev/null and b/proj/map/asset/fonts/LemonMilk/Lemon Milk Demo 3.png differ diff --git a/proj/map/asset/fonts/LemonMilk/READ_ME.txt b/proj/map/asset/fonts/LemonMilk/READ_ME.txt new file mode 100644 index 0000000..cfe8889 --- /dev/null +++ b/proj/map/asset/fonts/LemonMilk/READ_ME.txt @@ -0,0 +1,34 @@ +LEMON MILK.otf ver 5.0 (donationware) + + Need lowercases of LEMON MILK? + + Wait no more! LEMON MILK Pro is available now. + Get LEMON MILK with lowercases, covering extended Latin, Cyrillic, and Greek. + Moreover, it now has 18 fonts + 2 variable fonts ranging from thin to heavy. + + >> Go check https://www.marsnev.com now to learn more. << + + +----------IMPORTANT NOTE---------- + +This version of LEMON MILK is absolutely free for personal, educational, non-profit, or charitable use. +For commercial use, kindly donate me (pay as you want) as an appreciation. If you want to donate, my PayPal address is marsnev@marsnev.com +Every donation is greatly appreciated. + +If you need further information, +kindly check my F.A.Q page at: http://blog.marsnev.com/p/faq.html + +if you cannot get the answers there, +kindly contact me at: +email address: marsnev@marsnev.com + + + +Thanks for being supportive, +MARSNEV + +https://www.marsnev.com +twitter.com/MARSNEV +instagram.com/MARSNEV +behance.com/MARSNEV + diff --git a/proj/map/asset/fonts/byl-iconfont-v3.2/Read Me.txt b/proj/map/asset/fonts/byl-iconfont-v3.2/Read Me.txt new file mode 100644 index 0000000..e39b544 --- /dev/null +++ b/proj/map/asset/fonts/byl-iconfont-v3.2/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/proj/map/asset/fonts/byl-iconfont-v3.2/demo-files/demo.css b/proj/map/asset/fonts/byl-iconfont-v3.2/demo-files/demo.css new file mode 100644 index 0000000..44debde --- /dev/null +++ b/proj/map/asset/fonts/byl-iconfont-v3.2/demo-files/demo.css @@ -0,0 +1,164 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 32px; +} +.fs2 { + font-size: 28px; +} +.fs3 { + font-size: 32px; +} +.fs4 { + font-size: 24px; +} +.fs5 { + font-size: 24px; +} + diff --git a/proj/map/asset/fonts/byl-iconfont-v3.2/demo-files/demo.js b/proj/map/asset/fonts/byl-iconfont-v3.2/demo-files/demo.js new file mode 100644 index 0000000..6f45f1c --- /dev/null +++ b/proj/map/asset/fonts/byl-iconfont-v3.2/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/proj/map/asset/fonts/byl-iconfont-v3.2/demo.html b/proj/map/asset/fonts/byl-iconfont-v3.2/demo.html new file mode 100644 index 0000000..dd592f2 --- /dev/null +++ b/proj/map/asset/fonts/byl-iconfont-v3.2/demo.html @@ -0,0 +1,9038 @@ + + +
+ +Generated by IcoMoon
+