diff --git a/Javascript.js b/Javascript.js new file mode 100644 index 0000000..fc6f9bc --- /dev/null +++ b/Javascript.js @@ -0,0 +1,175 @@ + +var slideIndex = 0; +carousel(); + +function carousel() { + var items = []; + var bioContainer = document.getElementsByClassName("bio")[0]; + bioContainer.style = "display: grid !important;"; + document.getElementsByClassName("js-reminder")[0].style = "display: none !important;"; + var rawListItems = bioContainer.getElementsByTagName("div"); + for (var i = 1; i < rawListItems.length; i++) { + rawListItems[i].style = "display: none;"; + } + slideIndex++; + if (slideIndex > rawListItems.length || slideIndex == 1) { + slideIndex = 2 + } + rawListItems[slideIndex - 1].style.display = "block"; + setTimeout(carousel, 1000); +} +window.onload = function () { + let script = document.createElement("script"); + script.src = "https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js"; + document.body.appendChild(script); + + const sortOnKey = (key, desc) => { + return (a, b) => { + a = a[key]; + b = b[key]; + return desc ? b - a : a - b; + }; + }; + + String.prototype.replaceAt = function (index, replacement) { + return ( + this.substr(0, index) + + replacement + + this.substr(index + replacement.length) + ); + }; + + fetch("https://api.github.com/users/fraujulian/repos?per_page=999") + .then((response) => response.json()) + .then((projects) => { + projects = projects.sort(sortOnKey("stargazers_count", true)); + let projectsDiv = document.getElementById("github_projects"); + projectsDiv.innerHTML = ""; + projectsDiv.classList = ""; + for (let i = 0; i < 16; i++) { + let projectDiv = document.createElement("div"); + projectDiv.classList = "card hoverable"; + let project = projects[i]; + if (project != undefined) { + if (project.description == null) + project.description = ""; + if (project.language == null) + project.language = ""; + project.name = project.name.replaceAll("_", " ").replaceAll("-", " "); + projectDiv.innerHTML = ` +
+
+ + ${project.name} + +
+ ${project.language} + ${project.stargazers_count} +
+
+

${project.description}

+
+ `; + fetch( + `https://raw.githubusercontent.com/${project.full_name}/master/README.md` + ) + .then((response) => response.text()) + .then((text) => { + let converter = new showdown.Converter(); + let html = converter.makeHtml(text); + let projectModal = document.createElement("div"); + projectModal.classList = "modal github-modal hidden"; + projectModal.innerHTML = ` +
+ + Visit on GitHub +
+
+ ${html} +
+ `; + + projectDiv.onclick = function () { + projectModal.classList.remove("hidden"); + document.body.scrollTop = 0; // Safari + document.documentElement.scrollTop = 0; // Chrome Firefox IE Opera + document.body.style.opacity = 0.2; + }; + + projectModal.onclick = function (evt) { + if (evt.target == projectModal) { + projectModal.classList.add("hidden"); + document.body.style.opacity = 1; + } + }; + document + .getElementsByTagName("html")[0] + .appendChild(projectModal); + }); + projectsDiv.appendChild(projectDiv); + } + } + }); +}; + +let bioBtn = document.getElementById('short-desc'); +let bioModel = document.getElementsByClassName('bio-text')[0]; +let leftArrow = document.getElementById("left-arrow"); +let rightArrow = document.getElementById("right-arrow"); +let hidden = true; + +bioBtn.onclick = function () { + if (hidden) { + bioModel.classList.remove("hidden"); + leftArrow.classList.remove("fa-arrow-right"); + leftArrow.classList.add("fa-arrow-down"); + rightArrow.classList.remove("fa-arrow-left"); + rightArrow.classList.add("fa-arrow-down"); + leftArrow.style.position = "relative"; + rightArrow.style.position = "relative"; + unfade(bioModel); + } else { + bioModel.classList.add("hidden"); + leftArrow.classList.remove("fa-arrow-down"); + leftArrow.classList.add("fa-arrow-right"); + rightArrow.classList.remove("fa-arrow-down"); + rightArrow.classList.add("fa-arrow-left"); + leftArrow.style.position = "relative"; + rightArrow.style.position = "relative"; + fade(bioModel); + } + hidden = !hidden; +}; + +bioModel.onclick = function (evt) { + if (evt.target == bioModel) { + bioModel.classList.add("hidden"); + document.body.style.opacity = 1; + } +}; + +function fade(element) { + var op = 1; + var timer = setInterval(function () { + if (op <= 0.1) { + clearInterval(timer); + element.style.display = 'none'; + } + element.style.opacity = op; + element.style.filter = 'alpha(opacity=' + op * 100 + ")"; + op -= op * 0.1; + }, 5); +} + +function unfade(element) { + var op = 0.1; + element.style.display = 'block'; + var timer = setInterval(function () { + if (op >= 1) { + clearInterval(timer); + } + element.style.opacity = op; + element.style.filter = 'alpha(opacity=' + op * 100 + ")"; + op += op * 0.1; + }, 5); +} diff --git a/LICENSE b/LICENSE deleted file mode 100644 index ad7cf9f..0000000 --- a/LICENSE +++ /dev/null @@ -1,31 +0,0 @@ -Copyright © 2024 Julian Lechner. All rights reserved. - -1) License Grant -Permission is hereby granted to any person obtaining a copy of this software and associated documentation files (the "Software") to view and test the Software solely for personal, non-commercial purposes. No other rights are granted, and the following activities are expressly prohibited: -- Copying or reproducing the Software in any form, except for personal viewing. -- Modifying, merging, or creating derivative works based on the Software. -- Distributing, redistributing, sublicensing, or publishing the Software in any form. -- Selling, reselling, or otherwise profiting from the Software. - -2) Termination -This license is automatically terminated if you violate any of the terms. Upon termination, you must immediately cease all use of the Software and destroy any copies in your possession. - -3) Legal Compliance -Any use of the Software that violates the terms of this license may result in legal action, including but not limited to, civil and criminal penalties under applicable law. - -4) No Warranty -The Software is provided "as is," without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall the copyright holder(s) be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the Software or the use or other dealings in the Software. - -For any inquiries regarding permissions, please contact: - -Julian Lechner -Ulmenstraße 9 -3380 Pöchlarn - -E-Mail: fraujulian@lechner.top -Phone: +43 660 9254001 - -Please send any abuse to the following e-mail address: -abuse@fraujulian.xyz - -By using or accessing this repository, you acknowledge that you have read, understood, and agree to be bound by the terms of this License Agreement. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..19ee8a4 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,58 @@ +# License Agreement + +**Copyright © 2024 Julian Lechner. All rights reserved.** + +## 1. Grant of License + +Subject to the terms and conditions of this Agreement, the Licensor hereby grants the Licensee a limited, non-exclusive, non-transferable, revocable license to access, view, and test the Software solely for personal, non-commercial purposes. **No other rights are granted.** The following actions are **strictly prohibited**: + +- **Copying, reproducing, or replicating** the Software, in whole or in part, except for personal viewing. +- **Modifying, merging, adapting, translating, or creating derivative works** based on the Software. +- **Distributing, redistributing, transmitting, sublicensing, leasing, renting, or publishing** the Software in any form. +- **Selling, reselling, or otherwise exploiting** the Software for any commercial purpose. + +## 2. Termination + +This License Agreement is effective until terminated. This license will **automatically terminate without notice** if you fail to comply with any provision of this Agreement. Upon termination, you must immediately cease all use of the Software and destroy all copies, full or partial, in your possession or control. + +## 3. Legal Compliance and Enforcement + +Unauthorized use of the Software constitutes a violation of intellectual property laws and may result in **severe civil and criminal penalties**. The Licensor reserves the right to seek all remedies available at law and in equity for violations of this Agreement. + +## 4. Disclaimer of Warranties + +The Software is provided **"AS IS"**, without warranty of any kind, express or implied, including but not limited to the warranties of **merchantability**, **fitness for a particular purpose**, and **non-infringement**. The Licensor does not warrant that the Software will meet your requirements or that its operation will be uninterrupted or error-free. + +## 5. Limitation of Liability + +In no event shall the Licensor be liable for any **direct, indirect, incidental, special, consequential, or punitive damages**, including but not limited to loss of profits, data, or use, incurred by you or any third party, whether in an action in contract or tort, arising from your access to, or use of, the Software. + +## 6. Indemnification + +You agree to **indemnify, defend, and hold harmless** the Licensor from and against any and all claims, liabilities, damages, losses, or expenses (including legal fees and costs) arising out of or in any way connected with your violation of this Agreement or use of the Software. + +## 7. Governing Law and Jurisdiction + +This Agreement shall be governed by and construed in accordance with the laws of **Austria**, without regard to its conflict of law principles. Any legal action or proceeding arising under this Agreement will be brought exclusively in the courts located in **Austria**, and you hereby irrevocably consent to personal jurisdiction and venue therein. + +## 8. Entire Agreement + +This Agreement constitutes the **entire understanding** between you and the Licensor regarding the Software and supersedes all prior agreements, whether written or oral. + +--- + +For any inquiries regarding permissions, please contact: + +**Julian Lechner** +Ulmenstraße 9 +3380 Pöchlarn + +Email: [fraujulian@lechner.top](mailto:fraujulian@lechner.top) +Phone: +43 660 9254001 + +Please report any abuse to the following email address: +[abuse@fraujulian.xyz](mailto:abuse@fraujulian.xyz) + +--- + +**By accessing or using this Software, you acknowledge that you have read, understood, and agree to be bound by the terms and conditions of this License Agreement.** diff --git a/README.md b/README.md index 2073ce5..fe04ad9 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,22 @@ -# 🖥️ Portfolio Website - -
- -Here you can see everything about my portfolio website! Use it if you do not violate the license. - -
- -## 👂 Languages: -- html -- CSS -- JS - -
- -## Usefull Links: -- [Portfolio Website](https://fraujulian.xyz/) -- [SynHost Website](https://synhost.de/) - -
- -## 📋 Credits: -~ Made by [`FrauJulian`](https://github.com/FrauJulian).
-~ feat. [`bostrot`](https://github.com/bostrot). & ~ [`Atlas.`](https://discord.com/users/1179778095385939970)
- -
- -### ~ Greetings from Austria! - +# 🖼️ FrauJulian's Portfolio Website + +**My portfolio resume website!** + +## 👀 Features +- view all github repositories + - view readme + - view primary language + - view stars + +## 👂 Languages/Framework/Packages: +- Javascript +- CSS +- HTML + +## 🙋‍♂️ Usefull Links: +- [Website](https://fraujulian.xyz/) + +## 📋 Credits: +~ made by [**FrauJulian**](https://fraujulian.xyz/). + +### Greetings from Austria! diff --git a/Style.css b/Style.css new file mode 100644 index 0000000..4b8f1cf --- /dev/null +++ b/Style.css @@ -0,0 +1,540 @@ +::-webkit-scrollbar { + width: 5px; + height: 5px; +} + +::-webkit-scrollbar-thumb { + background: #eaebfe; +} + +::-webkit-scrollbar-track { + background: transparent; +} + +:root { + --main-padding: 15px; + --main-margin: 10px; + --main-img-size: 200px; + --main-bio-size: 200px; + --main-bio-margin: 5px; + --main-icon-width: 80px; + --main-border-radius: 5px; + --padding-big: 20px; + --padding-small: 5px; + --main-container-width: 750px; + --main-txt-color: #dbe9f4; + --main-shadow-color: #634b28ad; + --donation-modal-height: 200px; + --donation-modal-width: 600px; + --donation-modal-top: 50%; +} + +a, +hr { + color: var(--main-txt-color); + text-decoration-line: none; +} + +body, +html { + font-family: 'Outfit', Arial, sans-serif; + margin: 0; + color: var(--main-txt-color); + text-align: center; + background-repeat: no-repeat; + background-size: cover; + background-attachment: fixed; + background-image: url("../img/background.webp"); + /*background-color: #2f3136; */ + height: 100%; +} + +footer { + padding-bottom: 5px; + max-width: 100%; +} + +footer a { + color: var(--main-txt-color); + text-decoration-line: underline; +} + +h2 { + line-height-step: 100px; +} + +ul.nav { + list-style-type: none; + margin: 0; + overflow: hidden; + backdrop-filter: blur(150px); + box-shadow: 0 4px 8px 0 var(--main-shadow-color); + transition: 0.3s; +} + +ul.nav li { + float: right; +} + +ul.nav li a { + display: block; + color: white; + text-decoration: none; +} + +ul.nav li a.active { + background-color: #2f3136; +} + +ul.nav li a:hover:not(.active) { + background-color: #111; +} + +ul.nav li.left { + float: left; +} + +#bio { + text-decoration-line: underline; +} + +#bio:hover { + cursor: pointer; +} + +#donate { + text-decoration-line: underline; +} + +#donate:hover { + cursor: pointer; +} + +#donateModal { + display: none; +} + +#github_projects .card { + padding: var(--padding-big); + text-align: left; +} + +#github_projects .card a { + color: var(--main-txt-color) !important; +} + +#github_projects .card p { + margin: 0; +} + +#github_projects .stargazers { + padding-right: var(--padding-small); +} + +#github_projects .stars { + color: var(--main-txt-color) !important; +} + +#github_projects a { + text-transform: capitalize; + text-decoration-line: none; +} + +#left-arrow { + position: relative; + -webkit-animation: linear infinite alternate; + -webkit-animation-name: runLeft; + -webkit-animation-duration: 2s; +} + +#right-arrow { + position: relative; + -webkit-animation: linear infinite alternate; + -webkit-animation-name: runRight; + -webkit-animation-duration: 2s; +} + +.bio { + display: none !important; + font-style: normal; + font-weight: 900; + padding: var(--main-padding); +} + +.bio table .right { + cursor: pointer; + border-radius: var(--main-border-radius); + backdrop-filter: blur(150px); +} + +.bio-text { + font-size: 20px; + opacity: 0; + width: 60%; + margin-bottom: 15px !important; + margin: auto; + padding: 10px; +} + +.card { + margin-top: var(--main-padding); + box-shadow: 0 4px 8px 0 var(--main-shadow-color); + transition: 0.3s; + backdrop-filter: blur(20px); + padding: var(--main-padding); + text-align: center; + color: var(#9ee700); +} + +.card-projects { + display: grid; + box-shadow: 0 4px 8px 0 var(--main-shadow-color); + transition: 0.3s; + backdrop-filter: blur(150px); +} + +.card-projects:hover { + box-shadow: 0 8px 16px 0 var(--main-shadow-color); +} + +.card:hover { + box-shadow: 0 8px 16px 0 var(--main-shadow-color); +} + +.container { + background: transparent; + backdrop-filter: blur(20px); + margin: auto; + width: var(--main-container-width); +} + +.github-hidden { + display: none; +} + +.github-modal img { + max-width: 100%; +} + +.github-modal>.card { + height: 80% !important; + overflow-y: auto; + text-align: start; +} + +.grid-container { + margin: var(--main-margin); + display: grid; + justify-content: center; + grid-template-columns: auto auto; +} + +.grid-item { + width: var(--main-bio-size); + margin-left: var(--main-padding); + backdrop-filter: blur(150px); + border-radius: var(--main-border-radius); +} + +.grid-item h1, +.grid-item-start h1 { + margin: var(--main-bio-margin); +} + +.grid-item-start { + grid-row-start: 1; + grid-row-end: 8; +} + +.hidden { + display: none; +} + +.hover-items { + display: grid; + grid-template-columns: auto auto auto; + align-items: center; +} + +.hover-items a:hover { + cursor: pointer; + opacity: 0.8; +} + +.hover-items, +.hover-items a { + color: var(--main-txt-color); + padding: var(--main-padding) 10px; + font-size: large; + margin: auto; + line-height: 1.5em; + text-align: center; +} + +.hoverable:hover { + backdrop-filter: blur(150px); + cursor: pointer; +} + +.icon-area a { + color: var(#9ee700); +} + +.icon-area i { + justify-content: space-between; + width: var(--main-icon-width); + padding-top: var(--main-padding); + padding-bottom: var(--main-padding); + border-radius: var(--main-border-radius); +} + +.icon-area i:hover { + cursor: pointer; + backdrop-filter: blur(150px); +} + +.js-reminder { + font-style: normal; + font-weight: 900; + padding: var(--main-padding); +} + +.max60 { + max-width: 90%; + margin: auto; +} + +.media-body { + color: var(--main-txt-color) !important; + margin-bottom: 10px; +} + +.modal { + top: 0; + right: 0; + position: absolute; + margin: auto; + height: 100vh; + width: 100%; +} + +.modal .card { + opacity: 1; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + margin: auto; + height: var(--donation-modal-height); + width: var(--donation-modal-width); + max-width: 100%; +} + +.nomargin { + margin: 0; +} + +.portfolio { + display: grid; + grid-template-columns: repeat(auto-fill, 128px); + justify-content: space-between; +} + +.portfolio-done { + display: grid; + grid-template-columns: 24% 24% 24% 24%; + justify-content: space-between; + margin-bottom: 2em; +} + +.portfolio-done-item { + height: 128px; +} + +.profile img { + margin: auto; + max-width: var(--main-img-size); + border-radius: 50%; +} + +.project { + position: relative; +} + +.project img { + opacity: 1; + display: block; + width: 100%; + height: auto; + transition: .5s ease; + backface-visibility: hidden; + box-shadow: 0 4px 8px 0 var(--main-shadow-color); + transition: 0.3s; +} + +.project p { + transition: .5s ease; + opacity: 0; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); +} + +.project:hover img { + opacity: 0.3; +} + +.project:hover p { + opacity: 1.0; +} + +.refer-area { + text-decoration-line: underline; +} + +.social { + border: 0; + margin: auto; +} + +.social a { + border: 0; +} + +.table { + color: var(--main-txt-color) !important; + font-weight: lighter; +} + +@-webkit-keyframes runLeft { + 0% { + left: 50%; + } + + 100% { + left: 50%; + } + + 50% { + left: 70%; + } +} + +@-webkit-keyframes runRight { + 0% { + right: 50%; + } + + 100% { + right: 50%; + } + + 50% { + right: 70%; + } +} + +@media only screen and (min-width:1025px) { + .circle { + height: 24px; + width: 24px; + border-radius: 24px; + background-color: black; + position: fixed; + top: 0; + left: 0; + pointer-events: none; + z-index: 99999999; + } +} + +@media screen and (max-width: 700px) { + :root { + --donation-modal-height: 350px; + --donation-modal-width: 600px; + --donation-modal-top: 50%; + } + + body, + html { + height: 100% !important; + } + + .modal { + position: absolute; + margin: auto; + height: 100%; + width: 100%; + background: rgba(0, 0, 0, 0.4); + } + + .modal .card { + vertical-align: middle; + width: 80%; + opacity: 1; + } +} + +@media screen and (max-width:700px) { + :root { + --mobile-margin: 5px; + --main-container-width: 95%; + --mobile-width: 90%; + } + + footer { + width: var(--main-container-width); + } + + ul.nav li, + ul.nav li.right { + float: none; + } + + ul.nav li.left { + display: none; + } + + #left-arrow { + position: initial !important; + margin-right: 10px; + } + + #right-arrow { + position: initial !important; + margin-left: 10px; + } + + .bio-text { + width: 95% !important; + } + + .grid-container { + grid-template-columns: auto; + } + + .icon-area i { + margin-top: var(--mobile-margin); + } + + .max60 { + max-width: 100%; + } + + .portfolio-done { + grid-template-columns: auto; + justify-content: initial; + width: 100%; + } + + .portfolio-done-item { + width: 100%; + } + + .short_desc { + width: var(--mobile-width); + } +} \ No newline at end of file diff --git a/css/donation.css b/css/donation.css deleted file mode 100644 index 6fdd497..0000000 --- a/css/donation.css +++ /dev/null @@ -1,70 +0,0 @@ -:root { - --donation-modal-height: 200px; - --donation-modal-width: 600px; - --donation-modal-top: 50%; -} - -#donate { - text-decoration-line: underline; -} - -#donate:hover { - cursor: pointer; -} - -#donateModal { - display: none; -} - -.modal { - top: 0; - right: 0; - position: absolute; - margin: auto; - height: 100vh; - width: 100%; -} - -.modal .card { - opacity: 1; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - margin: auto; - height: var(--donation-modal-height); - width: var(--donation-modal-width); - max-width: 100%; -} - -.refer-area { - text-decoration-line: underline; -} - -@media screen and (max-width: 700px) { - :root { - --donation-modal-height: 350px; - --donation-modal-width: 600px; - --donation-modal-top: 50%; - } - - .modal .card { - vertical-align: middle; - width: 80%; - opacity: 1; - } - - .modal { - position: absolute; - margin: auto; - height: 100%; - width: 100%; - background: rgba(0, 0, 0, 0.4); - } - - html, - body { - height: 100% !important; - } -} \ No newline at end of file diff --git a/css/github.css b/css/github.css deleted file mode 100644 index c4f38b1..0000000 --- a/css/github.css +++ /dev/null @@ -1,60 +0,0 @@ -.hoverable:hover { - backdrop-filter: blur(150px); - cursor: pointer; -} - -#github_projects .stargazers { - padding-right: var(--padding-small); -} - -#github_projects .stars { - color: var(--main-txt-color) !important; -} - -#github_projects a { - text-transform: capitalize; - text-decoration-line: none; -} - -.github-modal>.card { - height: 80% !important; - overflow-y: auto; -} - -#github_projects .card { - padding: var(--padding-big); - text-align: left; -} - -#github_projects .card a { - color: var(--main-txt-color) !important; -} - -#github_projects .card p { - margin: 0; -} - -.github-hidden { - display: none; -} - -.github-modal>.card { - text-align: start; -} - -.github-modal img { - max-width: 100%; -} - -::-webkit-scrollbar { - width: 5px; - height: 5px; -} - -::-webkit-scrollbar-track { - background: transparent; -} - -::-webkit-scrollbar-thumb { - background: #eaebfe; -} \ No newline at end of file diff --git a/css/style.css b/css/style.css deleted file mode 100644 index fe0c43b..0000000 --- a/css/style.css +++ /dev/null @@ -1,412 +0,0 @@ -:root { - --main-padding: 15px; - --main-margin: 10px; - --main-img-size: 200px; - --main-bio-size: 200px; - --main-bio-margin: 5px; - --main-icon-width: 80px; - --main-border-radius: 5px; - --padding-big: 20px; - --padding-small: 5px; - --main-container-width: 750px; - --main-txt-color: #6F4E37; -} - -h2 { - line-height-step: 100px; -} - -html, -body { - font-family: 'Outfit', Arial, sans-serif; - margin: 0; - color: var(--main-txt-color); - text-align: center; - background-repeat: no-repeat; - background-size: cover; - background-attachment: fixed; - background-image: url("../img/background.jpg"); - height: 100%; -} - -a { - color: var(--main-txt-color); - text-decoration-line: none; -} - -footer { - padding-bottom: 5px; - max-width: 100%; -} - -footer a { - color: var(--main-txt-color); - text-decoration-line: underline; -} - -.js-reminder { - font-style: normal; - font-weight: 900; - padding: var(--main-padding); -} - -.bio { - display: none !important; - font-style: normal; - font-weight: 900; - padding: var(--main-padding); -} - -.grid-container { - margin: var(--main-margin); - display: grid; - justify-content: center; - grid-template-columns: auto auto; -} - -.grid-item { - width: var(--main-bio-size); - margin-left: var(--main-padding); - backdrop-filter: blur(150px); - border-radius: var(--main-border-radius); -} - -.grid-item h1, -.grid-item-start h1 { - margin: var(--main-bio-margin); -} - -.grid-item-start { - grid-row-start: 1; - grid-row-end: 8; -} - -.bio table .right { - cursor: pointer; - border-radius: var(--main-border-radius); - backdrop-filter: blur(150px); -} - -.social { - border: 0; - margin: auto; -} - -.project { - position: relative; -} - -.project img { - opacity: 1; - display: block; - width: 100%; - height: auto; - transition: .5s ease; - backface-visibility: hidden; - box-shadow: 0 4px 8px 0 var(--main-txt-color); - transition: 0.3s; -} - -.project:hover img { - opacity: 0.3 -} - -.project:hover p { - opacity: 1.0 -} - -.project p { - transition: .5s ease; - opacity: 0; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%) -} - -.portfolio { - display: grid; - grid-template-columns: repeat(auto-fill, 128px); - justify-content: space-between; -} - -.portfolio-done { - display: grid; - grid-template-columns: 24% 24% 24% 24%; - justify-content: space-between; - margin-bottom: 2em; -} - -.portfolio-done-item { - height: 128px; -} - -.social a { - border: 0; -} - -ul.nav { - list-style-type: none; - margin: 0; - overflow: hidden; - backdrop-filter: blur(150px); - box-shadow: 0 4px 8px 0 var(--main-txt-color); - transition: 0.3s; -} - -.hidden { - display: none; -} - -ul.nav li { - float: right; -} - -ul.nav li a { - display: block; - color: white; - text-decoration: none; -} - -ul.nav li a:hover:not(.active) { - background-color: #111; -} - -ul.nav li a.active { - background-color: #2F3136; -} - -ul.nav li.left { - float: left; -} - -.card-projects { - display: grid; - box-shadow: 0 4px 8px 0 var(--main-txt-color); - transition: 0.3s; - backdrop-filter: blur(150px); -} - -.card-projects:hover { - box-shadow: 0 8px 16px 0 var(--main-txt-color); -} - -.icon-area i { - justify-content: space-between; - width: var(--main-icon-width); - padding-top: var(--main-padding); - padding-bottom: var(--main-padding); - border-radius: var(--main-border-radius); -} - -.icon-area i:hover { - cursor: pointer; - backdrop-filter: blur(150px); -} - -.icon-area a { - color: var(#9ee700); -} - -.card { - margin-top: var(--main-padding); - box-shadow: 0 4px 8px 0 var(--main-txt-color); - transition: 0.3s; - backdrop-filter: blur(20px); - padding: var(--main-padding); - text-align: center; - color: var(#9ee700); -} - -.nomargin { - margin: 0; -} - -.hover-items, -.hover-items a { - color: var(--main-txt-color); - padding: var(--main-padding) 10px; - font-size: large; - margin: auto; - line-height: 1.5em; - text-align: center; -} - -.hover-items a:hover { - cursor: pointer; - opacity: 0.8; -} - - -.profile img { - margin: auto; - max-width: var(--main-img-size); - border-radius: 50%; -} - -.card:hover { - box-shadow: 0 8px 16px 0 var(--main-txt-color); -} - -.container { - background: transparent; - backdrop-filter: blur(20px); - margin: auto; - width: var(--main-container-width); -} - -.media-body { - color: var(--main-txt-color) !important; - margin-bottom: 10px; -} - -.table { - color: var(--main-txt-color) !important; - font-weight: lighter; -} - -@media screen and (max-width: 700px) { - :root { - --mobile-margin: 5px; - --main-container-width: 95%; - --mobile-width: 90%; - } - - ul.nav li.right, - ul.nav li { - float: none; - } - - ul.nav li.left { - display: none; - } - - .portfolio-done { - grid-template-columns: auto; - justify-content: initial; - width: 100%; - } - - .portfolio-done-item { - width: 100%; - } - - .grid-container { - grid-template-columns: auto; - } - - .icon-area i { - margin-top: var(--mobile-margin); - } - - .short_desc { - width: var(--mobile-width); - } - - footer { - width: var(--main-container-width); - } - - .bio-text { - width: 95% !important; - } - - #left-arrow { - position: initial !important; - margin-right: 10px; - } - - #right-arrow { - position: initial !important; - margin-left: 10px; - } - - .max60 { - max-width: 100%; - } -} - -#bio { - text-decoration-line: underline; -} - -.max60 { - max-width: 90%; - margin: auto; -} - -#bio:hover { - cursor: pointer; -} - -#right-arrow { - position: relative; - -webkit-animation: linear infinite alternate; - -webkit-animation-name: runRight; - -webkit-animation-duration: 2s; -} - -#left-arrow { - position: relative; - -webkit-animation: linear infinite alternate; - -webkit-animation-name: runLeft; - -webkit-animation-duration: 2s; -} - -@-webkit-keyframes runLeft { - 0% { - left: 50%; - } - - 50% { - left: 70%; - } - - 100% { - left: 50%; - } -} - -@-webkit-keyframes runRight { - 0% { - right: 50%; - } - - 50% { - right: 70%; - } - - 100% { - right: 50%; - } -} - -.hover-items { - display: grid; - grid-template-columns: auto auto auto; - align-items: center; -} - -.bio-text { - font-size: 20px; - opacity: 0; - width: 60%; - margin-bottom: 15px !important; - margin: auto; - padding: 10px; -} - -@media only screen and (min-width: 1025px) { - .circle { - height: 24px; - width: 24px; - border-radius: 24px; - background-color: black; - position: fixed; - top: 0; - left: 0; - pointer-events: none; - z-index: 99999999; - } -} \ No newline at end of file diff --git a/img/background.jpg b/img/background.jpg deleted file mode 100644 index fb49afd..0000000 Binary files a/img/background.jpg and /dev/null differ diff --git a/img/background.webp b/img/background.webp new file mode 100644 index 0000000..7b6cbe3 Binary files /dev/null and b/img/background.webp differ diff --git a/imprint/index.html b/imprint/index.html index daa5a3b..be653fe 100644 --- a/imprint/index.html +++ b/imprint/index.html @@ -6,84 +6,136 @@ Julian Lechner - + - - - - + + + +
+
-
-
+

Imprint

-

Imprint

+

Information according to §5 TMG

-

Information according to §5 TMG

- -

- Julian Lechner
- Ulmenstraße 9
- 3380 Pöchlarn
- Lower Austria
-

- -

- Represented by:
- Julian Lechner
-

- -

- Contact:
- Phone: +43 (0) 660 9254001
- E-Mail: fraujulian@lechner.top
-

- -

- Abuse Contact:
- E-Mail: abuse@fraujulian.xyz
-


- -

- Disclaimer:

- - Liability for links

- Our website contains links to external third-party websites over whose content we have no influence. Therefore, we cannot accept any liability for this third-party content. The respective provider or operator of the pages is always responsible for the content of the linked pages. The linked pages were checked for possible legal violations at the time of linking. Illegal content was not recognizable at the time of linking. However, permanent monitoring of the content of the linked pages is not reasonable without concrete evidence of an infringement. If we become aware of any legal infringements, we will remove such links immediately.

- - Google Analytics

- This website uses Google Analytics, a web analysis service of Google Inc (''Google''). Google Analytics uses "cookies", which are text files placed on your computer, to help the website analyze how users use the site. The information generated by the cookie about your use of the website (including your IP address) will be transmitted to and stored by Google on servers in the United States. Google will use this information for the purpose of evaluating your use of the website, compiling reports on website activity for website operators and providing other services relating to website activity and internet usage. Google may also transfer this information to third parties where required to do so by law, or where such third parties process the information on Google's behalf. Google will not associate your IP address with any other data held by Google. You may refuse the use of cookies by selecting the appropriate settings on your browser, however please note that if you do this you may not be able to use the full functionality of this website. By using this website, you consent to the processing of data about you by Google in the manner and for the purposes set out above.

- - Google AdSense

- This website uses Google Adsense, a web advertising service of Google Inc, USA (''Google''). Google Adsense uses so-called ''cookies'' (text files), which are stored on your computer and enable your use of the website to be analyzed. Google Adsense also uses so-called ''web beacons'' (small invisible graphics) to collect information. By using the web beacon, simple actions such as visitor traffic on the website can be recorded and collected. The information generated by the cookie and/or web beacon about your use of the website (including your IP address) will be transmitted to and stored by Google on servers in the United States. Google will use this information for the purpose of evaluating your use of the website with regard to the advertisements, compiling reports on website activity and advertisements for website operators and providing other services relating to website activity and internet usage. Google may also transfer this information to third parties where required to do so by law, or where such third parties process the information on Google's behalf. Google will not associate your IP address with any other data held by Google. You can prevent the storage of cookies on your hard disk and the display of web beacons by selecting ''Do not accept cookies'' in your browser settings (in MS Internet Explorer under ''Tools > Internet Options > Privacy > Settings''; in Firefox under ''Tools > Settings > Privacy > Cookies''); however, we would like to point out that in this case you may not be able to use all functions of this website to their full extent. By using this website, you consent to the processing of data about you by Google in the manner and for the purposes set out above. -

- - -
-
- -

Back

- -
-
- -
-
- -
+
+ + - + \ No newline at end of file diff --git a/index.html b/index.html index 5e2bd26..ae1c98a 100644 --- a/index.html +++ b/index.html @@ -4,51 +4,119 @@ - - Julian Lechner - + - - - - + + +
+ +

Hii! 👋 I'm Julian Lechner!

-

aka. FrauJulian or Julie

+

📍 Austria, Vienna

+
+
+ + + + -
+
+
+ + +

Enable JavaScript to see what I do.

+ + +
+
+

I code with

+
+
+

NodeJS

+
+
+

JavaScript

+
+
+

TypeScript

+
+
+

HTML

+
+
+

CSS

+
+
+

C#

+
+
+

.NET

+
+
+

WPF

+
+
+

Docker

+
+
+

Linux

+
+
+

Jetbrains

+
+
+ + +
@@ -60,95 +128,31 @@ - -
-
-
-

I develop with

-
-
-

NodeJS

-
-
-

C#

-
-
-

WPF

-
-
-

.NET

-
-
-

NPM

-
-
-

HTML

-
-
-

Java

-
-
-

CSS

-
-
-

JavaScript

-
-
-

Linux

-
-
-

Windows

-
-
-

SQL

-
-
-

VSC

-
-
-

Cloudflare

-
-
-

express

-
-
-

TypeScript

-
-
-

DOCKER

-
+ +
- Loading... +

Loading...

- + \ No newline at end of file diff --git a/js/dynamic.js b/js/dynamic.js deleted file mode 100644 index 5c2e8f3..0000000 --- a/js/dynamic.js +++ /dev/null @@ -1,60 +0,0 @@ -let bioBtn = document.getElementById('short-desc'); -let bioModel = document.getElementsByClassName('bio-text')[0]; -let leftArrow = document.getElementById("left-arrow"); -let rightArrow = document.getElementById("right-arrow"); -let hidden = true; -bioBtn.onclick = function () { - if (hidden) { - bioModel.classList.remove("hidden"); - leftArrow.classList.remove("fa-arrow-right"); - leftArrow.classList.add("fa-arrow-down"); - rightArrow.classList.remove("fa-arrow-left"); - rightArrow.classList.add("fa-arrow-down"); - leftArrow.style.position = "relative"; - rightArrow.style.position = "relative"; - unfade(bioModel); - } else { - bioModel.classList.add("hidden"); - leftArrow.classList.remove("fa-arrow-down"); - leftArrow.classList.add("fa-arrow-right"); - rightArrow.classList.remove("fa-arrow-down"); - rightArrow.classList.add("fa-arrow-left"); - leftArrow.style.position = "relative"; - rightArrow.style.position = "relative"; - fade(bioModel); - } - hidden = !hidden; -}; - -bioModel.onclick = function (evt) { - if (evt.target == bioModel) { - bioModel.classList.add("hidden"); - document.body.style.opacity = 1; - } -}; - -function fade(element) { - var op = 1; - var timer = setInterval(function () { - if (op <= 0.1) { - clearInterval(timer); - element.style.display = 'none'; - } - element.style.opacity = op; - element.style.filter = 'alpha(opacity=' + op * 100 + ")"; - op -= op * 0.1; - }, 5); -} - -function unfade(element) { - var op = 0.1; - element.style.display = 'block'; - var timer = setInterval(function () { - if (op >= 1) { - clearInterval(timer); - } - element.style.opacity = op; - element.style.filter = 'alpha(opacity=' + op * 100 + ")"; - op += op * 0.1; - }, 5); -} diff --git a/js/github.js b/js/github.js deleted file mode 100644 index 503d4a0..0000000 --- a/js/github.js +++ /dev/null @@ -1,84 +0,0 @@ - window.onload = function () { - let script = document.createElement("script"); - script.src = "https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js"; - document.body.appendChild(script); - - const sortOnKey = (key, desc) => { - return (a, b) => { - a = a[key]; - b = b[key]; - return desc ? b - a : a - b; - } - }; - - String.prototype.replaceAt = function (index, replacement) { - return this.substr(0, index) + replacement + this.substr(index + replacement.length); - } - fetch("https://api.github.com/users/fraujulian/repos?per_page=999") - .then(response => response.json()) - .then(projects => { - projects = projects.sort(sortOnKey("stargazers_count", true)); - let projectsDiv = document.getElementById("github_projects"); - projectsDiv.innerHTML = ""; - projectsDiv.classList = ""; - for (let i = 0; i < 16; i++) { - let projectDiv = document.createElement("div"); - projectDiv.classList = "card hoverable"; - let project = projects[i]; - if (project != undefined) { - if (project.description == null) - project.description = "This project has no description"; - if (project.language == null) - project.language = "No language stored!"; - project.name = project.name.replaceAll('_', ' ').replaceAll('-', ' '); - projectDiv.innerHTML = ` -
-
- - ${project.name} - -
- 📕 ${project.language}
- ⭐ ${project.stargazers_count} -
-
-

${project.description}

-
- `; - fetch(`https://raw.githubusercontent.com/${project.full_name}/master/README.md`) - .then(response => response.text()) - .then(text => { - let converter = new showdown.Converter(); - let html = converter.makeHtml(text); - let projectModal = document.createElement("div"); - projectModal.classList = "modal github-modal hidden"; - projectModal.innerHTML = ` -
- - Visit on GitHub -
-
- ${html} -
- `; - - projectDiv.onclick = function () { - projectModal.classList.remove("hidden"); - document.body.scrollTop = 0; // Safari - document.documentElement.scrollTop = 0; // Chrome Firefox IE Opera - document.body.style.opacity = 0.2; - }; - - projectModal.onclick = function (evt) { - if (evt.target == projectModal) { - projectModal.classList.add("hidden"); - document.body.style.opacity = 1; - } - }; - document.getElementsByTagName("html")[0].appendChild(projectModal); - }); - projectsDiv.appendChild(projectDiv); - } - } - }); - }; \ No newline at end of file