├── plantie ├── res │ ├── five.jpg │ ├── one.jpg │ ├── two.jpg │ ├── four_3.jpg │ └── one_2.jpg ├── sample 2.png ├── icons │ ├── facebook-fill.svg │ ├── facebook-fill-black.svg │ ├── arrow-right-alt-rounded.svg │ ├── instagram-logo.svg │ ├── instagram-black.svg │ ├── leaf-outline.svg │ ├── twitter.svg │ └── twitter-black.svg ├── app.js ├── index.html └── style.css └── README.md /plantie/res/five.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungaaaabungaaa/Plantie/HEAD/plantie/res/five.jpg -------------------------------------------------------------------------------- /plantie/res/one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungaaaabungaaa/Plantie/HEAD/plantie/res/one.jpg -------------------------------------------------------------------------------- /plantie/res/two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungaaaabungaaa/Plantie/HEAD/plantie/res/two.jpg -------------------------------------------------------------------------------- /plantie/sample 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungaaaabungaaa/Plantie/HEAD/plantie/sample 2.png -------------------------------------------------------------------------------- /plantie/res/four_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungaaaabungaaa/Plantie/HEAD/plantie/res/four_3.jpg -------------------------------------------------------------------------------- /plantie/res/one_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungaaaabungaaa/Plantie/HEAD/plantie/res/one_2.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Plantie 2 | simple demo website showcasing grid usage 3 | ### inspried from pintrest 4 |  5 | -------------------------------------------------------------------------------- /plantie/icons/facebook-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plantie/icons/facebook-fill-black.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plantie/icons/arrow-right-alt-rounded.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plantie/icons/instagram-logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plantie/icons/instagram-black.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plantie/icons/leaf-outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plantie/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plantie/icons/twitter-black.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plantie/app.js: -------------------------------------------------------------------------------- 1 | let map; 2 | 3 | function initMap() { 4 | map = new google.maps.Map(document.getElementById("map"), { 5 | center: { lat: 37.419857, lng: -122.078827 }, 6 | zoom: 8, 7 | styles:[ 8 | { 9 | "featureType": "all", 10 | "elementType": "geometry.fill", 11 | "stylers": [ 12 | { 13 | "visibility": "on" 14 | } 15 | ] 16 | }, 17 | { 18 | "featureType": "all", 19 | "elementType": "labels.text", 20 | "stylers": [ 21 | { 22 | "visibility": "off" 23 | } 24 | ] 25 | }, 26 | { 27 | "featureType": "administrative", 28 | "elementType": "all", 29 | "stylers": [ 30 | { 31 | "visibility": "off" 32 | } 33 | ] 34 | }, 35 | { 36 | "featureType": "landscape", 37 | "elementType": "all", 38 | "stylers": [ 39 | { 40 | "color": "#e9e0da" 41 | }, 42 | { 43 | "visibility": "off" 44 | } 45 | ] 46 | }, 47 | { 48 | "featureType": "landscape.man_made", 49 | "elementType": "geometry.fill", 50 | "stylers": [ 51 | { 52 | "color": "#e9e0da" 53 | }, 54 | { 55 | "visibility": "on" 56 | } 57 | ] 58 | }, 59 | { 60 | "featureType": "landscape.natural", 61 | "elementType": "geometry.fill", 62 | "stylers": [ 63 | { 64 | "color": "#e9e0da" 65 | }, 66 | { 67 | "visibility": "on" 68 | } 69 | ] 70 | }, 71 | { 72 | "featureType": "poi", 73 | "elementType": "labels.icon", 74 | "stylers": [ 75 | { 76 | "visibility": "off" 77 | } 78 | ] 79 | }, 80 | { 81 | "featureType": "poi.attraction", 82 | "elementType": "all", 83 | "stylers": [ 84 | { 85 | "visibility": "off" 86 | } 87 | ] 88 | }, 89 | { 90 | "featureType": "poi.business", 91 | "elementType": "all", 92 | "stylers": [ 93 | { 94 | "visibility": "off" 95 | } 96 | ] 97 | }, 98 | { 99 | "featureType": "poi.government", 100 | "elementType": "geometry", 101 | "stylers": [ 102 | { 103 | "visibility": "off" 104 | } 105 | ] 106 | }, 107 | { 108 | "featureType": "poi.medical", 109 | "elementType": "all", 110 | "stylers": [ 111 | { 112 | "visibility": "off" 113 | } 114 | ] 115 | }, 116 | { 117 | "featureType": "poi.park", 118 | "elementType": "all", 119 | "stylers": [ 120 | { 121 | "color": "#b8cf78" 122 | }, 123 | { 124 | "saturation": "19" 125 | }, 126 | { 127 | "lightness": "-16" 128 | } 129 | ] 130 | }, 131 | { 132 | "featureType": "poi.park", 133 | "elementType": "labels.icon", 134 | "stylers": [ 135 | { 136 | "visibility": "off" 137 | } 138 | ] 139 | }, 140 | { 141 | "featureType": "poi.place_of_worship", 142 | "elementType": "all", 143 | "stylers": [ 144 | { 145 | "visibility": "off" 146 | } 147 | ] 148 | }, 149 | { 150 | "featureType": "poi.school", 151 | "elementType": "all", 152 | "stylers": [ 153 | { 154 | "visibility": "off" 155 | } 156 | ] 157 | }, 158 | { 159 | "featureType": "poi.sports_complex", 160 | "elementType": "all", 161 | "stylers": [ 162 | { 163 | "visibility": "off" 164 | } 165 | ] 166 | }, 167 | { 168 | "featureType": "poi.sports_complex", 169 | "elementType": "geometry", 170 | "stylers": [ 171 | { 172 | "color": "#c7c7c7" 173 | }, 174 | { 175 | "visibility": "off" 176 | } 177 | ] 178 | }, 179 | { 180 | "featureType": "road", 181 | "elementType": "all", 182 | "stylers": [ 183 | { 184 | "color": "#ffffff" 185 | } 186 | ] 187 | }, 188 | { 189 | "featureType": "road", 190 | "elementType": "labels", 191 | "stylers": [ 192 | { 193 | "visibility": "off" 194 | } 195 | ] 196 | }, 197 | { 198 | "featureType": "road.highway", 199 | "elementType": "geometry", 200 | "stylers": [ 201 | { 202 | "color": "#ffffff" 203 | }, 204 | { 205 | "visibility": "simplified" 206 | } 207 | ] 208 | }, 209 | { 210 | "featureType": "road.highway", 211 | "elementType": "labels.icon", 212 | "stylers": [ 213 | { 214 | "color": "#ffffff" 215 | }, 216 | { 217 | "visibility": "off" 218 | } 219 | ] 220 | }, 221 | { 222 | "featureType": "road.arterial", 223 | "elementType": "all", 224 | "stylers": [ 225 | { 226 | "visibility": "simplified" 227 | }, 228 | { 229 | "color": "#ffffff" 230 | } 231 | ] 232 | }, 233 | { 234 | "featureType": "road.arterial", 235 | "elementType": "geometry", 236 | "stylers": [ 237 | { 238 | "visibility": "simplified" 239 | } 240 | ] 241 | }, 242 | { 243 | "featureType": "road.local", 244 | "elementType": "all", 245 | "stylers": [ 246 | { 247 | "color": "#ffffff" 248 | }, 249 | { 250 | "visibility": "simplified" 251 | } 252 | ] 253 | }, 254 | { 255 | "featureType": "road.local", 256 | "elementType": "geometry", 257 | "stylers": [ 258 | { 259 | "visibility": "on" 260 | } 261 | ] 262 | }, 263 | { 264 | "featureType": "transit", 265 | "elementType": "all", 266 | "stylers": [ 267 | { 268 | "visibility": "off" 269 | } 270 | ] 271 | }, 272 | { 273 | "featureType": "water", 274 | "elementType": "all", 275 | "stylers": [ 276 | { 277 | "color": "#84bde9" 278 | } 279 | ] 280 | } 281 | ] 282 | }); 283 | } 284 | 285 | window.initMap = initMap; -------------------------------------------------------------------------------- /plantie/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |The history of the black roes fascinating flower was used during the Victoria Era.
50 | fascinating flower was used as a symbol.
51 | during the Victoria Era. the black rose.
52 |
The history of the black roes fascinating flower was used during the Victoria Era.
64 | fascinating flower was used as a symbol.
65 | during the Victoria Era. the black rose.
66 |
contacts
76 |Visit us
78 |
79 | 4501 Sarah Drive,Lafayette
Louisiana 70501
United States
80 |
E-mail.
82 |83 | lomag98352@rubeshi.com 84 |
85 |Phone
86 |87 | 337-502-9726 88 |
89 |The history of the black roes fascinating flower was used during the Victoria Era.
103 | fascinating flower was used as a symbol.
104 | during the Victoria Era. the black rose.
105 |
116 | The history of the black roes fascinating flower was used during the Victoria Era.
120 | The history of the black roes fascinating flower was used during the Victoria Era.
121 | The history of the black roes fascinating flower was used during the Victoria Era.
122 |
The history of the black roes fascinating flower was used during the Victoria Era.
126 | The history of the black roes fascinating flower was used during the Victoria Era.
127 | The history of the black roes fascinating flower was used during the Victoria Era.
128 |