diff --git a/css/app.css b/css/app.css index 9f892fb..b9ad748 100644 --- a/css/app.css +++ b/css/app.css @@ -26,7 +26,6 @@ top: 4px; right: 10px; font-size: 2.5em; - -webkit-text-stroke: 1px lighgrey; -webkit-text-fill-color: gold; font-family: Arial, serif; text-shadow: -1px -1px 2px black; @@ -35,4 +34,25 @@ .form-control-sandbox { display: inline-block; width: 90px; -} \ No newline at end of file +} + +#mapwrapper { + text-align: center; + overflow: auto; + height: 70vh; + overflow-scrolling: auto; +} + +#mapwrapper::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); + border-radius: 10px; + background-color: #F5F5F5; +} + +.tile { + background-image: url('../img/tiles/grass.png'); +} + +#mapwrapper.card-body { + padding: 0; +} diff --git a/img/tiles/environment/birch_1.png b/img/tiles/environment/birch_1.png new file mode 100644 index 0000000..e69de29 diff --git a/img/tiles/environment/birch_2.png b/img/tiles/environment/birch_2.png new file mode 100644 index 0000000..e69de29 diff --git a/img/tiles/environment/birch_3.png b/img/tiles/environment/birch_3.png new file mode 100644 index 0000000..e69de29 diff --git a/img/tiles/environment/birch_4.png b/img/tiles/environment/birch_4.png new file mode 100644 index 0000000..e69de29 diff --git a/img/tiles/environment/birch_large.png b/img/tiles/environment/birch_large.png new file mode 100644 index 0000000..51a7c19 Binary files /dev/null and b/img/tiles/environment/birch_large.png differ diff --git a/img/tiles/environment/birch_small.png b/img/tiles/environment/birch_small.png new file mode 100644 index 0000000..4c5165d Binary files /dev/null and b/img/tiles/environment/birch_small.png differ diff --git a/img/tiles/environment/bush.png b/img/tiles/environment/bush.png new file mode 100644 index 0000000..b6d605f Binary files /dev/null and b/img/tiles/environment/bush.png differ diff --git a/img/tiles/environment/bush_berries.png b/img/tiles/environment/bush_berries.png new file mode 100644 index 0000000..cdd1ccb Binary files /dev/null and b/img/tiles/environment/bush_berries.png differ diff --git a/img/tiles/environment/fire.png b/img/tiles/environment/fire.png new file mode 100644 index 0000000..1317671 Binary files /dev/null and b/img/tiles/environment/fire.png differ diff --git a/img/tiles/environment/ore_copper.png b/img/tiles/environment/ore_copper.png new file mode 100644 index 0000000..e194619 Binary files /dev/null and b/img/tiles/environment/ore_copper.png differ diff --git a/img/tiles/environment/ore_gold.png b/img/tiles/environment/ore_gold.png new file mode 100644 index 0000000..9c59bf8 Binary files /dev/null and b/img/tiles/environment/ore_gold.png differ diff --git a/img/tiles/environment/spruce_large.png b/img/tiles/environment/spruce_large.png new file mode 100644 index 0000000..fcc3a18 Binary files /dev/null and b/img/tiles/environment/spruce_large.png differ diff --git a/img/tiles/environment/spruce_small.png b/img/tiles/environment/spruce_small.png new file mode 100644 index 0000000..baa6663 Binary files /dev/null and b/img/tiles/environment/spruce_small.png differ diff --git a/img/tiles/environment/stone.png b/img/tiles/environment/stone.png new file mode 100644 index 0000000..7610b79 Binary files /dev/null and b/img/tiles/environment/stone.png differ diff --git a/img/tiles/environment/stone_0.png b/img/tiles/environment/stone_0.png new file mode 100644 index 0000000..f7b3290 Binary files /dev/null and b/img/tiles/environment/stone_0.png differ diff --git a/img/tiles/environment/stone_1.png b/img/tiles/environment/stone_1.png new file mode 100644 index 0000000..a4e023c Binary files /dev/null and b/img/tiles/environment/stone_1.png differ diff --git a/img/tiles/environment/stone_3.png b/img/tiles/environment/stone_3.png new file mode 100644 index 0000000..eeaaab8 Binary files /dev/null and b/img/tiles/environment/stone_3.png differ diff --git a/img/tiles/environment/wood_log.png b/img/tiles/environment/wood_log.png new file mode 100644 index 0000000..314ae37 Binary files /dev/null and b/img/tiles/environment/wood_log.png differ diff --git a/img/tiles/environment/wooden_fence.png b/img/tiles/environment/wooden_fence.png new file mode 100644 index 0000000..e812c3f Binary files /dev/null and b/img/tiles/environment/wooden_fence.png differ diff --git a/img/tiles/grass.png b/img/tiles/grass.png new file mode 100644 index 0000000..ef5d19a Binary files /dev/null and b/img/tiles/grass.png differ diff --git a/img/tiles/roads/corner_n_o.png b/img/tiles/roads/corner_n_o.png new file mode 100644 index 0000000..f098bd7 Binary files /dev/null and b/img/tiles/roads/corner_n_o.png differ diff --git a/img/tiles/roads/corner_n_w.png b/img/tiles/roads/corner_n_w.png new file mode 100644 index 0000000..2c37a28 Binary files /dev/null and b/img/tiles/roads/corner_n_w.png differ diff --git a/img/tiles/roads/corner_o_s.png b/img/tiles/roads/corner_o_s.png new file mode 100644 index 0000000..3b132b7 Binary files /dev/null and b/img/tiles/roads/corner_o_s.png differ diff --git a/img/tiles/roads/corner_s_w.png b/img/tiles/roads/corner_s_w.png new file mode 100644 index 0000000..fdfeb0c Binary files /dev/null and b/img/tiles/roads/corner_s_w.png differ diff --git a/img/tiles/roads/cross.png b/img/tiles/roads/cross.png new file mode 100644 index 0000000..f9cce14 Binary files /dev/null and b/img/tiles/roads/cross.png differ diff --git a/img/tiles/roads/end_n.png b/img/tiles/roads/end_n.png new file mode 100644 index 0000000..27b4108 Binary files /dev/null and b/img/tiles/roads/end_n.png differ diff --git a/img/tiles/roads/end_o.png b/img/tiles/roads/end_o.png new file mode 100644 index 0000000..f99cacc Binary files /dev/null and b/img/tiles/roads/end_o.png differ diff --git a/img/tiles/roads/end_s.png b/img/tiles/roads/end_s.png new file mode 100644 index 0000000..b6abf46 Binary files /dev/null and b/img/tiles/roads/end_s.png differ diff --git a/img/tiles/roads/end_w.png b/img/tiles/roads/end_w.png new file mode 100644 index 0000000..ee34ec1 Binary files /dev/null and b/img/tiles/roads/end_w.png differ diff --git a/img/tiles/roads/straight_n_s.png b/img/tiles/roads/straight_n_s.png new file mode 100644 index 0000000..6866454 Binary files /dev/null and b/img/tiles/roads/straight_n_s.png differ diff --git a/img/tiles/roads/straight_o_w.png b/img/tiles/roads/straight_o_w.png new file mode 100644 index 0000000..07ed2fd Binary files /dev/null and b/img/tiles/roads/straight_o_w.png differ diff --git a/img/tiles/roads/t_n_o_s.png b/img/tiles/roads/t_n_o_s.png new file mode 100644 index 0000000..119a44a Binary files /dev/null and b/img/tiles/roads/t_n_o_s.png differ diff --git a/img/tiles/roads/t_n_o_w.png b/img/tiles/roads/t_n_o_w.png new file mode 100644 index 0000000..c977a87 Binary files /dev/null and b/img/tiles/roads/t_n_o_w.png differ diff --git a/img/tiles/roads/t_n_s_w.png b/img/tiles/roads/t_n_s_w.png new file mode 100644 index 0000000..3f1d38f Binary files /dev/null and b/img/tiles/roads/t_n_s_w.png differ diff --git a/img/tiles/roads/t_o_s_w.png b/img/tiles/roads/t_o_s_w.png new file mode 100644 index 0000000..0e0ed0b Binary files /dev/null and b/img/tiles/roads/t_o_s_w.png differ diff --git a/img/tiles/singleSpruce.png b/img/tiles/singleSpruce.png new file mode 100644 index 0000000..b60887b Binary files /dev/null and b/img/tiles/singleSpruce.png differ diff --git a/img/tiles/structure/barn.png b/img/tiles/structure/barn.png new file mode 100644 index 0000000..e935bdb Binary files /dev/null and b/img/tiles/structure/barn.png differ diff --git a/img/tiles/structure/blacksmith.png b/img/tiles/structure/blacksmith.png new file mode 100644 index 0000000..015c636 Binary files /dev/null and b/img/tiles/structure/blacksmith.png differ diff --git a/img/tiles/structure/castle_bottom.png b/img/tiles/structure/castle_bottom.png new file mode 100644 index 0000000..256b270 Binary files /dev/null and b/img/tiles/structure/castle_bottom.png differ diff --git a/img/tiles/structure/castle_top.png b/img/tiles/structure/castle_top.png new file mode 100644 index 0000000..c53530e Binary files /dev/null and b/img/tiles/structure/castle_top.png differ diff --git a/img/tiles/structure/church_bottom.png b/img/tiles/structure/church_bottom.png new file mode 100644 index 0000000..242b430 Binary files /dev/null and b/img/tiles/structure/church_bottom.png differ diff --git a/img/tiles/structure/church_top.png b/img/tiles/structure/church_top.png new file mode 100644 index 0000000..be519b1 Binary files /dev/null and b/img/tiles/structure/church_top.png differ diff --git a/img/tiles/structure/house.png b/img/tiles/structure/house.png new file mode 100644 index 0000000..0adb414 Binary files /dev/null and b/img/tiles/structure/house.png differ diff --git a/img/tiles/structure/house_long.png b/img/tiles/structure/house_long.png new file mode 100644 index 0000000..7be7f9a Binary files /dev/null and b/img/tiles/structure/house_long.png differ diff --git a/img/tiles/structure/house_with_stall.png b/img/tiles/structure/house_with_stall.png new file mode 100644 index 0000000..78a98c4 Binary files /dev/null and b/img/tiles/structure/house_with_stall.png differ diff --git a/img/tiles/structure/lifestock_bottom.png b/img/tiles/structure/lifestock_bottom.png new file mode 100644 index 0000000..6efa2bb Binary files /dev/null and b/img/tiles/structure/lifestock_bottom.png differ diff --git a/img/tiles/structure/lifestock_top.png b/img/tiles/structure/lifestock_top.png new file mode 100644 index 0000000..b5bf8f8 Binary files /dev/null and b/img/tiles/structure/lifestock_top.png differ diff --git a/img/tiles/structure/market_stand.png b/img/tiles/structure/market_stand.png new file mode 100644 index 0000000..1758ca4 Binary files /dev/null and b/img/tiles/structure/market_stand.png differ diff --git a/img/tiles/structure/mill_bottom.png b/img/tiles/structure/mill_bottom.png new file mode 100644 index 0000000..1ffc247 Binary files /dev/null and b/img/tiles/structure/mill_bottom.png differ diff --git a/img/tiles/structure/mill_top.png b/img/tiles/structure/mill_top.png new file mode 100644 index 0000000..1c33113 Binary files /dev/null and b/img/tiles/structure/mill_top.png differ diff --git a/img/tiles/structure/mill_top_alt.png b/img/tiles/structure/mill_top_alt.png new file mode 100644 index 0000000..a1f9f45 Binary files /dev/null and b/img/tiles/structure/mill_top_alt.png differ diff --git a/img/tiles/structure/mill_wheel_1.png b/img/tiles/structure/mill_wheel_1.png new file mode 100644 index 0000000..8789208 Binary files /dev/null and b/img/tiles/structure/mill_wheel_1.png differ diff --git a/img/tiles/structure/mill_wheel_2.png b/img/tiles/structure/mill_wheel_2.png new file mode 100644 index 0000000..7cefda1 Binary files /dev/null and b/img/tiles/structure/mill_wheel_2.png differ diff --git a/img/tiles/structure/mill_wheel_3.png b/img/tiles/structure/mill_wheel_3.png new file mode 100644 index 0000000..e480907 Binary files /dev/null and b/img/tiles/structure/mill_wheel_3.png differ diff --git a/img/tiles/structure/statue.png b/img/tiles/structure/statue.png new file mode 100644 index 0000000..de2c919 Binary files /dev/null and b/img/tiles/structure/statue.png differ diff --git a/img/tiles/structure/storage.png b/img/tiles/structure/storage.png new file mode 100644 index 0000000..e45898d Binary files /dev/null and b/img/tiles/structure/storage.png differ diff --git a/img/tiles/structure/tower_bottom.png b/img/tiles/structure/tower_bottom.png new file mode 100644 index 0000000..ad2c53d Binary files /dev/null and b/img/tiles/structure/tower_bottom.png differ diff --git a/img/tiles/structure/tower_top.png b/img/tiles/structure/tower_top.png new file mode 100644 index 0000000..fd1e1cb Binary files /dev/null and b/img/tiles/structure/tower_top.png differ diff --git a/img/tiles/structure/wide_house.png b/img/tiles/structure/wide_house.png new file mode 100644 index 0000000..11522d2 Binary files /dev/null and b/img/tiles/structure/wide_house.png differ diff --git a/img/tiles/trans.png b/img/tiles/trans.png new file mode 100644 index 0000000..aa8be12 Binary files /dev/null and b/img/tiles/trans.png differ diff --git a/index.html b/index.html index 722e1af..b711190 100644 --- a/index.html +++ b/index.html @@ -6,84 +6,119 @@ - - + +
-