From 0c93fda139601d616c7cfbfd13ae3701f291ee1c Mon Sep 17 00:00:00 2001 From: Marius Heidenreich <marius.heidenreich@tu-dortmund.de> Date: Sat, 22 Mar 2025 20:05:37 +0100 Subject: [PATCH] added link to git --- .gitignore | 3 ++- public/index.html | 31 +++++++++++++++++++++++++++++-- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 000a401..3d2880f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /public/* !/public/GET_racing_schwarz.svg -!/public/index.html \ No newline at end of file +!/public/index.html +__pycache__ \ No newline at end of file diff --git a/public/index.html b/public/index.html index a3a8993..3e4505d 100644 --- a/public/index.html +++ b/public/index.html @@ -13,7 +13,7 @@ height: 100vh; margin: 0; font-family: 'Helvetica Neue', sans-serif; - background: linear-gradient(135deg, #ebebeb, #c9c9c9); + background: linear-gradient(135deg, #eeeeee, #c9c9c9); animation: gradientAnimation 10s ease infinite; background-size: 200% 200%; } @@ -38,12 +38,20 @@ color: #555; animation: fadeInUp 0.5s ease-out forwards; opacity: 0; + margin: 0; } h3 { text-align: center; margin: auto; color: #777; } + a { + color: #777; + text-decoration: none; + } + a:hover { + text-decoration: underline; + } .by { display: inline-grid; grid-template-columns: auto auto; @@ -57,7 +65,8 @@ text-align: center; } .buttons { - margin-top: 6em; + margin-top: 4em; + margin-bottom: 3em; display: grid; grid-template-columns: auto auto; gap: 20px; @@ -119,6 +128,21 @@ transform: translateY(0); } } + .git { + color: #777; + bottom: 0.5em; + position: absolute; + animation: fadeIn 0.7s ease-out 1s forwards; + opacity: 0; + } + @keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } + } </style> </head> <body> @@ -140,5 +164,8 @@ </div> </div> </div> +<div class="git"> + <a href="https://gitlab.fachschaften.org/get-racing-foss/fs-elo">Fork me on Gitlab</a> +</div> </body> </html> -- GitLab