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.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/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/img/logo.png b/img/logo.png new file mode 100644 index 0000000..42c56f1 Binary files /dev/null and b/img/logo.png differ diff --git a/imprint/index.html b/imprint/index.html new file mode 100644 index 0000000..be653fe --- /dev/null +++ b/imprint/index.html @@ -0,0 +1,141 @@ + + + + + + + + Julian Lechner + + + + + + + + +
+
+ +

Imprint

+ +

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: julian@lechner.top +

+ +
+ +

+

Abuse Contact:

+ E-Mail: julian@lechner.top +

+ +
+ +

+

Disclaimer:

+ +

Liability for content

+ The contents of our pages have been created with the greatest care. However, we cannot assume any liability for + the correctness, completeness and topicality of the contents. As a service provider, we are responsible for our + own content on these pages in accordance with § 7 (1) DDG and general legislation. According to §§ 8 to 10 DDG, + however, we are not obliged as a service provider to monitor transmitted or stored third-party information or to + investigate circumstances that indicate illegal activity. Obligations to remove or block the use of information in + accordance with general legislation remain unaffected by this. However, liability in this respect is only possible + from the time of knowledge of a specific infringement. As soon as we become aware of such infringements, we will + remove this content immediately. + +
+
+ +

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. + +
+
+ +

Copyright

+ The content and works created by the site operators on these pages are subject to German copyright law. + Duplication, processing, distribution and any form of commercialization of such material beyond the scope of the + copyright law shall require the prior written consent of its respective author or creator. Downloads and copies of + this site are only permitted for private, non-commercial use. Insofar as the content on this site was not created + by the operator, the copyrights of third parties are respected. In particular, third-party content is identified + as such. Should you nevertheless become aware of a copyright infringement, please inform us accordingly. If we + become aware of any infringements, we will remove such content immediately. + +
+
+ +

Data privacy

+ The use of our website is generally possible without providing personal data. Insofar as personal data (e.g. name, + address or e-mail addresses) is collected on our website, this is always done on a voluntary basis as far as + possible. This data will not be passed on to third parties without your express consent. + We would like to point out that data transmission over the Internet (e.g. when communicating by e-mail) may be + subject to security vulnerabilities. Complete protection of data against access by third parties is not possible. + We hereby expressly prohibit the use of contact data published within the scope of the imprint obligation by third + parties for sending unsolicited advertising and information material. The operators of the website expressly + reserve the right to take legal action in the event of the unsolicited sending of advertising information, such as + spam e-mails. +

+ +
+ +
+ +
+
+ + + + + \ 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