From: Andreas Glashauser Date: Mon, 24 Mar 2025 07:34:20 +0000 (+0100) Subject: Initial commit X-Git-Url: https://git.andreasglashauser.com/?a=commitdiff_plain;ds=sidebyside;p=personal-website.git Initial commit --- 0d6507fc28d31416c67540a7a8a4e28a5d4ca2df diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d4d120a --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +# Released under MIT License + +Copyright (c) 2025 Andreas Glashauser. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..67036e5 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +My personal website. Surprisingly works without 27 JavaScript Frameworks! diff --git a/favicon.png b/favicon.png new file mode 100644 index 0000000..67ab90d Binary files /dev/null and b/favicon.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..149ff13 --- /dev/null +++ b/index.html @@ -0,0 +1,41 @@ + + + + + andreasglashauser.com + + + + + +
+ +
+

+ You can find my projects + here + and on + GitHub.
+ Commits are signed with my SSH public key. +

+
+

+ Feel free to contact me via + Matrix + or + mail. +

+
+
+ + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..f48a2ed --- /dev/null +++ b/style.css @@ -0,0 +1,89 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + background-color: #121212; + color: #f0f0f0; + font-family: sans-serif; + display: flex; + flex-direction: column; + align-items: center; + min-height: 100vh; + overflow: hidden; +} + +.content { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + width: 100%; + padding-bottom: 5rem; +} + +.logo { + width: 100px; + height: 100px; + border-radius: 50%; + border: 1px solid #4d4d4d; + background-color: #1a1a1a; + display: flex; + align-items: center; + justify-content: center; + font-size: 3rem; + font-weight: bold; + margin-bottom: 1.5rem; +} + +.intro { + max-width: 600px; + text-align: center; + margin-bottom: 2rem; + line-height: 1.5; +} + +.intro a { + color: #bbb; + text-decoration: none; + border-bottom: 1px dashed #555; +} +.intro a:hover { + color: #fff; + border-bottom-color: #fff; +} + +footer { + position: fixed; + bottom: 0; + left: 0; + right: 0; + + text-align: center; + font-size: 0.7rem; + line-height: 1.4; + opacity: 0.8; + margin: 0; + padding: 0.5rem 0; + + word-wrap: break-word; + overflow-wrap: break-word; + word-break: break-word; +} + +footer a { + color: #bbb; + text-decoration: none; +} +footer a:hover { + color: #fff; +} + +@media (max-width: 480px) { + .buttons a { + width: 100%; + } +}