Log into your Twitter account. 101 | Navigate to Settings → Account → Content. 102 |
103 | 104 |Next, click "Request your archive". You will be emailed by Twitter when the download is 105 | ready.
106 | 107 |├── .gitignore ├── css ├── main.css ├── main_responsive.css └── reset.css ├── fonts ├── avantgardelt-extralight.eot ├── avantgardelt-extralight.svg ├── avantgardelt-extralight.ttf ├── avantgardelt-extralight.woff ├── lato-bold.eot ├── lato-bold.ttf ├── lato-bold.woff ├── lato-regular.eot ├── lato-regular.ttf └── lato-regular.woff ├── img ├── appnet.png ├── billboard.jpg ├── billboard1.jpg ├── downloading.png ├── ello.png ├── evernote.png ├── facebook.png ├── flickr.png ├── foursquare.png ├── geo.png ├── google-plus.png ├── icon.png ├── instagram.png ├── known.png ├── known_logo.png ├── linkedin.png ├── logo.png ├── medium.png ├── menu_icon.png ├── pinterest.png ├── sm.png ├── sm_hover.png ├── tumblr.png ├── tw-screen.png └── twitter.png ├── index.html └── js ├── carouFredSel.js ├── jquery.js ├── main.js └── simple-expand.js /.gitignore: -------------------------------------------------------------------------------- 1 | .elasticbeanstalk/ 2 | 3 | .idea/ -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Template Author : pixelhint.com 4 | Author Email : contact@pixelhint.com 5 | Template Name : Crafty 6 | 7 | 8 | ***************************************** 9 | 10 | 11 | - Header 12 | - Billboard 13 | - Services 14 | - Video 15 | - Recent Work 16 | - Subscription 17 | - Social Media Icons 18 | - Footer 19 | - Subsciption pop-up 20 | 21 | */ 22 | 23 | 24 | 25 | /* Fonts */ 26 | @font-face { 27 | font-family: 'lato_regular'; 28 | src: url('../fonts/lato-regular.eot'); 29 | src: url('../fonts/lato-regular.eot?#iefix') format('embedded-opentype'), 30 | url('../fonts/lato-regular.woff') format('woff'), 31 | url('../fonts/lato-regular.ttf') format('truetype'), 32 | /*url('../fonts/lato-regular.svg#LatoRegular') format('svg');*/ 33 | font-weight: normal; 34 | font-style: normal; 35 | 36 | } 37 | 38 | 39 | @font-face { 40 | font-family: 'lato_bold'; 41 | src: url('../fonts/lato-bold.eot'); 42 | src: url('../fonts/lato-bold.eot?#iefix') format('embedded-opentype'), 43 | url('../fonts/lato-bold.woff') format('woff'), 44 | url('../fonts/lato-bold.ttf') format('truetype'), 45 | /*url('../fonts/lato-bold.svg#LatoBold') format('svg');*/ 46 | font-weight: normal; 47 | font-style: normal; 48 | 49 | } 50 | 51 | 52 | 53 | 54 | @font-face { 55 | font-family: 'avantgardelt-extralight'; 56 | src: url('../fonts/avantgardelt-extralight.eot'); 57 | src: url('../fonts/avantgardelt-extralight.eot?#iefix') format('embedded-opentype'), 58 | url('../fonts/avantgardelt-extralight.woff') format('woff'), 59 | url('../fonts/avantgardelt-extralight.ttf') format('truetype'), 60 | url('../fonts/avantgardelt-extralight.svg#avantgardelt-extralight') format('svg'); 61 | font-weight: normal; 62 | font-style: normal; 63 | 64 | } 65 | 66 | 67 | /* General CSS*/ 68 | .wrapper{ 69 | width: 1200px; 70 | height: auto; 71 | margin: 0 auto; 72 | position: relative; 73 | } 74 | 75 | 76 | .feature a, 77 | .cta a.cta_btn, 78 | .testimonials #t_navigation a{ 79 | transition:all .2s linear; 80 | -webkit-transition:all .2s linear; 81 | -moz-transition:all .2s linear; 82 | -o-transition:all .2s linear; 83 | } 84 | 85 | 86 | 87 | /* header */ 88 | header{ 89 | width: 100%; 90 | height: 80px; 91 | background: #353434; 92 | } 93 | 94 | header .logo{ 95 | float: left; 96 | margin-top: 21px; 97 | } 98 | 99 | header nav{ 100 | overflow: hidden; 101 | display: inline-block; 102 | margin: 20px 0 0 40px; 103 | padding: 13px 40px; 104 | border-left: 1px #404040 solid; 105 | } 106 | 107 | header nav ul{ 108 | list-style: none; 109 | } 110 | 111 | header nav ul li{ 112 | float: left; 113 | margin-left: 35px; 114 | font-size: 16px; 115 | font-family: 'lato_regular', arial; 116 | letter-spacing: 1px; 117 | } 118 | 119 | header nav ul li:first-child{ 120 | margin-left: 0; 121 | } 122 | 123 | header nav ul li a { 124 | text-decoration: none; 125 | color: #fff; 126 | } 127 | 128 | header ul.social{ 129 | float: right; 130 | list-style: none; 131 | margin-top: 23px; 132 | } 133 | 134 | header ul.social li{ 135 | float: left; 136 | margin-left: 10px; 137 | } 138 | 139 | header ul.social li a{ 140 | display: block; 141 | width: 35px; 142 | height: 35px; 143 | background: url('../img/sm.png') no-repeat; 144 | } 145 | 146 | header ul.social li a{ 147 | display: block; 148 | width: 35px; 149 | height: 35px; 150 | } 151 | 152 | header ul.social li a.fb{ 153 | background-position: 0 0; 154 | } 155 | 156 | header ul.social li a.twitter{ 157 | background-position: -36px 0; 158 | } 159 | 160 | header ul.social li a.gplus{ 161 | background-position: -72px 0; 162 | } 163 | 164 | 165 | 166 | 167 | /* Billboard */ 168 | .billboard{ 169 | width: 100%; 170 | height: 580px; 171 | background: url("../img/billboard.jpg") no-repeat center center; 172 | background-size: cover; 173 | -webkit-background-size: cover; 174 | -moz-background-size: cover; 175 | -o-background-size: cover; 176 | overflow: hidden; 177 | } 178 | 179 | .billboard .caption{ 180 | margin-left: 515px; 181 | margin-top: 220px; 182 | } 183 | 184 | .billboard .caption p{ 185 | display: inline-block; 186 | color: #000; 187 | font-family: "avantgardelt-extralight", arial; 188 | font-weight: lighter; 189 | font-size: 35px; 190 | padding: 20px; 191 | background: rgba(255, 255, 255, 0.6); 192 | margin-bottom: 2px; 193 | text-transform: uppercase; 194 | } 195 | 196 | 197 | 198 | 199 | /* Services/features */ 200 | .features{ 201 | width: 100%; 202 | padding: 100px 0; 203 | background: #f7f7f7; 204 | } 205 | 206 | .features .row{ 207 | margin-bottom: 100px; 208 | overflow: hidden; 209 | } 210 | 211 | .features .row:last-child{ 212 | margin-bottom: 0; 213 | } 214 | 215 | .features .row .feature:last-child{ 216 | margin-right: 0; 217 | } 218 | 219 | .features .feature{ 220 | display: block; 221 | width: 346px; 222 | height: auto; 223 | float: left; 224 | margin-right: 80px; 225 | } 226 | 227 | .feature .ficon{ 228 | display: block; 229 | width: 65px; 230 | float: left; 231 | margin-right: 40px; 232 | } 233 | 234 | .feature .details_exp{ 235 | display: block; 236 | width: 240px; 237 | float: left; 238 | } 239 | 240 | .feature h3{ 241 | margin-bottom: 20px; 242 | color: #767575; 243 | font-family: "lato_bold", arial; 244 | font-size: 22px; 245 | font-weight: bold; 246 | letter-spacing: 1px; 247 | 248 | } 249 | 250 | .feature p{ 251 | margin-bottom: 20px; 252 | color: #9e9e9e; 253 | font-family: "lato_regular", arial; 254 | font-size: 15px; 255 | line-height: 22px; 256 | 257 | } 258 | 259 | .feature a{ 260 | color: #848484; 261 | font-family: "lato_regular", arial; 262 | font-size: 15px; 263 | text-decoration: none; 264 | letter-spacing: .5px; 265 | } 266 | 267 | .feature a:hover{ 268 | color: #353434; 269 | } 270 | 271 | .feature a span{ 272 | font-family: arial; 273 | margin-left: 10px; 274 | } 275 | 276 | 277 | 278 | 279 | 280 | /* testimonials */ 281 | .testimonials{ 282 | text-align: center; 283 | } 284 | 285 | .testimonials h2{ 286 | color: #4e4e4e; 287 | font-family: "lato_regular", arial; 288 | font-size: 26px; 289 | text-transform: uppercase; 290 | margin-bottom: 80px; 291 | letter-spacing: 1px; 292 | } 293 | 294 | .caroufredsel_wrapper{ 295 | margin: 0 auto!important; 296 | } 297 | 298 | .testimonials .testi_slider,{ 299 | width: 1040px; 300 | overflow: hidden; 301 | } 302 | 303 | .testimonials .testi_slider .t{ 304 | width: 1040px; 305 | text-align: center; 306 | float: left; 307 | } 308 | 309 | .testimonials p{ 310 | color: #8e8d8d; 311 | font-family: "lato_regular", arial; 312 | font-size: 20px; 313 | line-height: 30px; 314 | letter-spacing: 1px; 315 | } 316 | 317 | .testimonials p.author{ 318 | color: #686767; 319 | font-family: "lato_bold", arial; 320 | font-size: 16px; 321 | font-weight: bold; 322 | margin-top: 40px; 323 | } 324 | 325 | .testimonials #t_navigation a{ 326 | display: inline-block; 327 | width: 13px; 328 | height: 13px; 329 | background: #dadada; 330 | text-decoration: none; 331 | margin-right: 10px; 332 | margin-top: 40px; 333 | 334 | border-radius: 100px; 335 | -webkit-border-radius: 100px; 336 | -moz-border-radius: 100px; 337 | -o-border-radius: 100px; 338 | } 339 | 340 | .testimonials #t_navigation a.selected{ 341 | background: #bebebe; 342 | } 343 | 344 | .sep_line{ 345 | display: inline-block; 346 | text-align: center; 347 | width: 13px; 348 | height: 100px; 349 | } 350 | 351 | .sep_line:after{ 352 | content: ""; 353 | display: block; 354 | width: 1px; 355 | height: 100%; 356 | background: #dedede; 357 | margin-left: 6px; 358 | } 359 | 360 | .sep_top{ 361 | border-bottom: 1px #dedede solid; 362 | margin-bottom: 40px 363 | } 364 | 365 | .sep_bottom{ 366 | border-top: 1px #dedede solid; 367 | margin-top: 40px 368 | } 369 | 370 | 371 | 372 | 373 | 374 | 375 | /* Info section */ 376 | .info{ 377 | width: 100%; 378 | overflow: hidden; 379 | } 380 | 381 | .info_pic{ 382 | display: block; 383 | width: 50%; 384 | height: 405px; 385 | float: left; 386 | 387 | background-size: cover; 388 | -webkit-background-size: cover; 389 | -moz-background-size: cover; 390 | -o-background-size: cover; 391 | } 392 | 393 | .info_details{ 394 | display: block; 395 | width: 50%; 396 | height: 245px; 397 | float: left; 398 | background: #3b3b3b; 399 | padding: 80px 0; 400 | } 401 | 402 | .info_details h3{ 403 | color: #fff; 404 | font-family: "lato_bold", arial; 405 | font-size: 30px; 406 | font-weight: bold; 407 | font-weight: bold; 408 | text-transform: uppercase; 409 | max-width: 560px; 410 | margin: 0 0 40px 40px; 411 | letter-spacing: 1px; 412 | line-height: 40px; 413 | } 414 | 415 | .info_details p{ 416 | color: #ededed; 417 | font-family: "lato_regular", arial; 418 | font-size: 16px; 419 | max-width: 560px; 420 | margin: 0 0 40px 40px; 421 | letter-spacing: 1px; 422 | line-height: 30px; 423 | } 424 | 425 | .info_details a{ 426 | color: #fff; 427 | font-family: "lato_regular", arial; 428 | font-size: 16px; 429 | margin: 0 0 0 40px; 430 | text-decoration: none; 431 | } 432 | 433 | .info_details a span{ 434 | margin-left: 10px; 435 | } 436 | 437 | 438 | 439 | 440 | 441 | 442 | /* Take To Action section */ 443 | .cta{ 444 | text-align: center; 445 | padding-top: 100px; 446 | } 447 | 448 | .cta h3{ 449 | color: #6b6b6b; 450 | font-family: "lato_bold", arial; 451 | font-size: 34px; 452 | font-weight: bold; 453 | text-transform: uppercase; 454 | letter-spacing: 1px; 455 | } 456 | 457 | .cta p{ 458 | color: #7f7c7c; 459 | font-family: "lato_regular", arial; 460 | font-size: 17px; 461 | margin-top: 20px; 462 | letter-spacing: .5px; 463 | } 464 | 465 | .cta a.cta_btn{ 466 | display: inline-block; 467 | padding: 20px 60px; 468 | background-color: #65bf95; 469 | color: #fff; 470 | font-family: "lato_regular", arial; 471 | font-size: 20px; 472 | text-decoration: none; 473 | margin-top: 60px; 474 | text-transform: uppercase; 475 | letter-spacing: 1px; 476 | 477 | 478 | -moz-border-radius: 1px; 479 | -webkit-border-radius: 1px; 480 | border-radius: 1px; 481 | 482 | } 483 | 484 | .cta a.cta_btn:hover{ 485 | background: #56b086; 486 | } 487 | 488 | .cta .cta_sep{ 489 | display: block; 490 | width: 1px; 491 | height: 100px; 492 | background: #dedede; 493 | margin: 0 auto; 494 | } 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | /* footer */ 503 | footer{ 504 | padding: 100px 0; 505 | border-top: 1px #dedede solid; 506 | background: #f7f7f7; 507 | text-align: center; 508 | } 509 | 510 | footer .rights{ 511 | color: #3b3b3b; 512 | font-family: "lato_regular", arial; 513 | font-size: 14px; 514 | margin-top: 30px; 515 | line-height: 25px; 516 | } 517 | 518 | footer .rights a{ 519 | text-decoration: none; 520 | font-family: 'lato_bold', arial; 521 | font-weight: bold; 522 | color: #3b3b3b; 523 | } 524 | 525 | a{ 526 | color: #3b3b3b; 527 | } 528 | 529 | 530 | 531 | ::selection {color:#ffffff;background:#353434;} 532 | ::-moz-selection {color:#ffffff;background:#353434;} -------------------------------------------------------------------------------- /css/main_responsive.css: -------------------------------------------------------------------------------- 1 | 2 | /* Fonts */ 3 | @font-face { 4 | font-family: 'lato_regular'; 5 | src: url('../fonts/lato-regular.eot'); 6 | src: url('../fonts/lato-regular.eot?#iefix') format('embedded-opentype'), 7 | url('../fonts/lato-regular.woff') format('woff'), 8 | url('../fonts/lato-regular.ttf') format('truetype'), 9 | /*url('../fonts/lato-regular.svg#LatoRegular') format('svg');*/ 10 | font-weight: normal; 11 | font-style: normal; 12 | 13 | } 14 | 15 | 16 | @font-face { 17 | font-family: 'lato_bold'; 18 | src: url('../fonts/lato-bold.eot'); 19 | src: url('../fonts/lato-bold.eot?#iefix') format('embedded-opentype'), 20 | url('../fonts/lato-bold.woff') format('woff'), 21 | url('../fonts/lato-bold.ttf') format('truetype'), 22 | /*url('../fonts/lato-bold.svg#LatoBold') format('svg');*/ 23 | font-weight: normal; 24 | font-style: normal; 25 | 26 | } 27 | 28 | 29 | @font-face { 30 | font-family: 'avantgardelt-extralight'; 31 | src: url('../fonts/avantgardelt-extralight.eot'); 32 | src: url('../fonts/avantgardelt-extralight.eot?#iefix') format('embedded-opentype'), 33 | url('../fonts/avantgardelt-extralight.woff') format('woff'), 34 | url('../fonts/avantgardelt-extralight.ttf') format('truetype'), 35 | url('../fonts/avantgardelt-extralight.svg#avantgardelt-extralight') format('svg'); 36 | font-weight: normal; 37 | font-style: normal; 38 | 39 | } 40 | 41 | 42 | 43 | 44 | /* General CSS*/ 45 | .wrapper{ 46 | max-width: 1200px; 47 | height: auto; 48 | margin: 0 auto; 49 | position: relative; 50 | } 51 | 52 | ::selection {color:#ffffff;background:#353434;} 53 | ::-moz-selection {color:#ffffff;background:#353434;} 54 | 55 | .feature a, 56 | .cta a.cta_btn, 57 | .testimonials #t_navigation a, 58 | header ul.social li a, 59 | header nav ul li a{ 60 | transition:all .2s linear; 61 | -webkit-transition:all .2s linear; 62 | -moz-transition:all .2s linear; 63 | -o-transition:all .2s linear; 64 | } 65 | 66 | 67 | 68 | 69 | /* header */ 70 | header{ 71 | width: 100%; 72 | height: 80px; 73 | background: #357ebd; 74 | } 75 | 76 | header .logo{ 77 | float: left; 78 | margin-top: 21px; 79 | } 80 | 81 | header .menu_icon{ 82 | display: block; 83 | width: 35px; 84 | height: 35px; 85 | background: url('../img/menu_icon.png') no-repeat; 86 | float: right; 87 | margin-top: 23px; 88 | display: none; 89 | } 90 | 91 | header nav{ 92 | overflow: hidden; 93 | display: inline-block; 94 | margin: 20px 0 0 40px; 95 | padding: 13px 40px; 96 | border-left: 1px #404040 solid; 97 | z-index: 9999; 98 | } 99 | 100 | header nav ul{ 101 | list-style: none; 102 | } 103 | 104 | header nav ul li{ 105 | float: left; 106 | margin-left: 35px; 107 | font-size: 16px; 108 | font-family: 'lato_regular', arial; 109 | letter-spacing: 1px; 110 | } 111 | 112 | header nav ul li:first-child{ 113 | margin-left: 0; 114 | } 115 | 116 | header nav ul li a { 117 | text-decoration: none; 118 | color: #fff; 119 | } 120 | 121 | header nav ul li a:hover{ 122 | color: #65bf95; 123 | } 124 | 125 | header ul.social{ 126 | float: right; 127 | list-style: none; 128 | margin-top: 23px; 129 | } 130 | 131 | header ul.social li{ 132 | float: left; 133 | margin-left: 10px; 134 | } 135 | 136 | header ul.social li a{ 137 | display: block; 138 | width: 35px; 139 | height: 35px; 140 | background: url('../img/sm.png') no-repeat; 141 | } 142 | 143 | header ul.social li a:hover{ 144 | background: url('../img/sm_hover.png') no-repeat; 145 | } 146 | 147 | header ul.social li a{ 148 | display: block; 149 | width: 35px; 150 | height: 35px; 151 | } 152 | 153 | header ul.social li a.fb{ 154 | background-position: 0 0; 155 | } 156 | 157 | header ul.social li a.twitter{ 158 | background-position: -36px 0; 159 | } 160 | 161 | header ul.social li a.gplus{ 162 | background-position: -72px 0; 163 | } 164 | 165 | 166 | 167 | 168 | /* Billboard */ 169 | .billboard{ 170 | width: 100%; 171 | height: 100%; 172 | /* background: url("../img/billboard.jpg") no-repeat center center;*/ 173 | background: url("../img/geo.png") repeat; 174 | /* background-size: cover; 175 | -webkit-background-size: cover; 176 | -moz-background-size: cover; 177 | -o-background-size: cover;*/ 178 | overflow: hidden; 179 | } 180 | 181 | .billboard .caption{ 182 | margin-top: 40px; 183 | margin-bottom: 50px; 184 | text-align: center; 185 | } 186 | 187 | .billboard .caption p{ 188 | display: inline-block; 189 | color: #333; 190 | font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif; 191 | font-size: 35px; 192 | padding: 20px; 193 | background: rgba(221, 221, 221, 0.6); 194 | margin-bottom: 2px; 195 | text-transform: uppercase; 196 | z-index: 8888; 197 | } 198 | 199 | 200 | 201 | 202 | /* Services/features */ 203 | .features{ 204 | width: 100%; 205 | padding-top: 40px; 206 | background: #f7f7f7; 207 | overflow: hidden; 208 | } 209 | 210 | .features .feature{ 211 | display: block; 212 | width: 28.83333333333333%; 213 | height: auto; 214 | float: left; 215 | margin-right: 6.666666666666667%; 216 | margin-bottom: 100px; 217 | } 218 | 219 | .features .feature:nth-child(3n+0) 220 | { 221 | margin-right: 0; 222 | } 223 | 224 | .feature .ficon{ 225 | display: block; 226 | width: 18.78612716763006%; 227 | float: left; 228 | margin-right: 11.5606936416185%; 229 | } 230 | 231 | .feature .details_exp{ 232 | display: block; 233 | width: 69.36416184971098%; 234 | float: left; 235 | } 236 | 237 | .feature h3{ 238 | margin-bottom: 20px; 239 | color: #333333; 240 | font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif; 241 | font-size: 22px; 242 | font-weight: lighter; 243 | letter-spacing: 1px; 244 | 245 | } 246 | 247 | .feature p{ 248 | margin-bottom: 20px; 249 | color: #535353; 250 | font-family: "lato_regular", arial; 251 | font-size: 0.9em; 252 | line-height: 22px; 253 | 254 | } 255 | 256 | .feature a{ 257 | color: #73b2e3; 258 | font-family: "lato_regular", arial; 259 | font-size: 15px; 260 | text-decoration: none; 261 | letter-spacing: .5px; 262 | } 263 | 264 | .feature a:hover{ 265 | color: #4c93cb; 266 | } 267 | 268 | .feature a span{ 269 | font-family: arial; 270 | margin-left: 10px; 271 | } 272 | 273 | 274 | 275 | 276 | /* Testimonials */ 277 | .testimonials{ 278 | text-align: center; 279 | } 280 | 281 | .testimonials h2{ 282 | color: #4e4e4e; 283 | font-family: "lato_regular", arial; 284 | font-size: 26px; 285 | text-transform: uppercase; 286 | margin-bottom: 80px; 287 | letter-spacing: 1px; 288 | } 289 | 290 | .caroufredsel_wrapper{ 291 | max-width: 1040px!important; 292 | margin: 0 auto!important; 293 | } 294 | 295 | .testimonials .testi_slider{ 296 | max-width: 1040px!important; 297 | height: auto; 298 | overflow: hidden; 299 | } 300 | 301 | .testimonials .testi_slider .t{ 302 | max-width: 1040px!important; 303 | text-align: center; 304 | float: left; 305 | height: auto; 306 | } 307 | 308 | .testimonials p{ 309 | color: #8e8d8d; 310 | font-family: "lato_regular", arial; 311 | font-size: 20px; 312 | line-height: 30px; 313 | letter-spacing: 1px; 314 | } 315 | 316 | .testimonials p.author{ 317 | color: #686767; 318 | font-family: "lato_bold", arial; 319 | font-size: 16px; 320 | font-weight: bold; 321 | margin-top: 40px; 322 | } 323 | 324 | .testimonials #t_navigation a{ 325 | display: inline-block; 326 | width: 13px; 327 | height: 13px; 328 | background: #dadada; 329 | text-decoration: none; 330 | margin-right: 10px; 331 | margin-top: 40px; 332 | 333 | border-radius: 100px; 334 | -webkit-border-radius: 100px; 335 | -moz-border-radius: 100px; 336 | -o-border-radius: 100px; 337 | } 338 | 339 | .testimonials #t_navigation a.selected{ 340 | background: #bebebe; 341 | } 342 | 343 | .sep_line{ 344 | display: block; 345 | width: 13.5px; 346 | height: 100px; 347 | } 348 | 349 | .sep_line:after{ 350 | content: ""; 351 | display: block; 352 | width: 1px; 353 | height: 100%; 354 | background: #dedede; 355 | margin: 0 auto; 356 | } 357 | 358 | .sep_top{ 359 | border-bottom: 1px #dedede solid; 360 | margin: 0 auto 40px auto; 361 | } 362 | 363 | .sep_bottom{ 364 | border-top: 1px #dedede solid; 365 | margin: 40px auto 0 auto; 366 | } 367 | 368 | 369 | 370 | 371 | /* Info Section */ 372 | .info{ 373 | width: 100%; 374 | overflow: hidden; 375 | background: #3b3b3b; 376 | } 377 | 378 | .info_pic{ 379 | display: block; 380 | width: 50%; 381 | height: 405px; 382 | float: left; 383 | 384 | background-size: cover; 385 | -webkit-background-size: cover; 386 | -moz-background-size: cover; 387 | -o-background-size: cover; 388 | } 389 | 390 | .info_details{ 391 | display: block; 392 | float: center; 393 | padding: 50px 0; 394 | } 395 | 396 | .info_details h3{ 397 | color: #fff; 398 | font-family: "lato_bold", arial; 399 | font-size: 30px; 400 | font-weight: lighter; 401 | text-transform: uppercase; 402 | max-width: 100%; 403 | margin-left: 20%; 404 | margin-right: 20%; 405 | margin-top: 30px; 406 | letter-spacing: 1px; 407 | line-height: 40px; 408 | text-align: center; 409 | } 410 | 411 | .info_details p{ 412 | color: #ededed; 413 | font-family: "lato_regular", arial; 414 | font-size: 18px; 415 | max-width: 100%; 416 | margin-left: 20%; 417 | margin-right: 20%; 418 | margin-top: 15px; 419 | letter-spacing: 1px; 420 | line-height: 20px; 421 | text-align: center; 422 | } 423 | 424 | .info_details a{ 425 | color: #73b2e3; 426 | font-family: "lato_regular", arial; 427 | font-size: 16px; 428 | margin: 0 0 0 0px; 429 | } 430 | 431 | .info_details a:hover{ 432 | color:#4c93cb; 433 | } 434 | 435 | .info_details a span{ 436 | margin-left: 10px; 437 | } 438 | 439 | 440 | 441 | 442 | /* Call To Action Section */ 443 | .cta{ 444 | display: block; 445 | text-align: center; 446 | padding-top: 50px; 447 | padding-bottom: 30px; 448 | } 449 | 450 | .cta h3{ 451 | color: #6b6b6b; 452 | font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif; 453 | font-size: 34px; 454 | font-weight: lighter; 455 | letter-spacing: 1px; 456 | margin-bottom: 20px; 457 | margin-top: -20px; 458 | } 459 | 460 | .cta p{ 461 | color: #7f7c7c; 462 | font-family: "lato_regular", arial; 463 | font-size: 17px; 464 | margin-top: 10px; 465 | letter-spacing: .5px; 466 | } 467 | 468 | .cta a.cta_btn{ 469 | display: inline-block; 470 | padding: 20px 80px; 471 | background-color: #8cbf99; 472 | color: #fff; 473 | font-family: "lato_regular", arial; 474 | font-size: 20px; 475 | text-decoration: none; 476 | margin-top: 20px; 477 | text-transform: uppercase; 478 | letter-spacing: 1px; 479 | 480 | 481 | -moz-border-radius: 1px; 482 | -webkit-border-radius: 1px; 483 | border-radius: 1px; 484 | 485 | } 486 | 487 | .cta a.cta_btn:hover{ 488 | background: #70997a; 489 | } 490 | 491 | .cta a.cta_btn_no{ 492 | display: inline-block; 493 | padding: 20px 80px; 494 | background-color: #666666; 495 | color: #fff; 496 | font-family: "lato_regular", arial; 497 | font-size: 20px; 498 | text-decoration: none; 499 | margin-top: 20px; 500 | text-transform: uppercase; 501 | letter-spacing: 1px; 502 | 503 | 504 | -moz-border-radius: 1px; 505 | -webkit-border-radius: 1px; 506 | border-radius: 1px; 507 | 508 | } 509 | 510 | .cta .cta_sep{ 511 | display: block; 512 | width: 1px; 513 | height: 100px; 514 | background: #dedede; 515 | margin: 0 auto; 516 | } 517 | 518 | 519 | 520 | 521 | /* Footer */ 522 | footer{ 523 | padding: 100px 0; 524 | border-top: 1px #dedede solid; 525 | background: #f7f7f7; 526 | text-align: center; 527 | } 528 | 529 | footer .rights{ 530 | color: #3b3b3b; 531 | font-family: "lato_regular", arial; 532 | font-size: 14px; 533 | margin-top: 10px; 534 | line-height: 10px; 535 | } 536 | 537 | footer .rights a{ 538 | text-decoration: none; 539 | font-family: 'lato_bold', arial; 540 | font-weight: bold; 541 | color: #3b3b3b; 542 | } 543 | 544 | a{ 545 | color: #3b3b3b; 546 | } 547 | 548 | 549 | 550 | 551 | /* Responsive code */ 552 | @media (max-width:1200px){ 553 | .wrapper{ 554 | padding: 0 40px; 555 | } 556 | .info_pic, 557 | .info_details{ 558 | width: 100%; 559 | } 560 | 561 | .info_details{ 562 | height: auto; 563 | padding: 40px 0; 564 | } 565 | 566 | .info_details h3, 567 | .info_details p, 568 | .info_details a{ 569 | max-width: 80%; 570 | display: block; 571 | text-align: center; 572 | margin: 40px auto; 573 | } 574 | } 575 | 576 | 577 | @media (max-width:1000px){ 578 | .billboard .caption{ 579 | text-align: center; 580 | margin-left: 0; 581 | } 582 | .cta{ 583 | width: 80%; 584 | margin: 0 auto; 585 | } 586 | } 587 | 588 | 589 | @media (max-width:800px){ 590 | header .logo{ 591 | float: none; 592 | } 593 | 594 | header .menu_icon{ 595 | display: block; 596 | } 597 | 598 | ul.social{ 599 | display: none; 600 | } 601 | 602 | header nav{ 603 | display: block; 604 | background: #353434; 605 | margin: 21px 0 0 0; 606 | padding: 0; 607 | border-left: 0; 608 | border-top: 1px #2c2c2c solid; 609 | overflow: hidden; 610 | text-align: center; 611 | position: relative; 612 | z-index: 9999; 613 | display: none; 614 | } 615 | header nav{ 616 | border-bottom-left-radius: 2px; 617 | -webkit-border-bottom-left-radius: 2px; 618 | -moz-border-bottom-left-radius: 2px; 619 | -o-border-bottom-left-radius: 2px; 620 | border-bottom-right-radius: 2px; 621 | -webkit-border-bottom-right-radius: 2px; 622 | -moz-border-bottom-right-radius: 2px; 623 | -o-border-bottom-right-radius: 2px; 624 | } 625 | header nav.show_menu{ 626 | display: block; 627 | } 628 | header nav ul li{ 629 | margin: 0; 630 | width: 100%; 631 | border-bottom: 1px #2c2c2c solid; 632 | } 633 | header nav ul li:last-child{ 634 | border-bottom: 0; 635 | } 636 | header nav ul li a{ 637 | display: block; 638 | width: 100%; 639 | padding: 20px 0; 640 | } 641 | header nav ul li a:active{ 642 | display: block; 643 | width: 100%; 644 | padding: 20px 0; 645 | background: #2c2c2c; 646 | } 647 | 648 | .features .feature{ 649 | width: 46.66666666666667%; 650 | margin-right: 6.666666666666667%!important; 651 | } 652 | .features .feature:nth-child(2n+2) 653 | { 654 | margin-right: 0!important; 655 | } 656 | } 657 | 658 | @media (max-width:500px){ 659 | 660 | .features .feature{ 661 | width: 100%; 662 | margin-right: 0!important; 663 | } 664 | 665 | } 666 | 667 | /* Extra */ 668 | 669 | .content { 670 | display:none; 671 | padding-top: 1em; 672 | } 673 | 674 | .frame { 675 | background-color: #d0e2f5; 676 | border-radius: 2px; 677 | padding: 10px; 678 | width: 100%; 679 | } 680 | 681 | .subscription-signup { 682 | margin-bottom: 0.5em; 683 | width: 60%; 684 | } 685 | 686 | input, button, select, textarea { 687 | font-family: inherit; 688 | font-size: inherit; 689 | line-height: inherit; 690 | } 691 | 692 | .features h1, .info_details h1 { 693 | color: #fff; 694 | font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif; 695 | font-size: 42px; 696 | font-weight: 600; 697 | letter-spacing: 1px; 698 | margin-bottom: 20px; 699 | text-align: center; 700 | margin-bottom: 40px; 701 | text-transform: uppercase; 702 | } 703 | 704 | form { 705 | text-align: center; 706 | } 707 | 708 | form input[type=email] { 709 | width: 50%; 710 | padding: 0.25em !important; 711 | font-size: 1.2em; 712 | font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif; 713 | } 714 | 715 | form input[type=submit] { 716 | font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif; 717 | width: 150px; 718 | padding: 5px; 719 | border-radius: 5px; 720 | background-color: #eee; 721 | border: 0; 722 | } -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- 1 | html, body, div, span, object, iframe, 2 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 3 | abbr, address, cite, code, 4 | del, dfn, em, img, ins, kbd, q, samp, 5 | small, strong, sub, sup, var, 6 | b, i, 7 | dl, dt, dd, ol, ul, li, 8 | fieldset, form, label, legend, 9 | table, caption, tbody, tfoot, thead, tr, th, td, 10 | article, aside, canvas, details, figcaption, figure, 11 | footer, header, hgroup, menu, nav, section, summary, 12 | time, mark, audio, video { 13 | margin:0; 14 | padding:0; 15 | border:0; 16 | outline:0; 17 | font-size:100%; 18 | vertical-align:baseline; 19 | background:transparent; 20 | } 21 | 22 | body { 23 | line-height:1; 24 | } 25 | 26 | img{ 27 | max-width: 100%; 28 | } 29 | 30 | article,aside,details,figcaption,figure, 31 | footer,header,hgroup,menu,nav,section { 32 | display:block; 33 | } 34 | 35 | nav ul { 36 | list-style:none; 37 | } 38 | 39 | blockquote, q { 40 | quotes:none; 41 | } 42 | 43 | blockquote:before, blockquote:after, 44 | q:before, q:after { 45 | content:''; 46 | content:none; 47 | } 48 | 49 | a { 50 | margin:0; 51 | padding:0; 52 | font-size:100%; 53 | vertical-align:baseline; 54 | background:transparent; 55 | color: #ffffff; 56 | } 57 | 58 | /* change colours to suit your needs */ 59 | ins { 60 | background-color:#ff9; 61 | color:#000; 62 | text-decoration:none; 63 | } 64 | 65 | /* change colours to suit your needs */ 66 | mark { 67 | background-color:#ff9; 68 | color:#000; 69 | font-style:italic; 70 | font-weight:bold; 71 | } 72 | 73 | del { 74 | text-decoration: line-through; 75 | } 76 | 77 | abbr[title], dfn[title] { 78 | border-bottom:1px dotted; 79 | cursor:help; 80 | } 81 | 82 | table { 83 | border-collapse:collapse; 84 | border-spacing:0; 85 | } 86 | 87 | /* change border colour to suit your needs */ 88 | hr { 89 | display:block; 90 | height:1px; 91 | border:0; 92 | border-top:1px solid #cccccc; 93 | margin:1em 0; 94 | padding:0; 95 | } 96 | 97 | input, select { 98 | vertical-align:middle; 99 | } -------------------------------------------------------------------------------- /fonts/avantgardelt-extralight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/avantgardelt-extralight.eot -------------------------------------------------------------------------------- /fonts/avantgardelt-extralight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /fonts/avantgardelt-extralight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/avantgardelt-extralight.ttf -------------------------------------------------------------------------------- /fonts/avantgardelt-extralight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/avantgardelt-extralight.woff -------------------------------------------------------------------------------- /fonts/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/lato-bold.eot -------------------------------------------------------------------------------- /fonts/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/lato-bold.ttf -------------------------------------------------------------------------------- /fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/lato-bold.woff -------------------------------------------------------------------------------- /fonts/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/lato-regular.eot -------------------------------------------------------------------------------- /fonts/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/lato-regular.ttf -------------------------------------------------------------------------------- /fonts/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/fonts/lato-regular.woff -------------------------------------------------------------------------------- /img/appnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/appnet.png -------------------------------------------------------------------------------- /img/billboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/billboard.jpg -------------------------------------------------------------------------------- /img/billboard1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/billboard1.jpg -------------------------------------------------------------------------------- /img/downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/downloading.png -------------------------------------------------------------------------------- /img/ello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/ello.png -------------------------------------------------------------------------------- /img/evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/evernote.png -------------------------------------------------------------------------------- /img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/facebook.png -------------------------------------------------------------------------------- /img/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/flickr.png -------------------------------------------------------------------------------- /img/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/foursquare.png -------------------------------------------------------------------------------- /img/geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/geo.png -------------------------------------------------------------------------------- /img/google-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/google-plus.png -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/icon.png -------------------------------------------------------------------------------- /img/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/instagram.png -------------------------------------------------------------------------------- /img/known.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/known.png -------------------------------------------------------------------------------- /img/known_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/known_logo.png -------------------------------------------------------------------------------- /img/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/linkedin.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/logo.png -------------------------------------------------------------------------------- /img/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/medium.png -------------------------------------------------------------------------------- /img/menu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/menu_icon.png -------------------------------------------------------------------------------- /img/pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/pinterest.png -------------------------------------------------------------------------------- /img/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/sm.png -------------------------------------------------------------------------------- /img/sm_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/sm_hover.png -------------------------------------------------------------------------------- /img/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/tumblr.png -------------------------------------------------------------------------------- /img/tw-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/tw-screen.png -------------------------------------------------------------------------------- /img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idno/FreeMyData/1185fe5b5480f4f087a118cc7929db37866c678c/img/twitter.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Social networks don't last forever.
65 | 66 |Don't let your content get lost.
67 |You publish content, photos, thoughts, and memories online every day. Don't throw it all away.
76 | 77 |We created this directory so that you have an easy reference when you want to archive and backup your digital 78 | life.
79 | 80 |The information below will help you export your data directly from the social network or website.
81 | 83 |Twitter will let you download an archive of all of your tweets, retweets, and Twitter images.
96 | 97 | Twitter instructions 98 | 99 |Log into your Twitter account. 101 | Navigate to Settings → Account → Content. 102 |
103 | 104 |Next, click "Request your archive". You will be emailed by Twitter when the download is 105 | ready.
106 | 107 |Facebook will let you download a copy of your posts, photos, videos, messages, and more.
123 | Facebook instructions 124 | 125 |Log into your Facebook account. 127 | Navigate to Settings → General Account Settings.
128 | 129 |At the bottom of the page is a link to "Download a copy of your Facebook data".
130 |Instagram doesn't currently provide a way to download an archive of your photos and your account data.
145 |LinkedIn will let you download a data archive with your account history, activity, and more.
159 | LinkedIn instructions 160 | 161 |Log into your LinkedIn account. 163 | Navigate to Privacy & Settings and then choose the Account tab.
164 | 165 |Next click "Request an archive of your data" under the Helpful Links header.
166 |Foursquare makes feeds available for importing your check-in history into other platforms.
182 | Foursquare instructions 183 | 184 |Log into your Foursquare account, and navigate to the feeds 186 | page.
187 | 188 |Choosing the ICS or GCAL formats will let you import your full check-in history into your calendar.
189 | 190 |Choosing the RSS or KML formats will let you use the data with widgets and applications like 191 | Wordpress.
192 |Flickr doesn't provide a way to download your photos. You may be able to use a third-party app.
208 |Tumblr doesn't currently a way to download an archive of your posts and account data.
222 |With the desktop application for Evernote, you can download your Notes and Notebooks.
236 | Evernote instructions 237 | 238 |At this time, Evernote does not allow you to export your data from the web client.
240 | 241 |On Mac:
242 | 243 |Export a Note by selecting the note and choosing File → Export Note. Then 244 | select the format, either Evernote XML Format or HTML.
245 | 246 |Export all notes in notebooks by selecting Notebook and choosing File → Export All 247 | Notebooks. Then select the format, either Evernote XML Format or HTML.
248 | 249 |On Windows:
250 | 251 |Export a Note by selecting the note and choosing File → Export Note. Then 252 | select the format, either Evernote XML Format or HTML.
253 | 254 |Export a notebook by right-clicking on a Notebook and choosing File → Export 255 | Notebook. Then select the format, either Evernote XML Format or HTML.
256 |Pinterest doesn't currently provide a way to download an archive of your pins and account data.
272 |App.net will let you export all of your data, including posts, channels, messages, and your profile.
286 | App.net instructions 287 | 288 |Log into your App.net account and navigate to Settings and then select Your 290 | Content.
291 | 292 |Next click "Data Export." You will receive an email with your archive when it's ready.
293 |Google will allow you to export Google+ information like your profile, stream, +1s, and circles.
308 | Google+ instructions 309 | 310 |Google Takeout provides exports of many Google services, including data associated with 312 | Google+. Once you're logged into your Google account and navigated to Takeout, you'll see that all 313 | products have been selected for download.
314 | 315 |If you just want to download data associated with your Google+ account, select Profile, Hangouts, Google+ 316 | Circles, Google+ Stream, +1s, and Google Photos.
317 | 318 |Select "Next" and then choose the file type and the delivery method (either email or to your Drive).
319 |Ello doesn't currently provide a way to download an archive of your posts and profile.
334 |Known will let you export all of your data, including posts, pictures, updates, and more.
348 | Known instructions 349 | 350 |Log into your Known website and go to Configure Your Site and then select Export 352 | Data.
353 | 354 |Next click the "Start Exporting Your Data" link. When the export is done generating, the page will 355 | update, and you'll be able to download the link to all of your content.
356 |Medium will allow you to export all of your posts.
371 |Log into your Medium account. From the left bar, navigate to Settings.
377 | 378 |Scroll down the page and select "Export content." You will be able to download a .zip file with your 379 | content.
380 |You have profiles, memories, and priceless information stored online, but websites, social networks, and 406 | other applications don’t last forever. Don’t lose your digital memories.
407 | 408 |Maybe you’re downloading your data and preparing to delete your account on a social network. Perhaps you just 409 | want to grab a copy of your digital life and keep it in a safe space offline. We created this directory so 410 | that you have an easy resource to turn to when you want to export your data from the different sites that 411 | you use.
412 | 413 |We’ll continue to update the site with new services and details as they become available. To stay up to date, 414 | follow us on Twitter or check out our blog. If you want to report an issue or an update, find us on 416 | Github.
417 | 418 |t |