├── CNAME ├── README.md ├── static ├── images │ ├── 404.png │ ├── Cydia.png │ ├── Cydia2.png │ ├── HiveBackup.png │ └── favicons │ │ ├── favicon0.png │ │ ├── favicon1.png │ │ ├── favicon2.png │ │ └── favicon3.png ├── css │ ├── fade.css │ ├── body.css │ └── tooltips.css └── js │ ├── favicon.js │ └── animation.js ├── 404.html ├── svg ├── uploaded │ ├── unknown.svg │ ├── code.svg │ ├── document.svg │ ├── webcode.svg │ └── archive.svg └── uploading │ ├── webcode.svg │ ├── unknown.svg │ ├── document.svg │ ├── code.svg │ └── archive.svg ├── other.html ├── index.html ├── caniJB.html └── SkiddedThemeAutoupdateLol.css /CNAME: -------------------------------------------------------------------------------- 1 | nixuge.me 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Coucou 2 | -------------------------------------------------------------------------------- /static/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/Nixuge.github.io/main/static/images/404.png -------------------------------------------------------------------------------- /static/images/Cydia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/Nixuge.github.io/main/static/images/Cydia.png -------------------------------------------------------------------------------- /static/images/Cydia2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/Nixuge.github.io/main/static/images/Cydia2.png -------------------------------------------------------------------------------- /static/images/HiveBackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/Nixuge.github.io/main/static/images/HiveBackup.png -------------------------------------------------------------------------------- /static/images/favicons/favicon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/Nixuge.github.io/main/static/images/favicons/favicon0.png -------------------------------------------------------------------------------- /static/images/favicons/favicon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/Nixuge.github.io/main/static/images/favicons/favicon1.png -------------------------------------------------------------------------------- /static/images/favicons/favicon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/Nixuge.github.io/main/static/images/favicons/favicon2.png -------------------------------------------------------------------------------- /static/images/favicons/favicon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/Nixuge.github.io/main/static/images/favicons/favicon3.png -------------------------------------------------------------------------------- /static/css/fade.css: -------------------------------------------------------------------------------- 1 | @keyframes fade { 2 | 0% { opacity: 0 } 3 | 100% { opacity: 1 } 4 | } 5 | @keyframes fade1 { 6 | 0%,15% { opacity: 0 } 7 | 100% { opacity: 1 } 8 | } -------------------------------------------------------------------------------- /static/js/favicon.js: -------------------------------------------------------------------------------- 1 | let fav_num = Math.floor(Math.random() * 4); 2 | let favicon = document.createElement('link'); 3 | favicon.rel = 'icon'; 4 | favicon.href = `static/images/favicons/favicon${fav_num}.png`; 5 | document.head.appendChild(favicon); -------------------------------------------------------------------------------- /static/js/animation.js: -------------------------------------------------------------------------------- 1 | var oldURL = document.referrer; 2 | if(!oldURL.toLowerCase().includes("nixuge.me")) { 3 | var style = document.createElement('style'); 4 | style.innerHTML = ` 5 | #nme { 6 | animation: fade1 0.5s linear; 7 | } 8 | `; 9 | document.head.appendChild(style); 10 | } -------------------------------------------------------------------------------- /static/css/body.css: -------------------------------------------------------------------------------- 1 | html { 2 | height: 100%; 3 | } 4 | body { 5 | background-color: #101010; 6 | color: #FFF; 7 | font-family: 'Quicksand',Helvetica,Arial,sans-serif; 8 | font-size: 36px; 9 | opacity: 1; 10 | text-align:center; 11 | min-height: 100%; 12 | } 13 | body >:not(#nme){ 14 | animation: fade1 1s linear; 15 | } -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
11 |