├── Templates ├── DeepSea │ ├── .DS_Store │ ├── assets │ │ ├── .DS_Store │ │ └── deepSea.png │ ├── index.html │ └── style.css ├── NyanCat │ ├── .DS_Store │ ├── cat.png │ ├── favicon.ico │ ├── rainbowcat.gif │ ├── nyanCatBackground.png │ ├── index.js │ ├── index.html │ ├── readme.md │ └── style.css ├── Pride │ ├── favicon.ico │ ├── index.js │ ├── index.html │ ├── style.css │ └── readme.md ├── SunMoon │ ├── .DS_Store │ ├── assets │ │ ├── imagens │ │ │ ├── favicon.png │ │ │ └── perfil.jpg │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── js │ │ │ └── script.js │ │ └── css │ │ │ └── style.css │ └── index.html ├── Journal │ ├── favicon.ico │ ├── index.js │ ├── index.html │ ├── style.css │ └── readme.md ├── Music │ ├── square-01.png │ ├── title-01.png │ ├── index.html │ └── style.css ├── Neon │ ├── screenshot.png │ ├── images │ │ ├── profile-image.jpg │ │ └── background-image.jpg │ ├── README.md │ ├── style.css │ └── index.html ├── Nightmare │ ├── nmbc.jpg │ ├── pumpkin.png │ ├── index.html │ └── style.css ├── 3D Theme │ ├── preview.png │ ├── README.md │ ├── index.html │ └── style.css ├── CasualBlue │ ├── preview.png │ ├── index.html │ ├── style.css │ └── readme.md ├── Gridthetic │ ├── preview.png │ ├── readme.md │ ├── index.html │ └── style.css ├── Standard │ ├── favicon.ico │ ├── index.js │ ├── index.html │ ├── style.css │ └── readme.md ├── mnmlsm │ ├── img │ │ ├── favicon.ico │ │ └── avatar.svg │ ├── preview-dark.png │ ├── preview-light.png │ ├── index.html │ ├── README.MD │ └── style.css ├── Galaxy │ ├── assets │ │ ├── images │ │ │ ├── bg.jpg │ │ │ ├── favicon.png │ │ │ └── profile.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ └── css │ │ │ ├── style.css │ │ │ └── font-awesome.min.css │ └── index.html ├── SmartGlow │ ├── assets │ │ ├── images │ │ │ ├── bg.jpg │ │ │ ├── favicon.png │ │ │ └── profile.jpeg │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── js │ │ │ └── animations.js │ │ └── css │ │ │ └── style.css │ └── index.html ├── Eduardosgs │ ├── style.css │ └── index.html ├── PauloFilhoTheme │ ├── style.css │ └── index.html ├── Outrun │ ├── index.html │ └── style.css ├── GoGreen │ ├── index.html │ ├── style.css │ └── grass-dark-green-silhouette.svg ├── Sixties │ ├── index.html │ └── style.css ├── Pink │ ├── index.html │ └── style.css ├── DarkMode │ ├── index.html │ └── style.css ├── Pastel Dreams │ ├── index.html │ └── style.css ├── draculaTheme │ ├── index.html │ ├── style.css │ └── img │ │ └── 045-dracula.svg ├── README.md └── Cherry-Bloosm │ ├── index.html │ ├── style.css │ └── animation.css ├── README.md └── LICENSE /Templates/DeepSea/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/DeepSea/.DS_Store -------------------------------------------------------------------------------- /Templates/NyanCat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/NyanCat/.DS_Store -------------------------------------------------------------------------------- /Templates/NyanCat/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/NyanCat/cat.png -------------------------------------------------------------------------------- /Templates/Pride/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Pride/favicon.ico -------------------------------------------------------------------------------- /Templates/SunMoon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SunMoon/.DS_Store -------------------------------------------------------------------------------- /Templates/Journal/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Journal/favicon.ico -------------------------------------------------------------------------------- /Templates/Music/square-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Music/square-01.png -------------------------------------------------------------------------------- /Templates/Music/title-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Music/title-01.png -------------------------------------------------------------------------------- /Templates/Neon/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Neon/screenshot.png -------------------------------------------------------------------------------- /Templates/Nightmare/nmbc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Nightmare/nmbc.jpg -------------------------------------------------------------------------------- /Templates/NyanCat/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/NyanCat/favicon.ico -------------------------------------------------------------------------------- /Templates/3D Theme/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/3D Theme/preview.png -------------------------------------------------------------------------------- /Templates/CasualBlue/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/CasualBlue/preview.png -------------------------------------------------------------------------------- /Templates/Gridthetic/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Gridthetic/preview.png -------------------------------------------------------------------------------- /Templates/Nightmare/pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Nightmare/pumpkin.png -------------------------------------------------------------------------------- /Templates/NyanCat/rainbowcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/NyanCat/rainbowcat.gif -------------------------------------------------------------------------------- /Templates/Standard/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Standard/favicon.ico -------------------------------------------------------------------------------- /Templates/mnmlsm/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/mnmlsm/img/favicon.ico -------------------------------------------------------------------------------- /Templates/DeepSea/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/DeepSea/assets/.DS_Store -------------------------------------------------------------------------------- /Templates/mnmlsm/preview-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/mnmlsm/preview-dark.png -------------------------------------------------------------------------------- /Templates/mnmlsm/preview-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/mnmlsm/preview-light.png -------------------------------------------------------------------------------- /Templates/DeepSea/assets/deepSea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/DeepSea/assets/deepSea.png -------------------------------------------------------------------------------- /Templates/Galaxy/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Galaxy/assets/images/bg.jpg -------------------------------------------------------------------------------- /Templates/Neon/images/profile-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Neon/images/profile-image.jpg -------------------------------------------------------------------------------- /Templates/NyanCat/nyanCatBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/NyanCat/nyanCatBackground.png -------------------------------------------------------------------------------- /Templates/Galaxy/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Galaxy/assets/images/favicon.png -------------------------------------------------------------------------------- /Templates/Galaxy/assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Galaxy/assets/images/profile.png -------------------------------------------------------------------------------- /Templates/Neon/images/background-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Neon/images/background-image.jpg -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SmartGlow/assets/images/bg.jpg -------------------------------------------------------------------------------- /Templates/SunMoon/assets/imagens/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SunMoon/assets/imagens/favicon.png -------------------------------------------------------------------------------- /Templates/SunMoon/assets/imagens/perfil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SunMoon/assets/imagens/perfil.jpg -------------------------------------------------------------------------------- /Templates/Galaxy/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Galaxy/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SmartGlow/assets/images/favicon.png -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/images/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SmartGlow/assets/images/profile.jpeg -------------------------------------------------------------------------------- /Templates/SunMoon/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SunMoon/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SmartGlow/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Templates/Galaxy/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Galaxy/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Templates/Galaxy/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Galaxy/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Templates/Galaxy/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Galaxy/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Templates/SunMoon/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SunMoon/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Templates/SunMoon/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SunMoon/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Templates/Galaxy/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/Galaxy/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SmartGlow/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SmartGlow/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SmartGlow/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Templates/SunMoon/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SunMoon/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Templates/SunMoon/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SunMoon/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/LinkFree/master/Templates/SmartGlow/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Templates/Journal/index.js: -------------------------------------------------------------------------------- 1 | $( document ).ready(function() { 2 | // Add here commands to run on page loaded 3 | }); 4 | 5 | $( ".link" ).click(function() { 6 | // Add here commands to run on link click 7 | }); -------------------------------------------------------------------------------- /Templates/NyanCat/index.js: -------------------------------------------------------------------------------- 1 | $( document ).ready(function() { 2 | // Add here commands to run on page loaded 3 | }); 4 | 5 | $( ".link" ).click(function() { 6 | // Add here commands to run on link click 7 | }); -------------------------------------------------------------------------------- /Templates/Pride/index.js: -------------------------------------------------------------------------------- 1 | $( document ).ready(function() { 2 | // Add here commands to run on page loaded 3 | }); 4 | 5 | $( ".link" ).click(function() { 6 | // Add here commands to run on link click 7 | }); -------------------------------------------------------------------------------- /Templates/Standard/index.js: -------------------------------------------------------------------------------- 1 | $( document ).ready(function() { 2 | // Add here commands to run on page loaded 3 | }); 4 | 5 | $( ".link" ).click(function() { 6 | // Add here commands to run on link click 7 | }); -------------------------------------------------------------------------------- /Templates/3D Theme/README.md: -------------------------------------------------------------------------------- 1 | # 3D Theme 2 | This template was created by [Farell Faiz](http://github.com/farellfaiz/ "Farell Faiz"). 3 | 4 | ![Preview](https://raw.githubusercontent.com/farellfaiz/LinkFree/master/Templates/3D%20Theme/preview.png "Preview") 5 | 6 | #### Demo 7 | https://michaelbarney.github.io/LinkFree/Templates/3D%20Theme/ 8 | -------------------------------------------------------------------------------- /Templates/Gridthetic/readme.md: -------------------------------------------------------------------------------- 1 | # Gridthetic 2 | This template was created by [Farell Faiz](http://github.com/farellfaiz/ "Farell Faiz"). 3 | 4 | ![Gridthetic preview](https://raw.githubusercontent.com/farellfaiz/LinkFree/master/Templates/Gridthetic/preview.png) 5 | 6 | [Demo](https://michaelbarney.github.io/LinkFree/Templates/Gridthetic/) 7 | -------------------------------------------------------------------------------- /Templates/Eduardosgs/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background:rgb(119, 76, 76); 3 | } 4 | .container{ 5 | width: 400px; 6 | margin: 200px auto 0; 7 | } 8 | .container h2, .container h1{ 9 | color: #32275f; 10 | text-align: center; 11 | margin-top: 40px; 12 | font-family: Poppins,sans-serif; 13 | text-transform: uppercase; 14 | } 15 | .container h2 a{ 16 | text-decoration: none; 17 | color: #2f2949; 18 | transition: all .6s ease-in-out; 19 | } 20 | .container h2 a:hover{ 21 | text-decoration: underline; 22 | } -------------------------------------------------------------------------------- /Templates/PauloFilhoTheme/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background:#fff; 3 | } 4 | .container{ 5 | width: 400px; 6 | margin: 200px auto 0; 7 | } 8 | .container h2{ 9 | color: #5d37f8; 10 | text-align: center; 11 | margin-top: 40px; 12 | font-family: Poppins,sans-serif; 13 | text-transform: uppercase; 14 | } 15 | .container h2 a{ 16 | text-decoration: none; 17 | color: #5d37f8; 18 | transition: all .6s ease-in-out; 19 | } 20 | .container h2 a:hover{ 21 | text-decoration: underline; 22 | } 23 | svg{ 24 | width: 320px; 25 | } -------------------------------------------------------------------------------- /Templates/Eduardosgs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Eduardo Santos Dev 11 | 12 | 13 |
14 |

instagram

15 |

@edu.dev

16 |
17 | 18 | -------------------------------------------------------------------------------- /Templates/Outrun/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | User Photo 13 | 14 | @thesimpsons 15 | 19 | 20 | -------------------------------------------------------------------------------- /Templates/GoGreen/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | User Photo 13 | 14 | @thesimpsons 15 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Templates/Sixties/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | User Photo 13 | 14 | @thesimpsons 15 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Templates/Nightmare/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Homer Simpson 9 | 10 | 11 | 12 | 13 | 14 | User Photo 15 | 16 | @thesimpsons 17 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Templates/Gridthetic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Gridthetic LinkFree Template 8 | 9 | 10 | User Photo 11 | Gridthetic by Farell Faiz 12 | 16 | 17 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Templates/DarkMode/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | 13 | User Photo 14 | 15 | @thesimpsons 16 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Templates/Standard/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | 13 | User Photo 14 | 15 | @thesimpsons 16 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Templates/Pastel Dreams/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vienna Elric 8 | 9 | 10 | 11 | 12 | 13 | User Photo 14 | 15 | @thestateofvie 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Templates/Pride/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | 13 |
14 | User Photo 15 | @thesimpsons 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Templates/draculaTheme/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Dracula Theme LinkFree 8 | 9 | 10 | 11 | 12 | 13 | User Photo 14 | 15 | @Dracula 16 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/js/animations.js: -------------------------------------------------------------------------------- 1 | const transition = (element) => { 2 | const link = element; 3 | const time = (Math.random() + 0.5)*5; 4 | const color = `rgba( 5 | ${Math.floor(Math.random() * 255)}, 6 | ${Math.floor(Math.random() * 255)}, 7 | ${Math.floor(Math.random() * 255)}, 8 | 1 9 | );`; 10 | 11 | link.style.setProperty("--transition-time", time + "s"); 12 | setTimeout(transition, time * 1000); 13 | }; 14 | 15 | const setTransitions = () => { 16 | const links = document.getElementsByClassName("link"); 17 | for (let link of links) { 18 | const time = Math.random() * 4 + 0.5; 19 | const color = `rgba( 20 | ${Math.floor(Math.random() * 255)}, 21 | ${Math.floor(Math.random() * 255)}, 22 | ${Math.floor(Math.random() * 255)}, 23 | 1 24 | );`; 25 | 26 | link.style.setProperty("--transition-time", time + "s"); 27 | setTimeout(transition, time * 1000); 28 | } 29 | }; 30 | // setInterval(setTransitions, 1000); 31 | setTransitions(); 32 | -------------------------------------------------------------------------------- /Templates/Journal/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | 13 | User Photo 14 | 15 | @thesimpsons 16 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Templates/Neon/README.md: -------------------------------------------------------------------------------- 1 | # Neon Themed 2 | 3 | > LinkTree Clone 4 | 5 | ### To Use 6 | 7 | - Fork and Clone the repo 8 | - Add your profile image and background image to the images folder 9 | - profile image should be named "profile-image.jpg" 10 | - background image should be named "background-image.jpg" 11 | - GoTo index.html 12 | - Change title to your name 13 | ``` 14 | Neon Theme | vi_c0de 15 | 16 | ``` 17 | - Change h1 to your name 18 | ``` 19 |

@vi_c0de

20 | 21 | ``` 22 | - Add/Replace your links by editing or adding 23 | 24 | ``` 25 | 26 | 29 | 30 | ``` 31 | 32 | > Done, Now your Neon Themed Linktree clone is ready. 33 | > You can host the project to Github pages, Netlify or your provider of choice. 34 | 35 | > Checkout Project on CodePen: https://codepen.io/vishnu_dileesh/pen/zYrEgXz 36 | 37 | ![Neon UI Demo](screenshot.png) 38 | -------------------------------------------------------------------------------- /Templates/DeepSea/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Major Homer 9 | 10 | 11 | 12 | 13 | 14 | User Photo 15 | 16 | @thesimpsons 17 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Templates/mnmlsm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | MNMLSM Theme LinkFree 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 | User Photo 17 | 18 |

@MNML

19 | 24 | 25 | 27 |
28 |
29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Templates/NyanCat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |
16 |
17 |
18 |
19 | 20 | 21 | User Photo 22 | @thesimpsons 23 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Templates/DarkMode/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 3 | :root { 4 | --bgColor:#1C1C1C; 5 | --accentColor: #E6E6E6; 6 | --font: 'Karla', sans-serif; 7 | } 8 | 9 | body{ 10 | background-color: var(--bgColor); 11 | } 12 | 13 | #userPhoto{ 14 | width: 110px; 15 | height: 110px; 16 | display: block; 17 | margin: 35px auto 20px; 18 | border-radius: 50%; 19 | } 20 | 21 | #userName{ 22 | color: #bbb; 23 | font-size: 1rem; 24 | font-weight: 600; 25 | line-height: 1.25; 26 | display: block; 27 | font-family: var(--font); 28 | width: 100%; 29 | text-align: center; 30 | text-decoration: none; 31 | } 32 | 33 | #links{ 34 | max-width: 675px; 35 | width: auto; 36 | display: block; 37 | margin: 27px auto; 38 | } 39 | .link{ 40 | display: block; 41 | background-color: var(--accentColor); 42 | color: var(--bgColor); 43 | font-family: var(--font); 44 | text-align: center; 45 | margin-bottom: 20px; 46 | padding: 17px; 47 | text-decoration: none; 48 | font-size: 1rem; 49 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 50 | border: solid var(--accentColor) 2px; 51 | } 52 | 53 | .link:hover{ 54 | background-color: var(--bgColor); 55 | color: var(--accentColor); 56 | } 57 | -------------------------------------------------------------------------------- /Templates/Standard/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 3 | :root { 4 | --bgColor: white; 5 | --accentColor: #39e09b; 6 | --font: 'Karla', sans-serif; 7 | } 8 | 9 | body{ 10 | background-color: var(--bgColor); 11 | } 12 | 13 | #userPhoto{ 14 | width: 96px; 15 | height: 96px; 16 | display: block; 17 | margin: 35px auto 20px; 18 | border-radius: 50%; 19 | } 20 | 21 | #userName{ 22 | color: #bbb; 23 | font-size: 1rem; 24 | font-weight: 600; 25 | line-height: 1.25; 26 | display: block; 27 | font-family: var(--font); 28 | width: 100%; 29 | text-align: center; 30 | text-decoration: none; 31 | } 32 | 33 | #links{ 34 | max-width: 675px; 35 | width: auto; 36 | display: block; 37 | margin: 27px auto; 38 | } 39 | .link{ 40 | display: block; 41 | background-color: var(--accentColor); 42 | color: var(--bgColor); 43 | font-family: var(--font); 44 | text-align: center; 45 | margin-bottom: 20px; 46 | padding: 17px; 47 | text-decoration: none; 48 | font-size: 1rem; 49 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 50 | border: solid var(--accentColor) 2px; 51 | } 52 | 53 | .link:hover{ 54 | background-color: var(--bgColor); 55 | color: var(--accentColor); 56 | } 57 | -------------------------------------------------------------------------------- /Templates/CasualBlue/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Homer Simpson 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | User Photo 16 |

Homer Simpson

17 |
18 | Homer Jay Simpson is a fictional character and the protagonist of the 19 | American animated sitcom The Simpsons. LinkFree template created by 20 | Ryan Loi. 21 |
22 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Templates/Music/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 612bc 8 | 9 | 10 | 11 | 12 | 13 | User Photo 14 | 15 | @612bc 16 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Templates/Music/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800&display=swap'); 3 | :root { 4 | --bgColor:#000; 5 | --accentColor: #E6E6E6; 6 | --font: 'Montserrat', sans-serif; 7 | } 8 | 9 | body{ 10 | background-color: var(--bgColor); 11 | } 12 | 13 | #userPhoto{ 14 | width: 110px; 15 | height: 110px; 16 | display: block; 17 | margin: 35px auto 20px; 18 | border-radius: 50%; 19 | } 20 | 21 | #userName{ 22 | color: #bbb; 23 | font-size: 1rem; 24 | font-weight: 800; 25 | line-height: 1.25; 26 | display: block; 27 | font-family: var(--font); 28 | width: 100%; 29 | text-align: center; 30 | text-decoration: none; 31 | } 32 | 33 | #links{ 34 | max-width: 600px; 35 | width: auto; 36 | display: block; 37 | margin: 27px auto; 38 | } 39 | .link{ 40 | display: block; 41 | background-color: var(--accentColor); 42 | color: var(--bgColor); 43 | font-family: var(--font); 44 | text-align: center; 45 | margin-bottom: 20px; 46 | padding: 17px; 47 | text-decoration: none; 48 | font-size: 1rem; 49 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 50 | border: solid var(--accentColor) 2px; 51 | } 52 | 53 | .link:hover{ 54 | background-color: var(--bgColor); 55 | color: var(--accentColor); 56 | } 57 | -------------------------------------------------------------------------------- /Templates/mnmlsm/README.MD: -------------------------------------------------------------------------------- 1 | # MNMLSM 2 | 3 | MNMLSM is a simple theme inspired by the command line. It has a darkmode and no javascript. In other words: it is future proof. 4 | 5 | Preview Light | Preview Dark 6 | :-------------------------:|:-------------------------: 7 | ![Preview Light](preview-light.png) | ![Preview Dark](preview-dark.png) 8 | 9 | The theme was created by [Ungeschneuer](https://github.com/ungeschneuer). A preview can be found [here](https://michaelbarney.github.io/LinkFree/Templates/mnmlsm/). 10 | 11 | ## Getting Started 12 | 13 | You should probably change the following things: 14 | - lang attribute for the html tag 15 | - title in head tag 16 | - favicon in asset folder 17 | - userPhoto in asset folder 18 | - userName 19 | - links (duh!) 20 | - footer content 21 | 22 | ## Add a new link 23 | 24 | To add a new link, just duplicate an existing line between the links div or add a new one like this 25 | 26 | ``` 27 | # 28 | ``` 29 | 30 | 31 | ## Add Emojis 32 | 33 | If you want to add emojis to your links, you can Copy/Paste them via [GetEmoji](https://getemoji.com/). For current Mac and Windows versions, there is also a system shortcut. 34 | 35 | Mac: 36 | ``` 37 | Ctrl + Cmd + Space 38 | ``` 39 | 40 | Windows 41 | ``` 42 | Windows + ; (semi-colon) 43 | ``` 44 | or 45 | ``` 46 | Windows + . (period) 47 | ``` 48 | 49 | 50 | ## Sources 51 | 52 | The Avatar in the preview is by [unDraw](https://undraw.co/). -------------------------------------------------------------------------------- /Templates/DeepSea/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | 3 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 4 | :root { 5 | --bgColor: rgb(0, 0, 0); 6 | --accentColor: #E6E6E6; 7 | --font: 'Karla', sans-serif; 8 | } 9 | 10 | body { 11 | background-color: var(--bgColor); 12 | background-image: url("./assets/deepSea.png"); 13 | background-size: 120%; 14 | } 15 | 16 | #userPhoto { 17 | width: 110px; 18 | height: 110px; 19 | display: block; 20 | margin: 35px auto 20px; 21 | border-radius: 50%; 22 | } 23 | 24 | #userName { 25 | color: rgb(255, 255, 255); 26 | font-size: 1rem; 27 | font-weight: 600; 28 | line-height: 1.25; 29 | display: block; 30 | font-family: var(--font); 31 | width: 100%; 32 | text-align: center; 33 | text-decoration: none; 34 | } 35 | 36 | #links { 37 | max-width: 675px; 38 | width: auto; 39 | display: block; 40 | margin: 27px auto; 41 | } 42 | 43 | .link { 44 | display: block; 45 | background-color: var(--accentColor); 46 | color: var(--bgColor); 47 | font-family: var(--font); 48 | text-align: center; 49 | margin-bottom: 20px; 50 | padding: 17px; 51 | text-decoration: none; 52 | font-size: 1rem; 53 | transition: all .25s cubic-bezier(.08, .59, .29, .99); 54 | border: solid var(--accentColor) 2px; 55 | } 56 | 57 | .link:hover { 58 | background-color: var(--bgColor); 59 | color: var(--accentColor); 60 | } -------------------------------------------------------------------------------- /Templates/Sixties/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Modak&display=swap'); 3 | :root { 4 | --bgColor: beige; 5 | --accentColor: #ff0000; 6 | --font: 'Modak', cursive; 7 | } 8 | 9 | body{ 10 | background-color: var(--bgColor); 11 | } 12 | 13 | #userPhoto{ 14 | width: 96px; 15 | height: 96px; 16 | display: block; 17 | margin: 35px auto 20px; 18 | border-radius: 15px; 19 | } 20 | 21 | #userName{ 22 | color: #ffe600; 23 | font-size: 2rem; 24 | font-weight: 400; 25 | line-height: 1.25; 26 | display: block; 27 | font-family: var(--font); 28 | width: 100%; 29 | text-align: center; 30 | text-decoration: none; 31 | text-shadow: 3px 3px 0 var(--accentColor), 1px 1px 0 var(--accentColor), 2px 2px 0 var(--accentColor); 32 | } 33 | 34 | #links{ 35 | max-width: 675px; 36 | width: auto; 37 | display: block; 38 | margin: 27px auto; 39 | } 40 | .link{ 41 | display: block; 42 | background-color: var(--accentColor); 43 | color: var(--bgColor); 44 | font-family: var(--font); 45 | text-align: center; 46 | margin-bottom: 20px; 47 | padding: 17px; 48 | text-decoration: none; 49 | font-size: 1.5rem; 50 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 51 | border: solid var(--accentColor) 2px; 52 | border-radius: 15px; 53 | } 54 | 55 | .link:hover{ 56 | background-color: var(--bgColor); 57 | color: var(--accentColor); 58 | } 59 | -------------------------------------------------------------------------------- /Templates/GoGreen/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap'); 3 | :root { 4 | --bgColor: rgb(255, 230, 184); 5 | --accentColor: #2fc24f; 6 | --font: 'Permanent Marker', cursive; 7 | } 8 | 9 | body{ 10 | background: center bottom url(grass-dark-green-silhouette.svg) no-repeat; 11 | background-color: var(--bgColor); 12 | background-size: cover; 13 | min-height: 100vh; 14 | } 15 | 16 | #userPhoto{ 17 | width: 96px; 18 | height: 96px; 19 | display: block; 20 | margin: 35px auto 20px; 21 | border-radius: 50%; 22 | } 23 | 24 | #userName{ 25 | color: #999; 26 | font-size: 1.5rem; 27 | font-weight: 600; 28 | line-height: 1.25; 29 | display: block; 30 | font-family: var(--font); 31 | width: 100%; 32 | text-align: center; 33 | text-decoration: none; 34 | } 35 | 36 | #links{ 37 | max-width: 675px; 38 | width: auto; 39 | display: block; 40 | margin: 27px auto; 41 | } 42 | .link{ 43 | display: block; 44 | background-color: var(--accentColor); 45 | color: var(--bgColor); 46 | font-family: var(--font); 47 | text-align: center; 48 | margin-bottom: 20px; 49 | padding: 17px; 50 | text-decoration: none; 51 | font-size: 1.5rem; 52 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 53 | border: solid var(--accentColor) 2px; 54 | } 55 | .link:hover{ 56 | background-color: var(--bgColor); 57 | color: var(--accentColor); 58 | } 59 | -------------------------------------------------------------------------------- /Templates/Galaxy/assets/css/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap'); 3 | 4 | body { 5 | background: url('../images/bg.jpg'); 6 | font-family: 'Open Sans', sans-serif; 7 | font-weight: 600; 8 | } 9 | 10 | #userPhoto { 11 | width: 100px; 12 | height: 100px; 13 | display: block; 14 | margin: 10px auto; 15 | border-radius: 20%; 16 | } 17 | 18 | #userName { 19 | color: #fff; 20 | display: block; 21 | width: 100%; 22 | text-align: center; 23 | text-decoration: none; 24 | } 25 | 26 | #userName h1 { 27 | font-size: 2rem; 28 | font-weight: 300; 29 | letter-spacing: 0.2rem; 30 | margin: 0 auto; 31 | } 32 | 33 | #userName p { 34 | font-weight: 300; 35 | margin-top: 5px; 36 | text-transform: none; 37 | } 38 | 39 | i.fa { 40 | margin-right: 0.3rem; 41 | } 42 | 43 | #links { 44 | max-width: 500px; 45 | width: auto; 46 | display: block; 47 | margin: 20px auto; 48 | } 49 | 50 | .link { 51 | display: block; 52 | background-color: rgba(66, 110, 255, 0.2); 53 | color: #fff; 54 | text-align: center; 55 | margin-bottom: 20px; 56 | padding: 17px; 57 | text-decoration: none; 58 | font-size: 1.2rem; 59 | font-weight: 300; 60 | transition: all .25s cubic-bezier(.08, .59, .29, .99); 61 | border-radius: 10px; 62 | 63 | } 64 | 65 | .link:hover { 66 | background-color: rgba(255, 255, 255, 0.3); 67 | color: #000000; 68 | border: none; 69 | } -------------------------------------------------------------------------------- /Templates/Pink/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('http://fonts.googleapis.com/css?family=Roboto'); 3 | :root { 4 | --bgColor:#FFDFDC; 5 | --accentColor: #FF7272; 6 | --complementColor: #FFFFFF; 7 | --font: 'Roboto', sans-serif; 8 | } 9 | 10 | body{ 11 | background-color: var(--bgColor); 12 | } 13 | 14 | #userPhoto{ 15 | width: 110px; 16 | height: 110px; 17 | display: block; 18 | margin: 35px auto 20px; 19 | border: 1px; 20 | border-radius: 30%; 21 | border-style: dotted; 22 | border-color: var(--accentColor) 23 | } 24 | 25 | #userName{ 26 | color: var(--accentColor); 27 | font-size: 1rem; 28 | font-weight: 600; 29 | line-height: 1.25; 30 | display: block; 31 | font-family: var(--font); 32 | width: 100%; 33 | text-align: center; 34 | text-transform: uppercase;; 35 | } 36 | 37 | #links{ 38 | max-width: 500px; 39 | width: auto; 40 | display: block; 41 | margin: 27px auto; 42 | } 43 | .link{ 44 | display: block; 45 | background-color: var(--accentColor); 46 | color: var(--bgColor); 47 | font-family: var(--font); 48 | text-align: center; 49 | margin-bottom: 20px; 50 | padding: 17px; 51 | text-decoration: none; 52 | font-size: 1rem; 53 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 54 | border-color: var(--complementColor); 55 | border: 1px; 56 | border-style: dotted; 57 | border-radius: 30px; 58 | } 59 | 60 | .link:hover{ 61 | background-color: var(--bgColor); 62 | color: var(--accentColor); 63 | } 64 | -------------------------------------------------------------------------------- /Templates/Journal/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap'); 3 | :root { 4 | --bgColor: #ffffe6; 5 | --accentColor: #c71212; 6 | --font: 'Roboto Slab', serif; 7 | } 8 | 9 | body{ 10 | display: flex; 11 | align-items: center; 12 | flex-direction: column; 13 | justify-content: center; 14 | min-height: 100vh; 15 | background-color: var(--bgColor); 16 | } 17 | 18 | #userPhoto{ 19 | width: 96px; 20 | height: 96px; 21 | border-radius: 50%; 22 | border: 5px solid var(--accentColor); 23 | } 24 | 25 | #userName{ 26 | color: #333; 27 | font-size: 1.5rem; 28 | line-height: 1.25; 29 | font-family: var(--font); 30 | width: 100%; 31 | margin: 30px 0; 32 | text-align: center; 33 | text-decoration: none; 34 | font-style: italic; 35 | } 36 | 37 | #links{ 38 | max-width: 675px; 39 | width: 100%; 40 | } 41 | .link{ 42 | display: block; 43 | background-color: var(--accentColor); 44 | color: var(--bgColor); 45 | font-family: var(--font); 46 | text-align: center; 47 | margin-bottom: 30px; 48 | padding: 13px; 49 | text-decoration: none; 50 | text-transform: lowercase; 51 | font-size: 1rem; 52 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 53 | border: solid var(--accentColor) 2px; 54 | border-radius: 50px; 55 | } 56 | 57 | .link:hover{ 58 | background-color: var(--bgColor); 59 | color: var(--accentColor); 60 | font-style: italic; 61 | } 62 | 63 | .footer { 64 | color: #333; 65 | font-size: 1.3rem; 66 | } -------------------------------------------------------------------------------- /Templates/Galaxy/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | LinkFree | Luã Braga 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | Profile picture of Luã Braga 17 |
18 |

Luã Braga

19 |

Software Engineer

20 |
21 |
22 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Templates/Pastel Dreams/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('http://fonts.googleapis.com/css?family=Roboto'); 3 | :root { 4 | --bgColor:#92a6f4; 5 | --accentColor: #f9e4ed; 6 | --complementColor: #FFFFFF; 7 | --font: 'Lucida Handwriting', monospace; 8 | --hoverColor: #92a6f4; 9 | } 10 | 11 | body{ 12 | background-color: var(--bgColor) 13 | } 14 | 15 | #userPhoto{ 16 | width: 110px; 17 | height: 110px; 18 | display: block; 19 | margin: 35px auto 20px; 20 | border: 5px; 21 | border-radius: 50%; 22 | border-style: dotted; 23 | border-color: var(--accentColor) 24 | } 25 | 26 | #userName{ 27 | color: var(--accentColor); 28 | font-size: 1rem; 29 | font-weight: 600; 30 | line-height: 1.25; 31 | display: block; 32 | font-family: var(--font); 33 | width: 100%; 34 | text-align: center; 35 | text-transform: uppercase;; 36 | } 37 | 38 | #links{ 39 | max-width: 500px; 40 | width: auto; 41 | display: block; 42 | margin: 27px auto; 43 | } 44 | .link{ 45 | display: block; 46 | background-color: var(--accentColor); 47 | color: var(--bgColor); 48 | font-family: var(--font); 49 | text-align: center; 50 | margin-bottom: 20px; 51 | padding: 17px; 52 | text-decoration: none; 53 | font-size: 1rem; 54 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 55 | border-color: var(--complementColor); 56 | border: 5px; 57 | border-style: dotted; 58 | border-radius: 30px; 59 | } 60 | 61 | .link:hover{ 62 | background-color: var(--bgColor); 63 | color: var(--accentColor); 64 | } 65 | -------------------------------------------------------------------------------- /Templates/Outrun/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Teko&display=swap'); 3 | :root { 4 | --bgColor: rgb(38, 35, 53); 5 | --accentColor: rgb(249, 42, 173); 6 | --font: 'Teko', sans-serif; 7 | --shaddow: 0 0 2px #100c0f, 0 0 5px #dc078e33, 0 0 10px #fff3; 8 | } 9 | 10 | body{ 11 | background-color: var(--bgColor); 12 | } 13 | 14 | #userPhoto{ 15 | width: 96px; 16 | height: 96px; 17 | display: block; 18 | margin: 35px auto 20px; 19 | border-radius: 50%; 20 | border: 2px solid var(--accentColor); 21 | } 22 | 23 | #userName{ 24 | font-size: 1.5rem; 25 | font-weight: 600; 26 | line-height: 1.25; 27 | display: block; 28 | font-family: var(--font); 29 | width: 100%; 30 | text-align: center; 31 | text-decoration: none; 32 | color: #fff5f6; 33 | text-shadow: 0 0 2px #000, 0 0 10px #fc1f2c75, 0 0 5px #fc1f2c75, 0 0 25px #fc1f2c75; 34 | } 35 | 36 | #links{ 37 | max-width: 675px; 38 | width: auto; 39 | display: block; 40 | margin: 27px auto; 41 | } 42 | .link{ 43 | display: block; 44 | background: linear-gradient(to bottom, #fff951 25%, #fc28a8); 45 | color: var(--bgColor); 46 | font-family: var(--font); 47 | text-align: center; 48 | margin-bottom: 20px; 49 | padding: 17px; 50 | text-decoration: none; 51 | font-size: 1.5rem; 52 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 53 | border: 2px solid var(--accentColor); 54 | border-radius: 50px; 55 | } 56 | 57 | .link:hover{ 58 | background: var(--bgColor); 59 | color: var(--accentColor); 60 | } 61 | -------------------------------------------------------------------------------- /Templates/SmartGlow/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | LinkFree | Caio Gomes 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | Profile picture of Caio Gomes 17 |
18 |

Caio Gomes

19 |

Software Engineer

20 |
21 |
22 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Templates/CasualBlue/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); 3 | :root { 4 | --bgColor: #eeeeee; 5 | --accentColor: #204051; 6 | --font: 'Roboto', sans-serif; 7 | } 8 | 9 | body{ 10 | background-color: var(--bgColor); 11 | } 12 | 13 | div.top{ 14 | background-color: #204051; 15 | margin: 0; 16 | } 17 | 18 | #userPhoto{ 19 | width: 96px; 20 | height: 96px; 21 | display: block; 22 | margin: 35px auto; 23 | border-radius: 25%; 24 | border-style: solid; 25 | } 26 | 27 | #userName{ 28 | color: #bbb; 29 | font-size: 1rem; 30 | font-weight: 600; 31 | line-height: 1.25; 32 | display: block; 33 | font-family: var(--font); 34 | width: 100%; 35 | text-align: center; 36 | text-decoration: none; 37 | } 38 | 39 | #links{ 40 | max-width: 675px; 41 | width: 100%; 42 | display: block; 43 | margin: 27px auto; 44 | } 45 | 46 | h1{ 47 | text-align: center; 48 | font-family: var(--font); 49 | color: var(--accentColor); 50 | } 51 | 52 | #description{ 53 | text-align: center; 54 | font-family: var(--font) 55 | } 56 | 57 | #social-media{ 58 | margin: auto; 59 | } 60 | 61 | .link{ 62 | display: block; 63 | background-color: var(--accentColor); 64 | color: var(--bgColor); 65 | font-family: var(--font); 66 | text-align: center; 67 | margin-bottom: 20px; 68 | padding: 17px; 69 | text-decoration: none; 70 | font-size: 1rem; 71 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 72 | border-radius: 25px; 73 | } 74 | 75 | .link:hover{ 76 | background-color: #3b6978; 77 | color: #ffffff; 78 | } 79 | -------------------------------------------------------------------------------- /Templates/CasualBlue/readme.md: -------------------------------------------------------------------------------- 1 | # Standard Template 2 | 3 | [Website](https://michaelbarney.github.io/LinkFree/Templates/CasualBlue/) 4 | 5 | alt text 6 | 7 | ## How to Use 8 | ### index.html 9 | 1. **Title** 10 | This is the name that is given to the page. 11 | ``` 12 | Your Title Here 13 | ``` 14 | 2. **(Optional) Favicon** 15 | To change the favicon, just replace the "favicon.ico" file. You can generate the .ico file in a website like [favicon.io](https://favicon.io/). 16 | 3. **Image** 17 | This is the user image that is shown. Make sure it is square and substitute the "src" property with its url. You can generate the url in a website like [imgur](https://imgur.com/). 18 | ``` 19 | User Photo 20 | ``` 21 | 4. **Links** 22 | To add your clickable links just substitute, delete or copy the "a" tags inside the "links" div with your desired hyperlinks. 23 | ``` 24 | 31 | ``` 32 | ### style.css 33 | 5. **Colors** 34 | Substitute the background and accent colors with your desired pallete. 35 | ``` 36 | --bgColor: white; 37 | --accentColor: #39e09b; 38 | ``` 39 | 6. **Fonts** 40 | You can import the font from a website like [Google Fonts](https://fonts.google.com/) and substitute the "--font" variable with its implementation. 41 | ``` 42 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 43 | 44 | --font: 'Karla', sans-serif; 45 | ``` 46 | -------------------------------------------------------------------------------- /Templates/Neon/style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"); 2 | 3 | * { 4 | margin: 0; 5 | padding: 0; 6 | box-sizing: border-box; 7 | } 8 | 9 | body { 10 | background-color: #fe59d7; 11 | background: -webkit-linear-gradient( 12 | rgba(29, 38, 113, 0.8), 13 | rgba(195, 55, 100, 0.8) 14 | ), 15 | url("images/background-image.jpg"); 16 | background-repeat: no-repeat; 17 | background-size: cover; 18 | font-family: "Poppins", sans-serif; 19 | min-height: 100vh; 20 | display: flex; 21 | flex-direction: column; 22 | justify-content: center; 23 | } 24 | 25 | main { 26 | text-align: center; 27 | margin: 30px 50px 20px 50px; 28 | } 29 | 30 | .user-img { 31 | border-radius: 50px; 32 | max-width: 100px; 33 | box-shadow: 0 0 10px 3px #22e4f0; 34 | } 35 | 36 | main h1 { 37 | color: #12cad6; 38 | font-size: 1.2rem; 39 | text-shadow: 2px 2px 5px #22e4f0; 40 | margin: 0.5em 0 1.5em 0; 41 | } 42 | 43 | .link { 44 | height: 50px; 45 | width: 100%; 46 | background-color: #12cad6; 47 | box-shadow: 0 0 10px 3px #fe59d7; 48 | margin-top: 1.3rem; 49 | transform: skewX(-45deg); 50 | display: flex; 51 | justify-content: center; 52 | align-items: center; 53 | cursor: pointer; 54 | } 55 | 56 | .link span { 57 | transform: skewX(45deg); 58 | } 59 | 60 | a { 61 | color: white; 62 | text-decoration: none; 63 | } 64 | 65 | @media screen and (min-width: 500px) { 66 | body { 67 | padding: 20px 50px; 68 | } 69 | } 70 | 71 | @media screen and (min-width: 800px) { 72 | body { 73 | display: flex; 74 | justify-content: center; 75 | align-items: center; 76 | padding: 0; 77 | } 78 | 79 | main { 80 | min-width: 800px; 81 | padding: 20px 50px; 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /Templates/Neon/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Neon Theme | vi_c0de 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | User Photo 15 |

@vi_c0de

16 | 17 | 18 | 19 | 21 | 22 | 23 | 48 | 49 |
50 | 51 | 52 | -------------------------------------------------------------------------------- /Templates/Pride/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 3 | :root { 4 | --bgColor: #F4EED4; 5 | --accentColor: #E03A3E; 6 | --hoverColor: #963D96; 7 | --font: 'Karla', sans-serif; 8 | } 9 | 10 | body{ 11 | background-color: var(--bgColor); 12 | } 13 | 14 | #userPhoto{ 15 | width: 96px; 16 | height: 96px; 17 | display: block; 18 | margin: 35px auto 20px; 19 | border-radius: 50%; 20 | border: solid var(--bgColor) 2px; 21 | } 22 | #rainbow { 23 | transform: skewY(-15deg); 24 | position: absolute; 25 | width: 120%; 26 | top: 25%; 27 | z-index: -1; 28 | box-shadow: 29 | 0 0 0 35px #E03A3E, 30 | 0 0 0 65px #FCB827, 31 | 0 0 0 95px #62BB47, 32 | 0 0 0 125px #F5831D, 33 | 0 0 0 155px #009DDC, 34 | 0 0 0 185px #963D96 35 | } 36 | 37 | #userName{ 38 | color: var(--bgColor); 39 | font-size: 1.2rem; 40 | font-weight: 700; 41 | line-height: 1.25; 42 | display: block; 43 | font-family: var(--font); 44 | width: 100%; 45 | text-align: center; 46 | text-decoration: none; 47 | text-shadow: 0 0 3px #FF0000, 0 0 5px #009DDC; 48 | } 49 | 50 | #links{ 51 | max-width: 675px; 52 | width: auto; 53 | display: block; 54 | margin: 27px auto; 55 | } 56 | .link{ 57 | display: block; 58 | background-color: var(--bgColor); 59 | color: var(--accentColor); 60 | font-family: var(--font); 61 | text-align: center; 62 | margin-bottom: 20px; 63 | padding: 17px; 64 | text-decoration: none; 65 | font-size: 1rem; 66 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 67 | border: solid var(--hoverColor) 3px; 68 | } 69 | 70 | .link:hover{ 71 | background-color: var(--hoverColor); 72 | color: var(--bgColor); 73 | } 74 | -------------------------------------------------------------------------------- /Templates/Nightmare/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Alice&display=swap'); 3 | :root { 4 | --bgColor:#130912; 5 | --accentColor: #3d1c33; 6 | --detailColor: #DEB314; 7 | --fontColor: #bbb; 8 | --font: 'Alice', serif; 9 | } 10 | 11 | body{ 12 | background-color: #2401206e; 13 | background-image: url("nmbc.jpg"); 14 | background-position: center center; 15 | background-size: cover; 16 | background-attachment: fixed; 17 | background-repeat: no-repeat; 18 | } 19 | 20 | #userPhoto{ 21 | width: 110px; 22 | height: 110px; 23 | display: block; 24 | margin: 35px auto 20px; 25 | border-radius: 50%; 26 | border: solid var(--fontColor) 4px; 27 | box-shadow: 0 0 3px var(--accentColor), 2px 2px 5px var(--bgColor); 28 | } 29 | 30 | #userName{ 31 | color: var(--accentColor); 32 | font-size: 1rem; 33 | font-weight: 600; 34 | line-height: 1.25; 35 | display: block; 36 | font-family: var(--font); 37 | width: 100%; 38 | text-align: center; 39 | text-decoration: none; 40 | text-shadow: -2px -2px 7px var(--bgColor); 41 | } 42 | 43 | #links{ 44 | max-width: 675px; 45 | width: auto; 46 | display: block; 47 | margin: 27px auto; 48 | } 49 | .link{ 50 | display: block; 51 | background-color: var(--accentColor); 52 | color: var(--fontColor); 53 | font-family: var(--font); 54 | text-align: center; 55 | margin-bottom: 20px; 56 | padding: 17px; 57 | text-decoration: none; 58 | text-shadow:var(--detailColor) 2px 2px 8px; 59 | font-size: 1rem; 60 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 61 | border: solid var(--fontColor) 2px; 62 | } 63 | 64 | .link:hover{ 65 | background-color: var(--bgColor); 66 | color: var(--fontColor); 67 | text-shadow:var(--fontColor) 2px 2px 8px; 68 | } -------------------------------------------------------------------------------- /Templates/draculaTheme/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500&display=swap" rel="stylesheet'); 2 | 3 | :root { 4 | --font: 'Fira Sans', sans-serif; 5 | 6 | --background: #282a36; 7 | --selection:#44475a; 8 | --comment:#6272a4; 9 | --purple:#bd93f9; 10 | --white:#f8f8f2; 11 | --pink:#ff79c6; 12 | } 13 | 14 | body{ 15 | background-color: var(--background); 16 | color: var(--white); 17 | } 18 | 19 | footer{ 20 | text-align: center; 21 | 22 | color:var(--comment); 23 | 24 | font-family: var(--font); 25 | font-size: 0.75rem; 26 | font-weight: 400; 27 | } 28 | 29 | #userPhoto{ 30 | width: 96px; 31 | height: 96px; 32 | 33 | display: block; 34 | 35 | margin: 35px auto 20px; 36 | 37 | border-radius: 50%; 38 | border: solid var(--purple) 2px; 39 | } 40 | 41 | #userName{ 42 | width: 100%; 43 | 44 | color: var(--pink); 45 | 46 | font-family: var(--font); 47 | font-size: 1rem; 48 | font-weight: 400; 49 | 50 | text-align: center; 51 | text-decoration: none; 52 | 53 | line-height: 1.25; 54 | display: block; 55 | } 56 | 57 | #links{ 58 | max-width: 675px; 59 | width: auto; 60 | 61 | display: block; 62 | 63 | margin: 27px auto; 64 | } 65 | .link{ 66 | display: block; 67 | margin-bottom: 20px; 68 | padding: 17px; 69 | 70 | background-color: var(--background); 71 | color:var(--comment); 72 | 73 | font-family: var(--font); 74 | font-size: 1rem; 75 | font-weight: 500; 76 | 77 | border-radius: 5px; 78 | border: solid var(--purple) 1px; 79 | 80 | text-align: center; 81 | text-decoration: none; 82 | 83 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 84 | 85 | } 86 | 87 | .link:hover{ 88 | background-color: var(--selection); 89 | color: var(--purple); 90 | } -------------------------------------------------------------------------------- /Templates/README.md: -------------------------------------------------------------------------------- 1 | ## 💻 Template Preview 2 | - [Cherry-Blossm](https://sunilswain.github.io/Cherry-Bloosm/) 3 | - [3D Theme](https://michaelbarney.github.io/LinkFree/Templates/3D%20Theme/) 4 | - [CasualBlue](https://michaelbarney.github.io/LinkFree/Templates/CasualBlue/) 5 | - [DarkMode](https://michaelbarney.github.io/LinkFree/Templates/DarkMode/) 6 | - [DeepSea](https://michaelbarney.github.io/LinkFree/Templates/DeepSea/) 7 | - [Eduardosgs](https://michaelbarney.github.io/LinkFree/Templates/Eduardosgs/) 8 | - [Galaxy](https://michaelbarney.github.io/LinkFree/Templates/Galaxy/) 9 | - [GoGreen](https://michaelbarney.github.io/LinkFree/Templates/GoGreen/) 10 | - [Gridthetic](https://michaelbarney.github.io/LinkFree/Templates/Gridthetic/) 11 | - [Journal](https://michaelbarney.github.io/LinkFree/Templates/Journal/) 12 | - [MNMLSM](https://michaelbarney.github.io/LinkFree/Templates/mnmlsm/) 13 | - [Neon](https://michaelbarney.github.io/LinkFree/Templates/Neon/) 14 | - [Nightmare](https://michaelbarney.github.io/LinkFree/Templates/Nightmare/) 15 | - [NyanCat](https://michaelbarney.github.io/LinkFree/Templates/NyanCat/) 16 | - [Outrun](https://michaelbarney.github.io/LinkFree/Templates/Outrun/) 17 | - [Pastel Dreams](https://michaelbarney.github.io/LinkFree/Templates/Pastel%20Dreams/) 18 | - [PauloFilhoTheme](https://michaelbarney.github.io/LinkFree/Templates/PauloFilhoTheme/) 19 | - [Pink](https://michaelbarney.github.io/LinkFree/Templates/Pink/) 20 | - [Pride](https://michaelbarney.github.io/LinkFree/Templates/Pride/) 21 | - [Sixties](https://michaelbarney.github.io/LinkFree/Templates/Sixties/) 22 | - [SmartGlow](https://michaelbarney.github.io/LinkFree/Templates/SmartGlow/) 23 | - [Standard](https://michaelbarney.github.io/LinkFree/Templates/Standard/) 24 | - [SunMoon](https://michaelbarney.github.io/LinkFree/Templates/SunMoon/) 25 | - [draculaTheme](https://michaelbarney.github.io/LinkFree/Templates/draculaTheme/) 26 | -------------------------------------------------------------------------------- /Templates/Gridthetic/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Modak&display=swap'); 3 | :root { 4 | --bgColor: white; 5 | --accentColor: #363534; 6 | --font: 'Modak', cursive; 7 | } 8 | 9 | body { 10 | background-image: url('https://mk-website-media.s3.amazonaws.com/wp-content/uploads/2018/10/19001752/Wallpaper-IngridMika-ContactGrid55-1-1100x1318.jpg'); 11 | background-size: 20%; 12 | } 13 | 14 | @media only screen and (max-width: 600px) { 15 | body { 16 | background-size: 70%; 17 | } 18 | } 19 | 20 | #userPhoto { 21 | width: 96px; 22 | height: 96px; 23 | display: block; 24 | margin: 35px auto 20px; 25 | border: 5px solid black; 26 | } 27 | 28 | .circle { 29 | border-radius: 100px; 30 | } 31 | 32 | .roundsquare { 33 | border-radius: 15px; 34 | } 35 | 36 | #userName { 37 | color: #2577C1; 38 | font-size: 2rem; 39 | font-weight: 400; 40 | line-height: 1.25; 41 | display: block; 42 | font-family: var(--font); 43 | width: 100%; 44 | text-align: center; 45 | text-decoration: none; 46 | text-shadow: 3px 3px 0 var(--accentColor), 1px 1px 0 var(--accentColor), 2px 2px 0 var(--accentColor); 47 | } 48 | 49 | #links { 50 | max-width: 675px; 51 | width: auto; 52 | display: block; 53 | margin: 27px auto; 54 | } 55 | .link { 56 | display: block; 57 | background-color: var(--accentColor); 58 | color: var(--bgColor); 59 | font-family: var(--font); 60 | text-align: center; 61 | margin-bottom: 20px; 62 | margin-left:3%; 63 | margin-right:3%; 64 | padding: 17px; 65 | text-decoration: none; 66 | font-size: 1.5rem; 67 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 68 | border: solid var(--accentColor) 2px; 69 | border-radius: 15px; 70 | } 71 | 72 | .link:hover { 73 | background-color: var(--bgColor); 74 | color: var(--accentColor); 75 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LinkFree 2 | 3 | A free and open source alternative to LinkTree! 4 | 5 | [Website](https://michaelbarney.github.io/LinkFree) 6 | 7 | alt text 8 | 9 | ## What is LinkFree? 10 | 11 | Ever wanted to add more links to your Instagram bio? LinkFree does just that! It gathers all of your links into one page that is easy to navigate. 12 | 13 | ## What are the benefits? 14 | 15 | Compared to other solutions, LinkFree is fully customizable and open source! 16 | 17 | - No more pesky third party logos 18 | - Add your custom colors, images and fonts 19 | - Use full custom analytics and metrics platforms 20 | - Create your own template or use one made by the community! 21 | 22 | ## How to use? 23 | 24 | To startoff, you can choose a template for your LinkFree in the "Templates" directory. Then you can clone or fork this repository to adapt it with your information. 25 | 26 | You can fork this repository to your own account and there configure your personal page using github pages. This will let you make edits much faster. 27 | 28 | ## How to see statistics? 29 | 30 | You can use any statiscs platform of your choosing that is based on client javascript. We recommend the following: 31 | 32 | - [Amplitude](https://amplitude.com/homepage) 33 | - [Hotjar](https://www.hotjar.com/) 34 | 35 | You can use any of the functions for load and click defined on the javascript file of the LinkFree template or add code snippets to the Head or Body of the HTML file. 36 | 37 | ## How to contribute? 38 | 39 | There are a three ways you can contribute. You can make changes to the core LinkFree project, create new LinkFree templates or just share your LinkFree. 40 | 41 | ### Creating Templates 42 | 43 | A new template is a general LinkFree that has a distinctive structure or style when compared to previous templates. 44 | 45 | To submit one, you just have to make a pull request with your addition in the "Templates" directory. 46 | -------------------------------------------------------------------------------- /Templates/Journal/readme.md: -------------------------------------------------------------------------------- 1 | # Standard Template 2 | 3 | [Website](https://michaelbarney.github.io/LinkFree/Templates/Standard/) 4 | 5 | alt text 6 | 7 | ## How to Use 8 | ### index.html 9 | 1. **Title** 10 | This is the name that is given to the page. 11 | ``` 12 | Your Title Here 13 | ``` 14 | 2. **(Optional) Favicon** 15 | To change the favicon, just replace the "favicon.ico" file. You can generate the .ico file in a website like [favicon.io](https://favicon.io/). 16 | 3. **Image** 17 | This is the user image that is shown. Make sure it is square and substitute the "src" property with its url. You can generate the url in a website like [imgur](https://imgur.com/). 18 | ``` 19 | User Photo 20 | ``` 21 | 4. **Username** 22 | Your Instagram username. Change the "href" property with its url and add substitute the text with your @. 23 | ``` 24 | @thesimpsons 25 | ``` 26 | 5. **Links** 27 | To add your clickable links just substitute, delete or copy the "a" tags inside the "links" div with your desired hyperlinks. 28 | ``` 29 | 36 | ``` 37 | ### style.css 38 | 6. **Colors** 39 | Substitute the background and accent colors with your desired pallete. 40 | ``` 41 | --bgColor: white; 42 | --accentColor: #39e09b; 43 | ``` 44 | 7. **Fonts** 45 | You can import the font from a website like [Google Fonts](https://fonts.google.com/) and substitute the "--font" variable with its implementation. 46 | ``` 47 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 48 | 49 | --font: 'Karla', sans-serif; 50 | ``` 51 | -------------------------------------------------------------------------------- /Templates/NyanCat/readme.md: -------------------------------------------------------------------------------- 1 | # Standard Template 2 | 3 | [Website](https://michaelbarney.github.io/LinkFree/Templates/Standard/) 4 | 5 | alt text 6 | 7 | ## How to Use 8 | ### index.html 9 | 1. **Title** 10 | This is the name that is given to the page. 11 | ``` 12 | Your Title Here 13 | ``` 14 | 2. **(Optional) Favicon** 15 | To change the favicon, just replace the "favicon.ico" file. You can generate the .ico file in a website like [favicon.io](https://favicon.io/). 16 | 3. **Image** 17 | This is the user image that is shown. Make sure it is square and substitute the "src" property with its url. You can generate the url in a website like [imgur](https://imgur.com/). 18 | ``` 19 | User Photo 20 | ``` 21 | 4. **Username** 22 | Your Instagram username. Change the "href" property with its url and add substitute the text with your @. 23 | ``` 24 | @thesimpsons 25 | ``` 26 | 5. **Links** 27 | To add your clickable links just substitute, delete or copy the "a" tags inside the "links" div with your desired hyperlinks. 28 | ``` 29 | 36 | ``` 37 | ### style.css 38 | 6. **Colors** 39 | Substitute the background and accent colors with your desired pallete. 40 | ``` 41 | --bgColor: white; 42 | --accentColor: #39e09b; 43 | ``` 44 | 7. **Fonts** 45 | You can import the font from a website like [Google Fonts](https://fonts.google.com/) and substitute the "--font" variable with its implementation. 46 | ``` 47 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 48 | 49 | --font: 'Karla', sans-serif; 50 | ``` 51 | -------------------------------------------------------------------------------- /Templates/Pride/readme.md: -------------------------------------------------------------------------------- 1 | # Standard Template 2 | 3 | [Website](https://michaelbarney.github.io/LinkFree/Templates/Standard/) 4 | 5 | alt text 6 | 7 | ## How to Use 8 | ### index.html 9 | 1. **Title** 10 | This is the name that is given to the page. 11 | ``` 12 | Your Title Here 13 | ``` 14 | 2. **(Optional) Favicon** 15 | To change the favicon, just replace the "favicon.ico" file. You can generate the .ico file in a website like [favicon.io](https://favicon.io/). 16 | 3. **Image** 17 | This is the user image that is shown. Make sure it is square and substitute the "src" property with its url. You can generate the url in a website like [imgur](https://imgur.com/). 18 | ``` 19 | User Photo 20 | ``` 21 | 4. **Username** 22 | Your Instagram username. Change the "href" property with its url and add substitute the text with your @. 23 | ``` 24 | @thesimpsons 25 | ``` 26 | 5. **Links** 27 | To add your clickable links just substitute, delete or copy the "a" tags inside the "links" div with your desired hyperlinks. 28 | ``` 29 | 36 | ``` 37 | ### style.css 38 | 6. **Colors** 39 | Substitute the background and accent colors with your desired pallete. 40 | ``` 41 | --bgColor: white; 42 | --accentColor: #39e09b; 43 | ``` 44 | 7. **Fonts** 45 | You can import the font from a website like [Google Fonts](https://fonts.google.com/) and substitute the "--font" variable with its implementation. 46 | ``` 47 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 48 | 49 | --font: 'Karla', sans-serif; 50 | ``` 51 | -------------------------------------------------------------------------------- /Templates/Standard/readme.md: -------------------------------------------------------------------------------- 1 | # Standard Template 2 | 3 | [Website](https://michaelbarney.github.io/LinkFree/Templates/Standard/) 4 | 5 | alt text 6 | 7 | ## How to Use 8 | ### index.html 9 | 1. **Title** 10 | This is the name that is given to the page. 11 | ``` 12 | Your Title Here 13 | ``` 14 | 2. **(Optional) Favicon** 15 | To change the favicon, just replace the "favicon.ico" file. You can generate the .ico file in a website like [favicon.io](https://favicon.io/). 16 | 3. **Image** 17 | This is the user image that is shown. Make sure it is square and substitute the "src" property with its url. You can generate the url in a website like [imgur](https://imgur.com/). 18 | ``` 19 | User Photo 20 | ``` 21 | 4. **Username** 22 | Your Instagram username. Change the "href" property with its url and add substitute the text with your @. 23 | ``` 24 | @thesimpsons 25 | ``` 26 | 5. **Links** 27 | To add your clickable links just substitute, delete or copy the "a" tags inside the "links" div with your desired hyperlinks. 28 | ``` 29 | 36 | ``` 37 | ### style.css 38 | 6. **Colors** 39 | Substitute the background and accent colors with your desired pallete. 40 | ``` 41 | --bgColor: white; 42 | --accentColor: #39e09b; 43 | ``` 44 | 7. **Fonts** 45 | You can import the font from a website like [Google Fonts](https://fonts.google.com/) and substitute the "--font" variable with its implementation. 46 | ``` 47 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 48 | 49 | --font: 'Karla', sans-serif; 50 | ``` 51 | -------------------------------------------------------------------------------- /Templates/SunMoon/assets/js/script.js: -------------------------------------------------------------------------------- 1 | function mostrar(e) { 2 | if (e.classList.contains("fa-moon-o")) { //se tem lua 3 | e.classList.remove("fa-moon-o"); //remove classe icone lua 4 | e.classList.add("fa-sun-o"); //coloca classedo sol 5 | e.style.color = "rgb(225, 225, 0)"; 6 | document.body.style.background = 'rgb(10, 10, 10)'; 7 | document.querySelector('#userName').style.color = '#fff'; 8 | 9 | let links = document.querySelectorAll('.link'); 10 | // Pega apenas o primeiro do array 11 | links[0].style.filter = 'grayscale(100%)'; 12 | // pega todos 13 | for (let i = 0; i < links.length; i++) { 14 | links[i].style.filter = 'grayscale(100%)'; 15 | } 16 | 17 | let circulos = document.querySelectorAll('.circulo'); 18 | // Pega apenas o primeiro do array 19 | circulos[0].style.filter = 'grayscale(100%)'; 20 | // pega todos 21 | for (let i = 0; i < circulos.length; i++) { 22 | circulos[i].style.filter = 'grayscale(100%)'; 23 | } 24 | 25 | } else { //senão 26 | e.classList.remove("fa-sun-o"); //remove classe icone lua 27 | e.classList.add("fa-moon-o"); //coloca classedo sol 28 | e.style.color = "#585858"; 29 | document.body.style.background = 'rgb(243, 242, 242)'; 30 | document.querySelector('#userName').style.color = 'rgb(99, 99, 99)'; 31 | 32 | let links = document.querySelectorAll('.link'); 33 | // Pega apenas o primeiro do array 34 | links[0].style.filter = 'grayscale(0%)'; 35 | // pega todos 36 | for (let i = 0; i < links.length; i++) { 37 | links[i].style.filter = 'grayscale(0%)'; 38 | } 39 | 40 | let circulos = document.querySelectorAll('.circulo'); 41 | // Pega apenas o primeiro do array 42 | circulos[0].style.filter = 'grayscale(0%)'; 43 | // pega todos 44 | for (let i = 0; i < circulos.length; i++) { 45 | circulos[i].style.filter = 'grayscale(0%)'; 46 | } 47 | } 48 | 49 | } -------------------------------------------------------------------------------- /Templates/3D Theme/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 3D Theme 9 | 10 | 11 | 12 | User Photo 13 | 3D Theme by Farell Faiz 14 | 19 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Templates/mnmlsm/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap'); 2 | 3 | :root { 4 | --font: 'Roboto Mono', monospace; 5 | --background: white; 6 | --color: #232333; 7 | } 8 | 9 | body{ 10 | background-color: var(--background); 11 | color: var(--color); 12 | font-family: var(--font); 13 | margin: 0; 14 | padding: 0; 15 | text-rendering: optimizeLegibility; 16 | -webkit-font-smoothing: antialiased; 17 | display: flex; 18 | min-height: 100vh; 19 | min-width: 100vw; 20 | flex-direction: column; 21 | 22 | } 23 | 24 | .container { 25 | flex: 1 auto; 26 | display: flex; 27 | flex-direction: column; 28 | justify-content: center; 29 | text-align: center; 30 | } 31 | 32 | .content{ 33 | display: flex; 34 | flex-direction: column; 35 | flex: 1 auto; 36 | align-items: center; 37 | justify-content: center; 38 | margin: 0; 39 | } 40 | 41 | footer{ 42 | text-align: center; 43 | font-size: 0.75rem; 44 | font-weight: 400; 45 | padding-bottom: 20px; 46 | } 47 | 48 | #userPhoto{ 49 | width: 96px; 50 | height: 96px; 51 | display: block; 52 | margin: 35px auto 20px; 53 | border-radius: 50%; 54 | border: solid var(--color) 2px; 55 | } 56 | 57 | #userName{ 58 | width: 100%; 59 | font-size: 1.5rem; 60 | font-weight: 400; 61 | text-align: center; 62 | text-decoration: none; 63 | line-height: 1.25; 64 | display: block; 65 | color: var(--color); 66 | } 67 | 68 | #links{ 69 | max-width: 90%; 70 | width: auto; 71 | display: block; 72 | margin: 27px auto; 73 | } 74 | 75 | .link{ 76 | display: block; 77 | margin-bottom: 20px; 78 | padding: 17px; 79 | font-size: 1rem; 80 | font-weight: 500; 81 | border-radius: 5px; 82 | border: dashed var(--color) 2px; 83 | text-align: center; 84 | text-decoration: none; 85 | color: var(--color); 86 | word-wrap: break-word; 87 | 88 | } 89 | 90 | 91 | 92 | @media (prefers-color-scheme: dark) { 93 | 94 | :root { 95 | --background: #202124; 96 | --color: white; 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /Templates/SunMoon/assets/css/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | 3 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 4 | :root { 5 | --font: 'Karla', 'Karla', sans-serif; 6 | } 7 | 8 | body { 9 | background-color: rgb(243, 242, 242); 10 | } 11 | 12 | #userPhoto { 13 | width: 100px; 14 | height: 100px; 15 | display: block; 16 | margin: 35px auto 20px; 17 | border-radius: 50%; 18 | } 19 | 20 | #userName { 21 | color: rgb(99, 99, 99); 22 | font-size: 1rem; 23 | font-weight: 600; 24 | line-height: 1.25; 25 | display: block; 26 | font-family: var(--font); 27 | width: 100%; 28 | text-align: center; 29 | text-decoration: none; 30 | } 31 | 32 | #links { 33 | max-width: 675px; 34 | width: auto; 35 | display: block; 36 | margin: 27px auto; 37 | } 38 | 39 | .link { 40 | display: block; 41 | background-color: rgb(66, 110, 255); 42 | color: #fff; 43 | font-family: var(--font); 44 | text-align: center; 45 | margin-bottom: 20px; 46 | padding: 17px; 47 | text-decoration: none; 48 | font-size: 1rem; 49 | font-weight: bold; 50 | transition: all .25s cubic-bezier(.08, .59, .29, .99); 51 | border: solid var(--accentColor) 2px; 52 | } 53 | 54 | .link:hover { 55 | background-color: #fff; 56 | color: rgb(66, 110, 255); 57 | border: solid rgb(66, 110, 255) 2px; 58 | } 59 | 60 | .footer { 61 | text-align: center; 62 | font-size: 1.3rem; 63 | } 64 | 65 | .footer a { 66 | text-decoration:none; 67 | } 68 | 69 | .circulo { 70 | background: rgb(221, 221, 221); 71 | border-radius: 52px; 72 | width: 38px; 73 | height: 38px; 74 | text-align: center; 75 | font-size: 10px; 76 | color: rgb(32, 32, 32); 77 | } 78 | 79 | .circulo:hover { 80 | background: rgb(66, 110, 255); 81 | color: rgb(255, 255, 255); 82 | -webkit-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77); 83 | -moz-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77); 84 | box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77); 85 | } 86 | 87 | .night_mode { 88 | position: fixed; 89 | top: 25px; 90 | right: 30px; 91 | z-index: 10000000; 92 | color: #585858; 93 | } 94 | 95 | .night_mode:hover { 96 | cursor: pointer; 97 | } 98 | -------------------------------------------------------------------------------- /Templates/SunMoon/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | LinkFree | Guilherme Soares Cota 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | User Photo 19 | 20 | Guilherme Soares Cota 21 | 22 | 30 | 31 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Templates/3D Theme/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | 3 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 4 | :root { 5 | --font: 'Karla', 'Karla', sans-serif; 6 | } 7 | 8 | body { 9 | background-color: #0a072e; 10 | } 11 | 12 | #userPhoto { 13 | width: 96px; 14 | height: 96px; 15 | display: block; 16 | margin: 35px auto 20px; 17 | -webkit-box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1); 18 | -moz-box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1); 19 | box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1); 20 | transition: all 0.15s; 21 | } 22 | 23 | #userPhoto:hover { 24 | box-shadow: 0px 8px rgba(222, 218, 162, 1); 25 | transform: translateY(-2px); 26 | } 27 | 28 | #userPhoto:active { 29 | box-shadow: 0px 0px black; 30 | transform: translateY(6px); 31 | } 32 | 33 | #userName { 34 | color: white; 35 | font-size: 1rem; 36 | font-weight: 600; 37 | line-height: 1.25; 38 | display: block; 39 | font-family: var(--font); 40 | width: 100%; 41 | text-align: center; 42 | text-decoration: none; 43 | } 44 | 45 | #links { 46 | max-width: 675px; 47 | width: auto; 48 | display: block; 49 | margin: 27px auto; 50 | } 51 | 52 | @media only screen and (max-width: 700px) { 53 | #links { 54 | margin-left: 3%; 55 | margin-right: 3%; 56 | } 57 | .night_mode { 58 | margin-right: 40%; 59 | } 60 | } 61 | 62 | .link { 63 | display: block; 64 | background-color: #01A79B; 65 | color: #fff; 66 | font-family: var(--font); 67 | text-align: center; 68 | margin-bottom: 20px; 69 | padding: 17px; 70 | text-decoration: none; 71 | font-size: 1rem; 72 | font-weight: bold; 73 | transition: all 0.15s; 74 | box-shadow: 0px 6px #007569; 75 | } 76 | 77 | .link:hover { 78 | /* background: #019489; */ 79 | box-shadow: 0px 8px #007569; 80 | transform: translateY(-2px); 81 | } 82 | 83 | .link:active { 84 | transform: translateY(6px); 85 | box-shadow: 0px 0px #007569; 86 | } 87 | 88 | #proker { 89 | max-width: 300px; 90 | width: auto; 91 | display: grid; 92 | margin: 27px auto; 93 | } 94 | 95 | .footer { 96 | text-align: center; 97 | font-size: 1.3rem; 98 | } 99 | 100 | .footer a { 101 | text-decoration: none; 102 | } 103 | 104 | .media { 105 | background: #DD5A79; 106 | width: 38px; 107 | height: 38px; 108 | text-align: center; 109 | color: white; 110 | margin-bottom: 40px; 111 | box-shadow: 0px 6px #9E4355; 112 | transition: all 0.15s; 113 | } 114 | 115 | .media:hover { 116 | box-shadow: 0px 8px #9E4355; 117 | transform: translateY(-2px); 118 | } 119 | 120 | .media:active { 121 | transform: translateY(6px); 122 | box-shadow: 0px 0px #9E4355; 123 | } 124 | 125 | -------------------------------------------------------------------------------- /Templates/Cherry-Bloosm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 |
24 | pfp 25 |
26 | @userName 27 | 55 |
56 | 57 | 58 | -------------------------------------------------------------------------------- /Templates/Cherry-Bloosm/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Fredoka+One'); 2 | 3 | :root { 4 | --font:'Fredoka one', sans-serif; 5 | --bgColor: rgb(0,0,0); 6 | --accentColor: hsl(0, 100%, 81%); 7 | --largeDeviceBg: url("https://images.unsplash.com/photo-1598063183638-4ffe7c5f0f8d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8Mnx8fGVufDB8fHx8&w=1000&q=80"); 8 | --smallDeviceBg: url("https://png.pngtree.com/thumb_back/fw800/background/20210401/pngtree-peach-blossom-pink-mobile-phone-wallpaper-image_602515.jpg"); 9 | --grad:linear-gradient(rgb(10, 10, 10), rgb(53, 41, 46), rgb(162, 118, 131), rgb(205, 155, 164), rgb(250, 195, 197)); 10 | } 11 | .shadow { 12 | -moz-box-shadow: inset 0 0 10px #000000; 13 | -webkit-box-shadow: inset 0 0 10px #000000; 14 | box-shadow: inset 0 0 10px #000000; 15 | } 16 | .links { 17 | max-width: 675px; 18 | width: auto; 19 | display: block; 20 | margin:30px auto; 21 | } 22 | body { 23 | color: var(--bgColor); 24 | background-color: royalblue; 25 | background-image: var(--smallDeviceBg); 26 | background-repeat:no-repeat; 27 | background-attachment: fixed; 28 | background-size: cover; 29 | 30 | } 31 | 32 | 33 | .container{ 34 | margin: auto; 35 | padding: 15px; 36 | display: block; 37 | } 38 | .userName { 39 | display: grid; 40 | text-decoration: none; 41 | color: var(--bgColor); 42 | margin: auto; 43 | text-align: center; 44 | font-family: var(--font); 45 | font-size: 20px; 46 | } 47 | .userPhoto { 48 | margin: auto; 49 | background-color: royalblue; 50 | width: 110px; 51 | height:110px; 52 | display: grid; 53 | border-radius: 50%; 54 | outline-color: black; 55 | border: black; 56 | margin: auto; 57 | 58 | } 59 | @media only screen and (min-width:600px) { 60 | body { 61 | background-color: royalblue; 62 | background-image: var(--largeDeviceBg); 63 | background-size: cover; 64 | box-sizing: border-box; 65 | box-sizing: 100%; 66 | } 67 | .links { 68 | max-width: 675px; 69 | width: auto; 70 | display: block; 71 | margin:30px auto; 72 | } 73 | } 74 | .link { 75 | display: grid; 76 | text-decoration: none; 77 | font-size: 1.7em; 78 | font-family: var(--font); 79 | margin: auto; 80 | color: var(--bgColor); 81 | background-color: var(--accentColor); 82 | margin-bottom: 20px; 83 | transition: all .25s cubic-bezier(.08, .59, .29, .99); 84 | box-sizing: border-box; 85 | border-radius: 25px; 86 | padding: 15px; 87 | grid-template-columns: auto auto; 88 | grid-gap: 15px; 89 | border: solid var(--grad) 20px; 90 | 91 | } 92 | 93 | .link > img{ 94 | font-size: 25px; 95 | } 96 | 97 | .link:hover { 98 | background-color: var(--bgColor); 99 | color: var(--accentColor); 100 | 101 | } 102 | 103 | -------------------------------------------------------------------------------- /Templates/SmartGlow/assets/css/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap"); 3 | 4 | :root { 5 | --transition-time: 1s; 6 | --transition-color: rgba(150, 100, 80, 1); 7 | } 8 | 9 | body { 10 | font-family: "Open Sans", sans-serif; 11 | font-weight: 600; 12 | background-color: #333; 13 | } 14 | 15 | #userPhoto { 16 | width: 100px; 17 | height: 100px; 18 | display: block; 19 | margin: 10px auto; 20 | border-radius: 50%; 21 | } 22 | 23 | #userName { 24 | color: #fff; 25 | display: block; 26 | width: 100%; 27 | text-align: center; 28 | text-decoration: none; 29 | } 30 | 31 | #userName h1 { 32 | font-size: 2rem; 33 | font-weight: 300; 34 | letter-spacing: 0.2rem; 35 | margin: 0 auto; 36 | } 37 | 38 | #userName p { 39 | font-weight: 300; 40 | margin-top: 5px; 41 | text-transform: none; 42 | } 43 | 44 | i.fa { 45 | margin-right: 0.3rem; 46 | } 47 | 48 | #links { 49 | max-width: 500px; 50 | width: auto; 51 | display: block; 52 | margin: 20px auto; 53 | } 54 | 55 | .link { 56 | display: block; 57 | background-color: rgba(66, 110, 255, 0.2); 58 | color: #333; 59 | text-align: center; 60 | margin-bottom: 20px; 61 | padding: 17px; 62 | text-decoration: none; 63 | font-size: 1.2rem; 64 | font-weight: 300; 65 | transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99); 66 | border-radius: 10px; 67 | 68 | background-color: #aaa; 69 | border: 1px solid transparent; 70 | -webkit-animation: glow var(--transition-time) infinite alternate; 71 | -webkit-transition: border var(--transition-time) linear, 72 | box-shadow var(--transition-time) linear; 73 | -moz-transition: border var(--transition-time) linear, 74 | box-shadow var(--transition-time) linear; 75 | transition: border var(--transition-time) linear, 76 | box-shadow var(--transition-time) linear; 77 | } 78 | 79 | .link:hover { 80 | background-color: rgba(255, 255, 255, 1); 81 | color: #000000; 82 | border: none; 83 | } 84 | 85 | @keyframes glow { 86 | 0% { 87 | border-color: transparent; 88 | -webkit-box-shadow: 0 0 10px transparent; 89 | -moz-box-shadow: 0 0 10px transparent; 90 | box-shadow: 0 0 10px transparent; 91 | } 92 | 20% { 93 | border-color: #8cef12; 94 | -webkit-box-shadow: 0 0 10px #8cef12; 95 | -moz-box-shadow: 0 0 10px #8cef12; 96 | box-shadow: 0 0 10px #8cef12; 97 | } 98 | 40% { 99 | border-color: #a86fb2; 100 | -webkit-box-shadow: 0 0 10px #a86fb2; 101 | -moz-box-shadow: 0 0 10px #a86fb2; 102 | box-shadow: 0 0 10px #a86fb2; 103 | } 104 | 60% { 105 | border-color: #b1a832; 106 | -webkit-box-shadow: 0 0 10px #b1a832; 107 | -moz-box-shadow: 0 0 10px #b1a832; 108 | box-shadow: 0 0 10px #b1a832; 109 | } 110 | 80% { 111 | border-color: #e612cf; 112 | -webkit-box-shadow: 0 0 10px #e612cf; 113 | -moz-box-shadow: 0 0 10px #e612cf; 114 | box-shadow: 0 0 10px #e612cf; 115 | } 116 | 100% { 117 | border-color: #9831fc; 118 | -webkit-box-shadow: 0 0 10px #9831fc; 119 | -moz-box-shadow: 0 0 10px #9831fc; 120 | box-shadow: 0 0 10px #9831fc; 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /Templates/mnmlsm/img/avatar.svg: -------------------------------------------------------------------------------- 1 | male_avatar -------------------------------------------------------------------------------- /Templates/PauloFilhoTheme/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Paulo Filho Dev 11 | 12 | 13 |
14 | 23 |

@pccnf

24 |
25 | 26 | -------------------------------------------------------------------------------- /Templates/NyanCat/style.css: -------------------------------------------------------------------------------- 1 | /* Style Settings */ 2 | @import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); 3 | :root { 4 | --bgColor: #F4EED4; 5 | --accentColor: #E03A3E; 6 | --hoverColor: #963D96; 7 | --font: 'Karla', sans-serif; 8 | } 9 | 10 | body{ 11 | background-color: var(--bgColor); 12 | background-image: url("nyanCatBackground.png"); 13 | } 14 | 15 | #userPhoto{ 16 | width: 96px; 17 | height: 96px; 18 | display: block; 19 | margin: 35px auto 20px; 20 | border-radius: 50%; 21 | border: solid var(--bgColor) 2px; 22 | } 23 | 24 | #userName{ 25 | color: var(--bgColor); 26 | font-size: 1.2rem; 27 | font-weight: 700; 28 | line-height: 1.25; 29 | display: block; 30 | font-family: var(--font); 31 | width: 100%; 32 | text-align: center; 33 | text-decoration: none; 34 | text-shadow: 0 0 3px #FF0000, 0 0 5px #009DDC; 35 | } 36 | 37 | #links{ 38 | max-width: 675px; 39 | width: auto; 40 | display: block; 41 | margin: 27px auto; 42 | } 43 | .link{ 44 | display: block; 45 | background-color: var(--bgColor); 46 | color: var(--accentColor); 47 | font-family: var(--font); 48 | text-align: center; 49 | margin-bottom: 20px; 50 | padding: 17px; 51 | text-decoration: none; 52 | font-size: 1rem; 53 | transition: all .25s cubic-bezier(.08,.59,.29,.99); 54 | border: solid var(--hoverColor) 3px; 55 | } 56 | 57 | .link:hover{ 58 | background-color: var(--hoverColor); 59 | color: var(--bgColor); 60 | } 61 | 62 | .cat{ 63 | width:100px; /*width of your image*/ 64 | height:100px; /*height of your image*/ 65 | content:url('./cat.png'); 66 | margin:0; /* If you want no margin */ 67 | padding:0; /*if your want to padding */ 68 | 69 | } 70 | 71 | .rainbowcat-left{ 72 | position: absolute; 73 | width:100px; /*width of your image*/ 74 | height:100px; /*height of your image*/ 75 | left: 90%; 76 | content:url('./rainbowcat.gif'); 77 | margin:0; /* If you want no margin */ 78 | padding:0; /*if your want to padding */ 79 | } 80 | 81 | .rainbowcat-left-bottom{ 82 | position: absolute; 83 | width:100px; /*width of your image*/ 84 | height:100px; /*height of your image*/ 85 | left: 90%; 86 | top:90%; 87 | content:url('./rainbowcat.gif'); 88 | margin:0; /* If you want no margin */ 89 | padding:0; /*if your want to padding */ 90 | } 91 | 92 | .rainbowcat-right{ 93 | position: absolute; 94 | width:100px; 95 | height:100px; 96 | right: 90%; 97 | content:url('./rainbowcat.gif'); 98 | margin:0; 99 | padding:0; 100 | } 101 | 102 | .rainbowcat-right-bottom{ 103 | position: absolute; 104 | width:100px; 105 | height:100px; 106 | right: 90%; 107 | top:90%; 108 | content:url('./rainbowcat.gif'); 109 | margin:0; 110 | padding:0; 111 | } 112 | 113 | .rainbowcat-top{ 114 | position: absolute; 115 | width:100px; 116 | height:100px; 117 | top: 90%; 118 | left:50vw; 119 | right:50vw; 120 | content:url('./rainbowcat.gif'); 121 | margin:0; 122 | padding:0; 123 | } 124 | 125 | .rainbowcat-bottom{ 126 | position: absolute; 127 | width:100px; 128 | height:100px; 129 | bottom: 90%; 130 | left:50%; 131 | right:50%; 132 | content:url('./rainbowcat.gif'); 133 | margin:0; 134 | padding:0; 135 | } 136 | 137 | .pulse{ 138 | animation-name : pulse; 139 | animation-duration : 0.5s; 140 | animation-iteration-count : infinite; 141 | animation-direction : alternate; 142 | } 143 | 144 | .direction{ 145 | animation-name : direction; 146 | animation-duration : 0.5s; 147 | animation-iteration-count : infinite; 148 | animation-direction : alternate; 149 | } 150 | 151 | .roll-in-left { 152 | -webkit-animation: roll-in-left 2s ease-out infinite both; 153 | animation: roll-in-left 2s ease-out infinite both; 154 | } 155 | 156 | .roll-in-right { 157 | -webkit-animation: roll-in-right 2s ease-out infinite both; 158 | animation: roll-in-right 2s ease-out infinite both; 159 | } 160 | 161 | .roll-in-top { 162 | -webkit-animation: roll-in-top 2s ease-out infinite both; 163 | animation: roll-in-top 2s ease-out infinite both; 164 | } 165 | 166 | .roll-in-bottom { 167 | -webkit-animation: roll-in-bottom 2s ease-out infinite both; 168 | animation: roll-in-bottom 2s ease-out infinite both; 169 | } 170 | 171 | @keyframes pulse { 172 | from { 173 | transform : scale(1); 174 | opacity : 1; 175 | } 176 | 50% { 177 | transform : scale(0.75); 178 | opacity : 0.25; 179 | } 180 | to { 181 | transform : scale(1); 182 | opacity : 1; 183 | } 184 | } 185 | 186 | @keyframes direction { 187 | from { transform: scale(1) ; opacity: 1; } 188 | to { transform: scale(0.75); opacity: 0.25; } 189 | } 190 | 191 | /* ---------------------------------------------- 192 | * Generated by Animista on 2019-10-2 22:37:55 193 | * Licensed under FreeBSD License. 194 | * See http://animista.net/license for more info. 195 | * w: http://animista.net, t: @cssanimista 196 | * ---------------------------------------------- */ 197 | 198 | /** 199 | * ---------------------------------------- 200 | * animation roll-in-left 201 | * ---------------------------------------- 202 | */ 203 | @-webkit-keyframes roll-in-left { 204 | 0% { 205 | -webkit-transform: translateX(-800px) rotate(-540deg); 206 | transform: translateX(-800px) rotate(-540deg); 207 | opacity: 0; 208 | } 209 | 100% { 210 | -webkit-transform: translateX(0) rotate(0deg); 211 | transform: translateX(0) rotate(0deg); 212 | opacity: 1; 213 | } 214 | } 215 | @keyframes roll-in-left { 216 | 0% { 217 | -webkit-transform: translateX(-800px) rotate(-540deg); 218 | transform: translateX(-800px) rotate(-540deg); 219 | opacity: 0; 220 | } 221 | 100% { 222 | -webkit-transform: translateX(0) rotate(0deg); 223 | transform: translateX(0) rotate(0deg); 224 | opacity: 1; 225 | } 226 | } 227 | 228 | /* ---------------------------------------------- 229 | * Generated by Animista on 2019-10-2 22:38:28 230 | * Licensed under FreeBSD License. 231 | * See http://animista.net/license for more info. 232 | * w: http://animista.net, t: @cssanimista 233 | * ---------------------------------------------- */ 234 | 235 | /** 236 | * ---------------------------------------- 237 | * animation roll-in-right 238 | * ---------------------------------------- 239 | */ 240 | @-webkit-keyframes roll-in-right { 241 | 0% { 242 | -webkit-transform: translateX(800px) rotate(540deg); 243 | transform: translateX(800px) rotate(540deg); 244 | opacity: 0; 245 | } 246 | 100% { 247 | -webkit-transform: translateX(0) rotate(0deg); 248 | transform: translateX(0) rotate(0deg); 249 | opacity: 1; 250 | } 251 | } 252 | @keyframes roll-in-right { 253 | 0% { 254 | -webkit-transform: translateX(800px) rotate(540deg); 255 | transform: translateX(800px) rotate(540deg); 256 | opacity: 0; 257 | } 258 | 100% { 259 | -webkit-transform: translateX(0) rotate(0deg); 260 | transform: translateX(0) rotate(0deg); 261 | opacity: 1; 262 | } 263 | } 264 | 265 | /* ---------------------------------------------- 266 | * Generated by Animista on 2019-10-2 22:44:57 267 | * Licensed under FreeBSD License. 268 | * See http://animista.net/license for more info. 269 | * w: http://animista.net, t: @cssanimista 270 | * ---------------------------------------------- */ 271 | 272 | /** 273 | * ---------------------------------------- 274 | * animation roll-in-top 275 | * ---------------------------------------- 276 | */ 277 | @-webkit-keyframes roll-in-top { 278 | 0% { 279 | -webkit-transform: translateY(-800px) rotate(-540deg); 280 | transform: translateY(-800px) rotate(-540deg); 281 | opacity: 0; 282 | } 283 | 100% { 284 | -webkit-transform: translateY(0) rotate(0deg); 285 | transform: translateY(0) rotate(0deg); 286 | opacity: 1; 287 | } 288 | } 289 | @keyframes roll-in-top { 290 | 0% { 291 | -webkit-transform: translateY(-800px) rotate(-540deg); 292 | transform: translateY(-800px) rotate(-540deg); 293 | opacity: 0; 294 | } 295 | 100% { 296 | -webkit-transform: translateY(0) rotate(0deg); 297 | transform: translateY(0) rotate(0deg); 298 | opacity: 1; 299 | } 300 | } 301 | 302 | /* ---------------------------------------------- 303 | * Generated by Animista on 2019-10-2 22:45:15 304 | * Licensed under FreeBSD License. 305 | * See http://animista.net/license for more info. 306 | * w: http://animista.net, t: @cssanimista 307 | * ---------------------------------------------- */ 308 | 309 | /** 310 | * ---------------------------------------- 311 | * animation roll-in-bottom 312 | * ---------------------------------------- 313 | */ 314 | @-webkit-keyframes roll-in-bottom { 315 | 0% { 316 | -webkit-transform: translateY(800px) rotate(540deg); 317 | transform: translateY(800px) rotate(540deg); 318 | opacity: 0; 319 | } 320 | 100% { 321 | -webkit-transform: translateY(0) rotate(0deg); 322 | transform: translateY(0) rotate(0deg); 323 | opacity: 1; 324 | } 325 | } 326 | @keyframes roll-in-bottom { 327 | 0% { 328 | -webkit-transform: translateY(800px) rotate(540deg); 329 | transform: translateY(800px) rotate(540deg); 330 | opacity: 0; 331 | } 332 | 100% { 333 | -webkit-transform: translateY(0) rotate(0deg); 334 | transform: translateY(0) rotate(0deg); 335 | opacity: 1; 336 | } 337 | } 338 | -------------------------------------------------------------------------------- /Templates/Cherry-Bloosm/animation.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --png:url(''); 3 | --gif:url("https://media1.giphy.com/media/XfxvBgWGIlk6STgMEn/source.gif"); 4 | } 5 | .cat{ 6 | width:100px; /*width of your image*/ 7 | height:100px; /*height of your image*/ 8 | content:url('./cat.png'); 9 | margin:0; /* If you want no margin */ 10 | padding:0; /*if your want to padding */ 11 | 12 | } 13 | 14 | .rainbowcat-left{ 15 | position: absolute; 16 | width:75px; /*width of your image*/ 17 | height:75px; /*height of your image*/ 18 | left: 70%; 19 | content:var(--gif); 20 | margin:0; /* If you want no margin */ 21 | padding:0; /*if your want to padding */ 22 | } 23 | 24 | .rainbowcat-left-bottom{ 25 | position: absolute; 26 | width:75px; /*width of your image*/ 27 | height:75px; /*height of your image*/ 28 | left: 70%; 29 | top:90%; 30 | content:var(--gif); 31 | margin:0; /* If you want no margin */ 32 | padding:0; /*if your want to padding */ 33 | } 34 | 35 | .rainbowcat-right{ 36 | position: absolute; 37 | width:75px; 38 | height:75px; 39 | right: 70%; 40 | content:var(--gif); 41 | margin:0; 42 | padding:0; 43 | } 44 | 45 | .rainbowcat-right-bottom{ 46 | position: absolute; 47 | width:75px; 48 | height:75px; 49 | right: 70%; 50 | top:90%; 51 | content:var(--gif); 52 | margin:0; 53 | padding:0; 54 | } 55 | 56 | .rainbowcat-top{ 57 | position: absolute; 58 | width:75px; 59 | height:75px; 60 | top: 90%; 61 | left:40%; 62 | right:60%; 63 | content:var(--gif); 64 | margin:0; 65 | padding:0; 66 | } 67 | 68 | .rainbowcat-bottom{ 69 | position: absolute; 70 | width:75px; 71 | height:75px; 72 | bottom: 90%; 73 | left:30%; 74 | right:70%; 75 | content:var(--gif); 76 | margin:0; 77 | padding:0; 78 | } 79 | 80 | .pulse{ 81 | animation-name : pulse; 82 | animation-duration : 1s; 83 | animation-iteration-count : 5; 84 | animation-direction : alternate; 85 | } 86 | 87 | .direction{ 88 | animation-name : direction; 89 | animation-duration : 1s; 90 | animation-iteration-count : 5; 91 | animation-direction : alternate; 92 | } 93 | 94 | .roll-in-left { 95 | -webkit-animation: roll-in-left 2s ease-out 5 both; 96 | animation: roll-in-left 2s ease-out 5 both; 97 | } 98 | 99 | .roll-in-right { 100 | -webkit-animation: roll-in-right 2s ease-out 5 both; 101 | animation: roll-in-right 2s ease-out 5 both; 102 | } 103 | 104 | .roll-in-top { 105 | -webkit-animation: roll-in-top 2s ease-out 5 both; 106 | animation: roll-in-top 2s ease-out 5 both; 107 | } 108 | 109 | .roll-in-bottom { 110 | -webkit-animation: roll-in-bottom 2s ease-out 5 both; 111 | animation: roll-in-bottom 2s ease-out 5 both; 112 | } 113 | 114 | @keyframes pulse { 115 | from { 116 | transform : scale(1); 117 | opacity : 1; 118 | } 119 | 50% { 120 | transform : scale(0.75); 121 | opacity : 0.25; 122 | } 123 | to { 124 | transform : scale(1); 125 | opacity : 1; 126 | } 127 | } 128 | 129 | @keyframes direction { 130 | from { transform: scale(1) ; opacity: 1; } 131 | to { transform: scale(0.75); opacity: 0.25; } 132 | } 133 | @-webkit-keyframes roll-in-top { 134 | 0% { 135 | -webkit-transform: translateY(-600px) rotate(-540deg); 136 | transform: translateY(-600px) rotate(-540deg); 137 | opacity: 0; 138 | } 139 | 100% { 140 | -webkit-transform: translateY(0) rotate(0deg); 141 | transform: translateY(0) rotate(0deg); 142 | opacity: 1; 143 | } 144 | } 145 | @keyframes roll-in-top { 146 | 0% { 147 | -webkit-transform: translateY(-600px) rotate(-540deg); 148 | transform: translateY(-600px) rotate(-540deg); 149 | opacity: 0; 150 | } 151 | 100% { 152 | -webkit-transform: translateY(0) rotate(0deg); 153 | transform: translateY(0) rotate(0deg); 154 | opacity: 1; 155 | } 156 | } 157 | 158 | @-webkit-keyframes roll-in-bottom { 159 | 0% { 160 | -webkit-transform: translateY(600px) rotate(540deg); 161 | transform: translateY(600px) rotate(540deg); 162 | opacity: 0; 163 | } 164 | 100% { 165 | -webkit-transform: translateY(0) rotate(0deg); 166 | transform: translateY(0) rotate(0deg); 167 | opacity: 1; 168 | } 169 | } 170 | @keyframes roll-in-bottom { 171 | 0% { 172 | -webkit-transform: translateY(600px) rotate(540deg); 173 | transform: translateY(600px) rotate(540deg); 174 | opacity: 0; 175 | } 176 | 100% { 177 | -webkit-transform: translateY(0) rotate(0deg); 178 | transform: translateY(0) rotate(0deg); 179 | opacity: 1; 180 | } 181 | } 182 | 183 | @media only screen and (min-width:600px){ 184 | .rainbowcat-left{ 185 | position: absolute; 186 | width:100px; /*width of your image*/ 187 | height:100px; /*height of your image*/ 188 | left: 90%; 189 | content:var(--gif); 190 | margin:0; /* If you want no margin */ 191 | padding:0; /*if your want to padding */ 192 | } 193 | 194 | .rainbowcat-left-bottom{ 195 | position: absolute; 196 | width:100px; /*width of your image*/ 197 | height:100px; /*height of your image*/ 198 | left: 90%; 199 | top:90%; 200 | content:var(--gif); 201 | margin:0; /* If you want no margin */ 202 | padding:0; /*if your want to padding */ 203 | } 204 | 205 | .rainbowcat-right{ 206 | position: absolute; 207 | width:100px; 208 | height:100px; 209 | right: 90%; 210 | content:var(--gif); 211 | margin:0; 212 | padding:0; 213 | } 214 | 215 | .rainbowcat-right-bottom{ 216 | position: absolute; 217 | width:100px; 218 | height:100px; 219 | right: 90%; 220 | top:90%; 221 | content:var(--gif); 222 | margin:0; 223 | padding:0; 224 | } 225 | 226 | .rainbowcat-top{ 227 | position: absolute; 228 | width:100px; 229 | height:100px; 230 | top: 90%; 231 | left:50%; 232 | right:50%; 233 | content:var(--gif); 234 | margin:0; 235 | padding:0; 236 | } 237 | 238 | .rainbowcat-bottom{ 239 | position: absolute; 240 | width:100px; 241 | height:100px; 242 | bottom: 90%; 243 | left:50%; 244 | right:50%; 245 | content:var(--gif); 246 | margin:0; 247 | padding:0; 248 | } 249 | @-webkit-keyframes roll-in-right { 250 | 0% { 251 | -webkit-transform: translateX(800px) rotate(540deg); 252 | transform: translateX(800px) rotate(540deg); 253 | opacity: 0; 254 | } 255 | 100% { 256 | -webkit-transform: translateX(0) rotate(0deg); 257 | transform: translateX(0) rotate(0deg); 258 | opacity: 1; 259 | } 260 | } 261 | @keyframes roll-in-right { 262 | 0% { 263 | -webkit-transform: translateX(800px) rotate(540deg); 264 | transform: translateX(800px) rotate(540deg); 265 | opacity: 0; 266 | } 267 | 100% { 268 | -webkit-transform: translateX(0) rotate(0deg); 269 | transform: translateX(0) rotate(0deg); 270 | opacity: 1; 271 | } 272 | } 273 | 274 | @-webkit-keyframes roll-in-top { 275 | 0% { 276 | -webkit-transform: translateY(-800px) rotate(-540deg); 277 | transform: translateY(-800px) rotate(-540deg); 278 | opacity: 0; 279 | } 280 | 100% { 281 | -webkit-transform: translateY(0) rotate(0deg); 282 | transform: translateY(0) rotate(0deg); 283 | opacity: 1; 284 | } 285 | } 286 | @keyframes roll-in-top { 287 | 0% { 288 | -webkit-transform: translateY(-800px) rotate(-540deg); 289 | transform: translateY(-800px) rotate(-540deg); 290 | opacity: 0; 291 | } 292 | 100% { 293 | -webkit-transform: translateY(0) rotate(0deg); 294 | transform: translateY(0) rotate(0deg); 295 | opacity: 1; 296 | } 297 | } 298 | 299 | @-webkit-keyframes roll-in-bottom { 300 | 0% { 301 | -webkit-transform: translateY(600px) rotate(540deg); 302 | transform: translateY(600px) rotate(540deg); 303 | opacity: 0600px 304 | } 305 | 100% { 306 | -webkit-transform: translateY(0) rotate(0deg); 307 | transform: translateY(0) rotate(0deg); 308 | opacity: 1; 309 | } 310 | } 311 | @keyframes roll-in-bottom { 312 | 0% { 313 | -webkit-transform: translateY(600px) rotate(540deg); 314 | transform: translateY(600px) rotate(540deg); 315 | opacity: 0; 316 | } 317 | 100% { 318 | -webkit-transform: translateY(0) rotate(0deg); 319 | transform: translateY(0) rotate(0deg); 320 | opacity: 1; 321 | } 322 | } 323 | @-webkit-keyframes roll-in-left { 324 | 0% { 325 | -webkit-transform: translateX(-800px) rotate(-540deg); 326 | transform: translateX(-800px) rotate(-540deg); 327 | opacity: 0; 328 | } 329 | 100% { 330 | -webkit-transform: translateX(0) rotate(0deg); 331 | transform: translateX(0) rotate(0deg); 332 | opacity: 1; 333 | } 334 | } 335 | @keyframes roll-in-left { 336 | 0% { 337 | -webkit-transform: translateX(-800px) rotate(-540deg); 338 | transform: translateX(-800px) rotate(-540deg); 339 | opacity: 0; 340 | } 341 | 100% { 342 | -webkit-transform: translateX(0) rotate(0deg); 343 | transform: translateX(0) rotate(0deg); 344 | opacity: 1; 345 | } 346 | } 347 | } 348 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Templates/draculaTheme/img/045-dracula.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 10 | 11 | 20 | 30 | 41 | 42 | 45 | 47 | 50 | 52 | 53 | 55 | 57 | 59 | 60 | 64 | 67 | 68 | 71 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 84 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 98 | 100 | 103 | 104 | 106 | 108 | 109 | 110 | 112 | 114 | 115 | 117 | 118 | 123 | 126 | 127 | 128 | 131 | 133 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | -------------------------------------------------------------------------------- /Templates/GoGreen/grass-dark-green-silhouette.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 157 | 158 | -------------------------------------------------------------------------------- /Templates/Galaxy/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} 5 | --------------------------------------------------------------------------------