├── .gitignore ├── LICENSE.md ├── README.md ├── css ├── brands.css ├── normalize.css ├── skeleton-auto.css ├── skeleton-dark.css └── skeleton-light.css ├── images ├── avatar.png ├── avatar@2x.png └── icons │ ├── bandcamp.svg │ ├── blog.svg │ ├── cashapp_btc.svg │ ├── cashapp_dollar.svg │ ├── cashapp_pound.svg │ ├── coffee.svg │ ├── discord.svg │ ├── email.svg │ ├── email_alt.svg │ ├── etsy.svg │ ├── facebook.svg │ ├── figma.svg │ ├── github.svg │ ├── gitlab.svg │ ├── goodreads.svg │ ├── instagram.svg │ ├── kickstarter.svg │ ├── kit.svg │ ├── linkedin.svg │ ├── littlelink.svg │ ├── mastodon.svg │ ├── medium.svg │ ├── messenger.svg │ ├── notion.svg │ ├── patreon.svg │ ├── paypal.svg │ ├── pinterest.svg │ ├── producthunt.svg │ ├── reddit.svg │ ├── signal.svg │ ├── skoob.svg │ ├── snapchat.svg │ ├── soundcloud.svg │ ├── spotify.svg │ ├── steam.svg │ ├── telegram.svg │ ├── tiktok.svg │ ├── trello.svg │ ├── tumblr.svg │ ├── twitch.svg │ ├── twitter.svg │ ├── venmo.svg │ ├── vimeo.svg │ ├── vrchat.svg │ ├── web.svg │ ├── whatsapp.svg │ ├── wordpress.svg │ ├── xing.svg │ └── youtube.svg └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | Copyright 2019-2021 Seth Cottle 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 5 | 6 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 7 | 8 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🔗 LittleLink Mono 2 | Made from the work of [KD Puvvadi](https://github.com/kdpuvvadi) and [Seth Cottle](https://github.com/sethcottle) 3 | 4 |
Click to see it live
5 | 6 | # About LittleLink (Mono) 7 | LittleLink is a lightweight DIY alternative to services like [Linktree](https://linktr.ee) 8 | and [many.link](https://many.link/). LittleLink was built using [Skeleton](http://getskeleton.com/), a dead simple, responsive boilerplate—we just stripped out some additional code you wouldn't need and added in branded styles for popular services. 😊 9 | 10 | LittleLink has more than 20 company button styles you can use and we'll be throwing more in soon. You'll also find a light and dark theme ready to go. Not a fan of the colors? Update `skeleton-light.css` or `skeleton-dark.css` to the HEX values of your choosing. You can also set your CSS to `skeleton-auto.css`, which will use the system theme of the device you visit on. 11 | 12 | Using [Skeleton](http://getskeleton.com/) let us build something that loads quickly & doesn't have any of the unnecessary bloat you would get from using a large framework for a page that requires nothing more than simplicity. LittleLink scored a 99/100 in performance when tested with [Google Lighthouse](https://developers.google.com/web/tools/lighthouse). 13 | -------------------------------------------------------------------------------- /css/brands.css: -------------------------------------------------------------------------------- 1 | /* 2 | * littlelink.io 3 | * Skeleton V2.0.4 4 | * Copyright 2014, Dave Gamache 5 | * www.getskeleton.com 6 | * Free to use under the MIT license. 7 | * http://www.opensource.org/licenses/mit-license.php 8 | * 12/29/2014 9 | */ 10 | 11 | /* 12 | * Built using on: 13 | * Skeleton V2.0.4 14 | * Copyright 2014, Dave Gamache 15 | * www.getskeleton.com 16 | * Free to use under the MIT license. 17 | * http://www.opensource.org/licenses/mit-license.php 18 | * 12/29/2014 19 | */ 20 | 21 | 22 | /* Table of contents 23 | –––––––––––––––––––––––––––––––––––––––––––––––––– 24 | 25 | - Rounded user avatars 26 | - Buttons 27 | - Brand Styles 28 | 29 | */ 30 | 31 | @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap'); 32 | 33 | :root { 34 | } 35 | 36 | body{ 37 | color: white !important; 38 | background-color: #202124 !important; 39 | text-rendering: optimizeLegibility; 40 | -webkit-font-smoothing: antialiased; 41 | display: flex; 42 | flex-direction: column; 43 | border-left: 0; 44 | border-right: 0; 45 | font-family: 'Roboto Mono', monospace !important; 46 | } 47 | 48 | /* Buttons 49 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 50 | 51 | .button, 52 | button { 53 | display: inline-block; 54 | margin-bottom: 20px; 55 | padding: 17px; 56 | font-size: 1rem; 57 | font-weight: 500; 58 | border-radius: 5px; 59 | border: dashed white 2px; 60 | text-decoration: none; 61 | color: white !important; 62 | word-wrap: break-word; 63 | width: 300px; 64 | } 65 | button:hover, 66 | .button:focus { 67 | color: #333; 68 | border-color: #888; 69 | outline: 0; } 70 | .button.button-primary { 71 | color: #FFF; 72 | filter: brightness(90%) } 73 | .button.button-primary:hover, 74 | .button.button-primary:focus { 75 | color: #FFF; 76 | filter: brightness(90%) } 77 | 78 | 79 | /* Brand Icons 80 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 81 | 82 | .icon { 83 | padding: 0px 8px 3.5px 0px; 84 | vertical-align: middle; 85 | width: 20px; 86 | height: 20px; 87 | -webkit-filter: grayscale(100%); 88 | -moz-filter: grayscale(100%); 89 | filter: grayscale(100%); 90 | } 91 | 92 | 93 | /* Brand Styles 94 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 95 | 96 | /* Added custom link button*/ 97 | .button.button-custom:hover, 98 | .button.button-custom:focus { 99 | filter: brightness(90%) } 100 | 101 | /* Default (this is great for your own brand color!) */ 102 | .button.button-default:hover, 103 | .button.button-default:focus { 104 | filter: brightness(90%) } 105 | 106 | /* VRChat */ 107 | .button.button-vrchat:hover, 108 | .button.button-vrchat:focus { 109 | filter: brightness(90%); 110 | } 111 | 112 | /* Discord */ 113 | .button.button-discord:hover, 114 | .button.button-discord:focus { 115 | filter: brightness(90%) } 116 | 117 | /* Facebook */ 118 | .button.button-facebook:hover, 119 | .button.button-facebook:focus { 120 | filter: brightness(90%) } 121 | 122 | /* Facebook Messenger */ 123 | .button.button-messenger:hover, 124 | .button.button-messenger:focus { 125 | filter: brightness(90%) } 126 | 127 | /* Figma */ 128 | .button.button-figma:hover, 129 | .button.button-figma:focus { 130 | filter: brightness(90%) } 131 | 132 | /* Github */ 133 | .button.button-github:hover, 134 | .button.button-github:focus { 135 | filter: brightness(90%) } 136 | 137 | /* Goodreads */ 138 | .button.button-goodreads:hover, 139 | .button.button-goodreads:focus { 140 | filter: brightness(90%) } 141 | 142 | /* Instagram */ 143 | .button.button-instagram:hover, 144 | .button.button-instagram:focus { 145 | filter: brightness(90%) } 146 | 147 | /* Kit */ 148 | .button.button-kit:hover, 149 | .button.button-kit:focus { 150 | filter: brightness(90%) } 151 | 152 | /* LinkedIn */ 153 | .button.button-linkedin:hover, 154 | .button.button-linkedin:focus { 155 | filter: brightness(90%) } 156 | 157 | /* Medium */ 158 | .button.button-medium:hover, 159 | .button.button-medium:focus { 160 | filter: brightness(90%) } 161 | 162 | /* Pinterest */ 163 | .button.button-pinterest:hover, 164 | .button.button-pinterest:focus { 165 | filter: brightness(90%) } 166 | 167 | /* Producthunt */ 168 | .button.button-producthunt:focus { 169 | filter: brightness(90%) } 170 | 171 | /* Reddit */ 172 | .button.button-reddit:hover, 173 | .button.button-reddit:focus { 174 | filter: brightness(90%) } 175 | 176 | /* Skoob */ 177 | .button.button-skoob:hover, 178 | .button.button-skoob:focus { 179 | filter: brightness(90%) } 180 | 181 | /* Snapchat */ 182 | .button.button-snapchat:hover, 183 | .button.button-snapchat:focus { 184 | filter: brightness(90%) } 185 | 186 | /* SoundCloud */ 187 | .button.button-soundcloud:hover, 188 | .button.button-soundcloud:focus { 189 | filter: brightness(90%) } 190 | 191 | /* Spotify */ 192 | .button.button-spotify:hover, 193 | .button.button-spotify:focus { 194 | filter: brightness(90%) } 195 | 196 | /* Steam */ 197 | .button.button-steam:hover, 198 | .button.button-steam:focus { 199 | filter: brightness(90%) } 200 | 201 | /* Telegram */ 202 | .button.button-telegram:hover, 203 | .button.button-telegram:focus { 204 | filter: brightness(90%) } 205 | 206 | /* TikTok */ 207 | .button.button-tiktok:hover, 208 | .button.button-tiktok:focus { 209 | filter: brightness(90%) } 210 | 211 | /* Tumblr */ 212 | .button.button-tumblr:hover, 213 | .button.button-tumblr:focus { 214 | filter: brightness(90%) } 215 | 216 | /* Twitch */ 217 | .button.button-twitch:hover, 218 | .button.button-twitch:focus { 219 | filter: brightness(90%) } 220 | 221 | /* Twitter */ 222 | .button.button-twitter:hover, 223 | .button.button-twitter:focus { 224 | filter: brightness(90%) } 225 | 226 | /* Vimeo */ 227 | .button.button-vimeo:hover, 228 | .button.button-vimeo:focus { 229 | filter: brightness(90%) } 230 | 231 | /* YouTube */ 232 | .button.button-youtube:hover, 233 | .button.button-youtube:focus { 234 | filter: brightness(90%) } 235 | 236 | /* Wordpress */ 237 | .button.button-wordpress:hover, 238 | .button.button-wordpress:focus { 239 | filter: brightness(90%) } 240 | 241 | /* Bandcamp */ 242 | .button.button-bandcamp:hover, 243 | .button.button-bandcamp:focus { 244 | filter: brightness(90%); 245 | } 246 | 247 | /* Patreon */ 248 | .button.button-patreon:hover, 249 | .button.button-patreon:focus { 250 | filter: brightness(90%); 251 | } 252 | 253 | /* Signal */ 254 | .button.button-signal:hover, 255 | .button.button-signal:focus { 256 | filter: brightness(90%); 257 | } 258 | 259 | /* Venmo */ 260 | .button.button-venmo:hover, 261 | .button.button-venmo:focus { 262 | filter: brightness(90%); 263 | } 264 | 265 | /* Cash App */ 266 | .button.button-cashapp:hover, 267 | .button.button-cashapp:focus { 268 | filter: brightness(90%); 269 | } 270 | 271 | /* Gitlab */ 272 | .button.button-gitlab:hover, 273 | .button.button-gitlab:focus { 274 | filter: brightness(90%); 275 | } 276 | 277 | /* Mastodon */ 278 | .button.button-mastodon:hover, 279 | .button.button-mastodon:focus { 280 | filter: brightness(90%); 281 | } 282 | 283 | /* PayPal */ 284 | .button.button-paypal:hover, 285 | .button.button-paypal:focus { 286 | filter: brightness(90%); 287 | } 288 | 289 | /* WhatsApp */ 290 | .button.button-whatsapp:hover, 291 | .button.button-whatsapp:focus { 292 | filter: brightness(90%); 293 | } 294 | 295 | /* Xing */ 296 | .button.button-xing:hover, 297 | .button.button-xing:focus { 298 | filter: brightness(90%); 299 | } 300 | 301 | /* Buy Me a Coffee */ 302 | .button.button-coffee:hover, 303 | .button.button-coffee:focus { 304 | filter: brightness(90%); 305 | } 306 | 307 | /* Website */ 308 | 309 | /* Custom Website */ 310 | 311 | 312 | .button.button-web:hover, 313 | .button.button-web:focus { 314 | filter: brightness(90%); 315 | } 316 | -------------------------------------------------------------------------------- /css/normalize.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v3.0.2 | MIT License | git.io/normalize */ 2 | 3 | /** 4 | * 1. Set default font family to sans-serif. 5 | * 2. Prevent iOS text size adjust after orientation change, without disabling 6 | * user zoom. 7 | */ 8 | 9 | html { 10 | font-family: sans-serif; /* 1 */ 11 | -ms-text-size-adjust: 100%; /* 2 */ 12 | -webkit-text-size-adjust: 100%; /* 2 */ 13 | } 14 | 15 | /** 16 | * Remove default margin. 17 | */ 18 | 19 | body { 20 | margin: 0; 21 | } 22 | 23 | /* HTML5 display definitions 24 | ========================================================================== */ 25 | 26 | /** 27 | * Correct `block` display not defined for any HTML5 element in IE 8/9. 28 | * Correct `block` display not defined for `details` or `summary` in IE 10/11 29 | * and Firefox. 30 | * Correct `block` display not defined for `main` in IE 11. 31 | */ 32 | 33 | article, 34 | aside, 35 | details, 36 | figcaption, 37 | figure, 38 | footer, 39 | header, 40 | hgroup, 41 | main, 42 | menu, 43 | nav, 44 | section, 45 | summary { 46 | display: block; 47 | } 48 | 49 | /** 50 | * 1. Correct `inline-block` display not defined in IE 8/9. 51 | * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. 52 | */ 53 | 54 | audio, 55 | canvas, 56 | progress, 57 | video { 58 | display: inline-block; /* 1 */ 59 | vertical-align: baseline; /* 2 */ 60 | } 61 | 62 | /** 63 | * Prevent modern browsers from displaying `audio` without controls. 64 | * Remove excess height in iOS 5 devices. 65 | */ 66 | 67 | audio:not([controls]) { 68 | display: none; 69 | height: 0; 70 | } 71 | 72 | /** 73 | * Address `[hidden]` styling not present in IE 8/9/10. 74 | * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. 75 | */ 76 | 77 | [hidden], 78 | template { 79 | display: none; 80 | } 81 | 82 | /* Links 83 | ========================================================================== */ 84 | 85 | /** 86 | * Remove the gray background color from active links in IE 10. 87 | */ 88 | 89 | a { 90 | background-color: transparent; 91 | } 92 | 93 | /** 94 | * Improve readability when focused and also mouse hovered in all browsers. 95 | */ 96 | 97 | a:active, 98 | a:hover { 99 | outline: 0; 100 | } 101 | 102 | /* Text-level semantics 103 | ========================================================================== */ 104 | 105 | /** 106 | * Address styling not present in IE 8/9/10/11, Safari, and Chrome. 107 | */ 108 | 109 | abbr[title] { 110 | border-bottom: 1px dotted; 111 | } 112 | 113 | /** 114 | * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. 115 | */ 116 | 117 | b, 118 | strong { 119 | font-weight: bold; 120 | } 121 | 122 | /** 123 | * Address styling not present in Safari and Chrome. 124 | */ 125 | 126 | dfn { 127 | font-style: italic; 128 | } 129 | 130 | /** 131 | * Address variable `h1` font-size and margin within `section` and `article` 132 | * contexts in Firefox 4+, Safari, and Chrome. 133 | */ 134 | 135 | h1 { 136 | font-size: 2em; 137 | margin: 0.67em 0; 138 | } 139 | 140 | /** 141 | * Address styling not present in IE 8/9. 142 | */ 143 | 144 | mark { 145 | background: #ff0; 146 | color: #000; 147 | } 148 | 149 | /** 150 | * Address inconsistent and variable font size in all browsers. 151 | */ 152 | 153 | small { 154 | font-size: 80%; 155 | } 156 | 157 | /** 158 | * Prevent `sub` and `sup` affecting `line-height` in all browsers. 159 | */ 160 | 161 | sub, 162 | sup { 163 | font-size: 75%; 164 | line-height: 0; 165 | position: relative; 166 | vertical-align: baseline; 167 | } 168 | 169 | sup { 170 | top: -0.5em; 171 | } 172 | 173 | sub { 174 | bottom: -0.25em; 175 | } 176 | 177 | /* Embedded content 178 | ========================================================================== */ 179 | 180 | /** 181 | * Remove border when inside `a` element in IE 8/9/10. 182 | */ 183 | 184 | img { 185 | border: 0; 186 | } 187 | 188 | /** 189 | * Correct overflow not hidden in IE 9/10/11. 190 | */ 191 | 192 | svg:not(:root) { 193 | overflow: hidden; 194 | } 195 | 196 | /* Grouping content 197 | ========================================================================== */ 198 | 199 | /** 200 | * Address margin not present in IE 8/9 and Safari. 201 | */ 202 | 203 | figure { 204 | margin: 1em 40px; 205 | } 206 | 207 | /** 208 | * Address differences between Firefox and other browsers. 209 | */ 210 | 211 | hr { 212 | -moz-box-sizing: content-box; 213 | box-sizing: content-box; 214 | height: 0; 215 | } 216 | 217 | /** 218 | * Contain overflow in all browsers. 219 | */ 220 | 221 | pre { 222 | overflow: auto; 223 | } 224 | 225 | /** 226 | * Address odd `em`-unit font size rendering in all browsers. 227 | */ 228 | 229 | code, 230 | kbd, 231 | pre, 232 | samp { 233 | font-family: monospace, monospace; 234 | font-size: 1em; 235 | } 236 | 237 | /* Forms 238 | ========================================================================== */ 239 | 240 | /** 241 | * Known limitation: by default, Chrome and Safari on OS X allow very limited 242 | * styling of `select`, unless a `border` property is set. 243 | */ 244 | 245 | /** 246 | * 1. Correct color not being inherited. 247 | * Known issue: affects color of disabled elements. 248 | * 2. Correct font properties not being inherited. 249 | * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. 250 | */ 251 | 252 | button, 253 | input, 254 | optgroup, 255 | select, 256 | textarea { 257 | color: inherit; /* 1 */ 258 | font: inherit; /* 2 */ 259 | margin: 0; /* 3 */ 260 | } 261 | 262 | /** 263 | * Address `overflow` set to `hidden` in IE 8/9/10/11. 264 | */ 265 | 266 | button { 267 | overflow: visible; 268 | } 269 | 270 | /** 271 | * Address inconsistent `text-transform` inheritance for `button` and `select`. 272 | * All other form control elements do not inherit `text-transform` values. 273 | * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. 274 | * Correct `select` style inheritance in Firefox. 275 | */ 276 | 277 | button, 278 | select { 279 | text-transform: none; 280 | } 281 | 282 | /** 283 | * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` 284 | * and `video` controls. 285 | * 2. Correct inability to style clickable `input` types in iOS. 286 | * 3. Improve usability and consistency of cursor style between image-type 287 | * `input` and others. 288 | */ 289 | 290 | button, 291 | html input[type="button"], /* 1 */ 292 | input[type="reset"], 293 | input[type="submit"] { 294 | -webkit-appearance: button; /* 2 */ 295 | cursor: pointer; /* 3 */ 296 | } 297 | 298 | /** 299 | * Re-set default cursor for disabled elements. 300 | */ 301 | 302 | button[disabled], 303 | html input[disabled] { 304 | cursor: default; 305 | } 306 | 307 | /** 308 | * Remove inner padding and border in Firefox 4+. 309 | */ 310 | 311 | button::-moz-focus-inner, 312 | input::-moz-focus-inner { 313 | border: 0; 314 | padding: 0; 315 | } 316 | 317 | /** 318 | * Address Firefox 4+ setting `line-height` on `input` using `!important` in 319 | * the UA stylesheet. 320 | */ 321 | 322 | input { 323 | line-height: normal; 324 | } 325 | 326 | /** 327 | * It's recommended that you don't attempt to style these elements. 328 | * Firefox's implementation doesn't respect box-sizing, padding, or width. 329 | * 330 | * 1. Address box sizing set to `content-box` in IE 8/9/10. 331 | * 2. Remove excess padding in IE 8/9/10. 332 | */ 333 | 334 | input[type="checkbox"], 335 | input[type="radio"] { 336 | box-sizing: border-box; /* 1 */ 337 | padding: 0; /* 2 */ 338 | } 339 | 340 | /** 341 | * Fix the cursor style for Chrome's increment/decrement buttons. For certain 342 | * `font-size` values of the `input`, it causes the cursor style of the 343 | * decrement button to change from `default` to `text`. 344 | */ 345 | 346 | input[type="number"]::-webkit-inner-spin-button, 347 | input[type="number"]::-webkit-outer-spin-button { 348 | height: auto; 349 | } 350 | 351 | /** 352 | * 1. Address `appearance` set to `searchfield` in Safari and Chrome. 353 | * 2. Address `box-sizing` set to `border-box` in Safari and Chrome 354 | * (include `-moz` to future-proof). 355 | */ 356 | 357 | input[type="search"] { 358 | -webkit-appearance: textfield; /* 1 */ 359 | -moz-box-sizing: content-box; 360 | -webkit-box-sizing: content-box; /* 2 */ 361 | box-sizing: content-box; 362 | } 363 | 364 | /** 365 | * Remove inner padding and search cancel button in Safari and Chrome on OS X. 366 | * Safari (but not Chrome) clips the cancel button when the search input has 367 | * padding (and `textfield` appearance). 368 | */ 369 | 370 | input[type="search"]::-webkit-search-cancel-button, 371 | input[type="search"]::-webkit-search-decoration { 372 | -webkit-appearance: none; 373 | } 374 | 375 | /** 376 | * Define consistent border, margin, and padding. 377 | */ 378 | 379 | fieldset { 380 | border: 1px solid #c0c0c0; 381 | margin: 0 2px; 382 | padding: 0.35em 0.625em 0.75em; 383 | } 384 | 385 | /** 386 | * 1. Correct `color` not being inherited in IE 8/9/10/11. 387 | * 2. Remove padding so people aren't caught out if they zero out fieldsets. 388 | */ 389 | 390 | legend { 391 | border: 0; /* 1 */ 392 | padding: 0; /* 2 */ 393 | } 394 | 395 | /** 396 | * Remove default vertical scrollbar in IE 8/9/10/11. 397 | */ 398 | 399 | textarea { 400 | overflow: auto; 401 | } 402 | 403 | /** 404 | * Don't inherit the `font-weight` (applied by a rule above). 405 | * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. 406 | */ 407 | 408 | optgroup { 409 | font-weight: bold; 410 | } 411 | 412 | /* Tables 413 | ========================================================================== */ 414 | 415 | /** 416 | * Remove most spacing between table cells. 417 | */ 418 | 419 | table { 420 | border-collapse: collapse; 421 | border-spacing: 0; 422 | } 423 | 424 | td, 425 | th { 426 | padding: 0; 427 | } 428 | -------------------------------------------------------------------------------- /css/skeleton-auto.css: -------------------------------------------------------------------------------- 1 | /* 2 | * littlelink V1 3 | * https://littlelink.com 4 | * Free to use under the MIT license. 5 | * http://www.opensource.org/licenses/mit-license.php 6 | * 12/21/2019 7 | * 8 | * Built using: 9 | * 10 | * Skeleton V2.0.4 11 | * Copyright 2014, Dave Gamache 12 | * www.getskeleton.com 13 | * Free to use under the MIT license. 14 | * http://www.opensource.org/licenses/mit-license.php 15 | * 12/29/2014 16 | */ 17 | 18 | /* Table of contents 19 | –––––––––––––––––––––––––––––––––––––––––––––––––– 20 | - Grid 21 | - Base Styles 22 | - Typography 23 | - Links 24 | - Code 25 | - Spacing 26 | - Utilities 27 | * 28 | * You'll find the button css in css/brands.css. 29 | * 30 | */ 31 | 32 | /* Grid 33 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 34 | .container { 35 | position: relative; 36 | width: 100%; 37 | max-width: 600px; 38 | text-align: center; 39 | margin: 0 auto; 40 | padding: 0 20px; 41 | box-sizing: border-box; 42 | } 43 | .column { 44 | position: center; 45 | width: 100%; 46 | float: center; 47 | box-sizing: border-box; 48 | } 49 | 50 | /* For devices larger than 400px */ 51 | @media (min-width: 400px) { 52 | .container { 53 | width: 85%; 54 | padding: 0; 55 | } 56 | } 57 | 58 | /* For devices larger than 550px */ 59 | @media (min-width: 550px) { 60 | .container { 61 | width: 80%; 62 | } 63 | .column, 64 | .columns { 65 | margin-left: 0; 66 | } 67 | .column:first-child, 68 | .columns:first-child { 69 | margin-left: 0; 70 | } 71 | } 72 | 73 | /* Base Styles 74 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 75 | /* NOTE 76 | html is set to 62.5% so that all the REM measurements throughout Skeleton 77 | are based on 10px sizing. So basically 1.5rem = 15px :) */ 78 | 79 | html { 80 | font-size: 100%; 81 | color-scheme: light dark; 82 | } 83 | body { 84 | font-size: 18px; 85 | line-height: 24px; 86 | font-weight: 400; 87 | font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, 88 | sans-serif; 89 | } 90 | 91 | /* Typography 92 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 93 | h1 { 94 | margin-top: 0; 95 | margin-bottom: 16px; 96 | font-weight: 800; 97 | } 98 | h1 { 99 | font-size: 24px; 100 | line-height: 64px; 101 | letter-spacing: 0; 102 | } 103 | 104 | /* Larger than phablet */ 105 | @media (min-width: 550px) { 106 | h1 { 107 | font-size: 48px; 108 | line-height: 96px; 109 | } 110 | } 111 | 112 | p { 113 | margin-top: 0; 114 | } 115 | 116 | /* Links 117 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 118 | a { 119 | color: #0085ff; 120 | } 121 | a:hover { 122 | color: #0085ff; 123 | } 124 | 125 | /* Code 126 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 127 | code { 128 | padding: 0.2rem 0.5rem; 129 | margin: 0 0.2rem; 130 | font-size: 90%; 131 | white-space: nowrap; 132 | background: #f1f1f1; 133 | border: 1px solid #e1e1e1; 134 | border-radius: 4px; 135 | } 136 | pre > code { 137 | display: block; 138 | padding: 1rem 1.5rem; 139 | white-space: pre; 140 | } 141 | 142 | /* Spacing 143 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 144 | button, 145 | .button { 146 | margin-bottom: 1rem; 147 | } 148 | input, 149 | textarea, 150 | select, 151 | fieldset { 152 | margin-bottom: 1.5rem; 153 | } 154 | pre, 155 | blockquote, 156 | dl, 157 | figure, 158 | p, 159 | ol { 160 | margin-bottom: 2.5rem; 161 | } 162 | 163 | /* Utilities 164 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 165 | .u-full-width { 166 | width: 100%; 167 | box-sizing: border-box; 168 | } 169 | .u-max-full-width { 170 | max-width: 100%; 171 | box-sizing: border-box; 172 | } 173 | .u-pull-right { 174 | float: right; 175 | } 176 | .u-pull-left { 177 | float: left; 178 | } 179 | 180 | /* Misc 181 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 182 | hr { 183 | margin-top: 3rem; 184 | margin-bottom: 3.5rem; 185 | border-width: 0; 186 | border-top: 1px solid #e1e1e1; 187 | } 188 | -------------------------------------------------------------------------------- /css/skeleton-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | * littlelink V1 3 | * https://littlelink.com 4 | * Free to use under the MIT license. 5 | * http://www.opensource.org/licenses/mit-license.php 6 | * 12/21/2019 7 | * 8 | * Built using: 9 | * 10 | * Skeleton V2.0.4 11 | * Copyright 2014, Dave Gamache 12 | * www.getskeleton.com 13 | * Free to use under the MIT license. 14 | * http://www.opensource.org/licenses/mit-license.php 15 | * 12/29/2014 16 | */ 17 | 18 | /* Table of contents 19 | –––––––––––––––––––––––––––––––––––––––––––––––––– 20 | - Grid 21 | - Base Styles 22 | - Typography 23 | - Links 24 | - Code 25 | - Spacing 26 | - Utilities 27 | * 28 | * You'll find the button css in css/brands.css. 29 | * 30 | */ 31 | 32 | /* Grid 33 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 34 | .container { 35 | position: relative; 36 | width: 100%; 37 | max-width: 600px; 38 | text-align: center; 39 | margin: 0 auto; 40 | padding: 0 20px; 41 | box-sizing: border-box; 42 | } 43 | .column { 44 | position: center; 45 | width: 100%; 46 | float: center; 47 | box-sizing: border-box; 48 | } 49 | 50 | /* For devices larger than 400px */ 51 | @media (min-width: 400px) { 52 | .container { 53 | width: 85%; 54 | padding: 0; 55 | } 56 | } 57 | 58 | /* For devices larger than 550px */ 59 | @media (min-width: 550px) { 60 | .container { 61 | width: 80%; 62 | } 63 | .column, 64 | .columns { 65 | margin-left: 0; 66 | } 67 | .column:first-child, 68 | .columns:first-child { 69 | margin-left: 0; 70 | } 71 | } 72 | 73 | /* Base Styles 74 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 75 | /* NOTE 76 | html is set to 62.5% so that all the REM measurements throughout Skeleton 77 | are based on 10px sizing. So basically 1.5rem = 15px :) */ 78 | 79 | html { 80 | font-size: 100%; 81 | color-scheme: dark; 82 | } 83 | body { 84 | font-size: 18px; 85 | line-height: 24px; 86 | font-weight: 400; 87 | font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, 88 | sans-serif; 89 | } 90 | 91 | /* Typography 92 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 93 | h1 { 94 | margin-top: 0; 95 | margin-bottom: 16px; 96 | font-weight: 800; 97 | } 98 | h1 { 99 | font-size: 24px; 100 | line-height: 64px; 101 | letter-spacing: 0; 102 | } 103 | 104 | /* Larger than phablet */ 105 | @media (min-width: 550px) { 106 | h1 { 107 | font-size: 48px; 108 | line-height: 96px; 109 | } 110 | } 111 | 112 | p { 113 | margin-top: 0; 114 | } 115 | 116 | /* Links 117 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 118 | a { 119 | color: #0085ff; 120 | } 121 | a:hover { 122 | color: #0085ff; 123 | } 124 | 125 | /* Code 126 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 127 | code { 128 | padding: 0.2rem 0.5rem; 129 | margin: 0 0.2rem; 130 | font-size: 90%; 131 | white-space: nowrap; 132 | background: #f1f1f1; 133 | border: 1px solid #e1e1e1; 134 | border-radius: 4px; 135 | } 136 | pre > code { 137 | display: block; 138 | padding: 1rem 1.5rem; 139 | white-space: pre; 140 | } 141 | 142 | /* Spacing 143 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 144 | button, 145 | .button { 146 | margin-bottom: 1rem; 147 | } 148 | input, 149 | textarea, 150 | select, 151 | fieldset { 152 | margin-bottom: 1.5rem; 153 | } 154 | pre, 155 | blockquote, 156 | dl, 157 | figure, 158 | p, 159 | ol { 160 | margin-bottom: 2.5rem; 161 | } 162 | 163 | /* Utilities 164 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 165 | .u-full-width { 166 | width: 100%; 167 | box-sizing: border-box; 168 | } 169 | .u-max-full-width { 170 | max-width: 100%; 171 | box-sizing: border-box; 172 | } 173 | .u-pull-right { 174 | float: right; 175 | } 176 | .u-pull-left { 177 | float: left; 178 | } 179 | 180 | /* Misc 181 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 182 | hr { 183 | margin-top: 3rem; 184 | margin-bottom: 3.5rem; 185 | border-width: 0; 186 | border-top: 1px solid #e1e1e1; 187 | } 188 | -------------------------------------------------------------------------------- /css/skeleton-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | * littlelink V1 3 | * https://littlelink.com 4 | * Free to use under the MIT license. 5 | * http://www.opensource.org/licenses/mit-license.php 6 | * 12/21/2019 7 | * 8 | * Built using: 9 | * 10 | * Skeleton V2.0.4 11 | * Copyright 2014, Dave Gamache 12 | * www.getskeleton.com 13 | * Free to use under the MIT license. 14 | * http://www.opensource.org/licenses/mit-license.php 15 | * 12/29/2014 16 | */ 17 | 18 | /* Table of contents 19 | –––––––––––––––––––––––––––––––––––––––––––––––––– 20 | - Grid 21 | - Base Styles 22 | - Typography 23 | - Links 24 | - Code 25 | - Spacing 26 | - Utilities 27 | * 28 | * You'll find the button css in css/brands.css. 29 | * 30 | */ 31 | 32 | /* Grid 33 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 34 | .container { 35 | position: relative; 36 | width: 100%; 37 | max-width: 600px; 38 | text-align: center; 39 | margin: 0 auto; 40 | padding: 0 20px; 41 | box-sizing: border-box; 42 | } 43 | .column { 44 | position: center; 45 | width: 100%; 46 | float: center; 47 | box-sizing: border-box; 48 | } 49 | 50 | /* For devices larger than 400px */ 51 | @media (min-width: 400px) { 52 | .container { 53 | width: 85%; 54 | padding: 0; 55 | } 56 | } 57 | 58 | /* For devices larger than 550px */ 59 | @media (min-width: 550px) { 60 | .container { 61 | width: 80%; 62 | } 63 | .column, 64 | .columns { 65 | margin-left: 0; 66 | } 67 | .column:first-child, 68 | .columns:first-child { 69 | margin-left: 0; 70 | } 71 | } 72 | 73 | /* Base Styles 74 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 75 | /* NOTE 76 | html is set to 62.5% so that all the REM measurements throughout Skeleton 77 | are based on 10px sizing. So basically 1.5rem = 15px :) */ 78 | 79 | html { 80 | font-size: 100%; 81 | color-scheme: light; 82 | } 83 | body { 84 | font-size: 18px; 85 | line-height: 24px; 86 | font-weight: 400; 87 | font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, 88 | sans-serif; 89 | } 90 | 91 | /* Typography 92 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 93 | h1 { 94 | margin-top: 0; 95 | margin-bottom: 16px; 96 | font-weight: 800; 97 | } 98 | h1 { 99 | font-size: 24px; 100 | line-height: 64px; 101 | letter-spacing: 0; 102 | } 103 | 104 | /* Larger than phablet */ 105 | @media (min-width: 550px) { 106 | h1 { 107 | font-size: 48px; 108 | line-height: 96px; 109 | } 110 | } 111 | 112 | p { 113 | margin-top: 0; 114 | } 115 | 116 | /* Links 117 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 118 | a { 119 | color: #0085ff; 120 | } 121 | a:hover { 122 | color: #0085ff; 123 | } 124 | 125 | /* Code 126 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 127 | code { 128 | padding: 0.2rem 0.5rem; 129 | margin: 0 0.2rem; 130 | font-size: 90%; 131 | white-space: nowrap; 132 | background: #f1f1f1; 133 | border: 1px solid #e1e1e1; 134 | border-radius: 4px; 135 | } 136 | pre > code { 137 | display: block; 138 | padding: 1rem 1.5rem; 139 | white-space: pre; 140 | } 141 | 142 | /* Spacing 143 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 144 | button, 145 | .button { 146 | margin-bottom: 1rem; 147 | } 148 | input, 149 | textarea, 150 | select, 151 | fieldset { 152 | margin-bottom: 1.5rem; 153 | } 154 | pre, 155 | blockquote, 156 | dl, 157 | figure, 158 | p, 159 | ol { 160 | margin-bottom: 2.5rem; 161 | } 162 | 163 | /* Utilities 164 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 165 | .u-full-width { 166 | width: 100%; 167 | box-sizing: border-box; 168 | } 169 | .u-max-full-width { 170 | max-width: 100%; 171 | box-sizing: border-box; 172 | } 173 | .u-pull-right { 174 | float: right; 175 | } 176 | .u-pull-left { 177 | float: left; 178 | } 179 | 180 | /* Misc 181 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 182 | hr { 183 | margin-top: 3rem; 184 | margin-bottom: 3.5rem; 185 | border-width: 0; 186 | border-top: 1px solid #e1e1e1; 187 | } 188 | -------------------------------------------------------------------------------- /images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkStackOrg/littlelink-mono/f54d45b89518e5de4b6a8215da6282dbf9613bea/images/avatar.png -------------------------------------------------------------------------------- /images/avatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkStackOrg/littlelink-mono/f54d45b89518e5de4b6a8215da6282dbf9613bea/images/avatar@2x.png -------------------------------------------------------------------------------- /images/icons/bandcamp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /images/icons/blog.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 32 | 33 | 37 | 38 | -------------------------------------------------------------------------------- /images/icons/cashapp_btc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /images/icons/cashapp_dollar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /images/icons/cashapp_pound.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /images/icons/coffee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/discord.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/icons/email.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/icons/email_alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/icons/etsy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/icons/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/figma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /images/icons/github.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/icons/gitlab.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 35 | 36 | 37 | 39 | 41 | 43 | 45 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 1x 57 | 58 | 59 | 1x 60 | 61 | 62 | 1x 63 | 64 | 65 | 66 | 1x 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /images/icons/goodreads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/instagram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/icons/kickstarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /images/icons/kit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /images/icons/linkedin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/littlelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/icons/mastodon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /images/icons/medium.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /images/icons/messenger.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/icons/notion.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /images/icons/patreon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /images/icons/paypal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 15 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /images/icons/pinterest.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /images/icons/producthunt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /images/icons/reddit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /images/icons/signal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /images/icons/skoob.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/snapchat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /images/icons/soundcloud.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/icons/spotify.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/steam.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/telegram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/tiktok.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /images/icons/trello.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/tumblr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/twitch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /images/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /images/icons/venmo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /images/icons/vimeo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /images/icons/vrchat.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/icons/web.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/whatsapp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /images/icons/wordpress.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/icons/xing.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /images/icons/youtube.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | LittleLink Mono 10 | 11 | 12 | 13 | 15 | 16 | 17 | 19 | 20 | 21 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 41 |
42 |
43 |
44 | 45 | 62 | 63 | 64 | LittleLink Logo 65 | 66 | 67 |

LittleLink Mono

68 | 69 | 70 |

LittleLink Mono is an open source DIY alternative to services like Linktree and many.link. LittleLink Mono was built using Skeleton, a dead simple, responsive boilerplate—we've just created some branded buttons and stripped out the things you won't need. 😊

71 | 72 | 97 | 98 | 99 | GitHub LogoGitHub 101 |
102 | 103 | 104 | Twitter LogoTwitter 106 |
107 | 108 | 109 | Instagram LogoInstagram 111 |
112 | 113 | 114 | Facebook LogoFind us on Facebook 116 |
117 | 118 | 119 | Facebook Messenger LogoChat on Messenger 121 |
122 | 123 | 124 | LinkedIn LogoLinkedIn 126 |
127 | 128 | 129 | YouTube LogoYouTube 131 |
132 | 133 | 134 | Discord LogoDiscord 136 |
137 | 138 | 139 | Twitch LogoTwitch 141 |
142 | 143 | 144 | Product Hunt LogoProduct Hunt 146 |
147 | 148 | 149 | Snapchat LogoSnapchat 151 |
152 | 153 | 154 | Spotify LogoSpotify 156 |
157 | 158 | 159 | Reddit LogoReddit 161 |
162 | 163 | 164 | Mastodon LogoMastodon 166 |
167 | 168 | 169 | Medium LogoMedium 171 |
172 | 173 | 174 | Pinterest LogoFollow on Pinterest 176 |
177 | 178 | 179 | TikTok LogoTikTok 181 |
182 | 183 | 184 | Email Iconinfo@llc.social 186 |
187 | 188 | 189 | Email Iconinfo@llc.social 191 |
192 | 193 | 194 | Blog IconBlog 196 |
197 | 198 | 199 | SoundCloud LogoSoundCloud 201 |
202 | 203 | 204 | Figma LogoFigma 206 |
207 | 208 | 209 | Kit LogoKit 211 |
212 | 213 | 214 | Telegram LogoTelegram 216 |
217 | 218 | 219 | LittleLink LogoLittleLink 221 |
222 | 223 | 224 | Trello LogoTrello 226 |
227 | 228 | 229 | Notion LogoNotion 231 |
232 | 233 | 234 | Kickstarter LogoKickstarter 236 |
237 | 238 | 239 | Etsy LogoEtsy 241 |
242 | 243 | 244 | Tumblr LogoTumblr 246 |
247 | 248 | 249 | Steam LogoSteam 251 |
252 | 253 | 254 | Vimeo LogoVimeo 256 |
257 | 258 | 259 | PayPal LogoPayPal 261 |
262 | 263 | 264 | WhatsApp LogoWhatsApp 266 |
267 | 268 | 269 | Wordpress LogoWordpress 271 |
272 | 273 | 274 | Goodreads LogoGoodreads 276 |
277 | 278 | 279 | Skoob LogoSkoob 281 |
282 | 283 | 284 | GitLab LogoGitLab 286 |
287 | 288 | 289 | xing LogoXing 291 |
292 | 293 | 294 | Bandcamp LogoBandcamp 296 |
297 | 298 | 299 | Patreon LogoPatreon 301 |
302 | 303 | 304 | Signal LogoSignal 306 |
307 | 308 | 309 | Venmo LogoVenmo 311 |
312 | 313 | 314 | Cash App LogoCash App Dollar 316 |
317 | 318 | 319 | Cash App LogoCash App Pound 321 |
322 | 323 | 324 | Cash App LogoCash App Bitcoin 326 |
327 | 328 | 329 | Web LogoWebsite 331 |
332 | 333 | 334 | Buy Me a CoffeeBuy Me a Coffee 336 |
337 | 338 | 339 | VRChat LogoVRChat 341 |
342 | 343 |
344 |

Build your own by forking LittleLink Mono.

345 | 346 |
347 |
348 |
349 | 350 | 352 | 353 | 354 | 355 | --------------------------------------------------------------------------------