1
0

prensentation weg

This commit is contained in:
matt 2025-05-28 21:22:00 +02:00
parent aa6f78f2de
commit 2e8fe5d9ca
3 changed files with 0 additions and 197 deletions

View File

@ -1,75 +0,0 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Crafter</title>
<link href="" rel="stylesheet">
<style>
@font-face {
font-family: "Titillium";
src: url("/Titillium-Web-Regular.ttf");
}
body {
font-family: 'Titillium';
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background-color: #e6f7ff; /* Leichtes Blau */
}
h1 {
text-align: center;
}
h2 {
text-align: center;
}
h1, h2, h3 {
text-align: center;
}
.category-container {
width: 80%;
max-width: 800px;
margin-top: 20px;
}
.category {
padding: 15px;
border: 1px solid #ccc;
border-radius: 8px;
margin: 10px 0;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
text-align: left;
}
.category-title {
font-size: 1.2em;
font-weight: bold;
margin-bottom: 5px;
}
.category-description {
font-size: 1em;
margin-bottom: 10px;
}
.category a {
color: #007bff;
text-decoration: none;
}
.category a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1><img src="/icons/Controller.png" height="150svh"><br/>Creative Crafter</h1>
<h1>Presentations</h1>
<div class="category-container">
<div class="category">
<div class="category-title">London</div>
<div class="category-description">A presentation about london.</div>
<a href="/presentations/london.html">Mehr erfahren</a>
</div>
</body>
</html>

View File

@ -1,122 +0,0 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Crafter</title>
<script type="module" src="https://cdn.jsdelivr.net/npm/ldrs/dist/auto/quantum.js"></script>
<style>
body, html {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background-color: #e6f7ff; /* Leichtes Blau */
}
.loader-container {
display: none;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
background-color: rgba(173, 216, 230, 0.8); /* Halbtransparenter bläulicher Hintergrund */
z-index: 9999; /* Sicherstellen, dass die Ladeanimation immer im Vordergrund ist */
}
/* Ladeanimation anzeigen */
.loading .loader-container {
display: flex;
}
@font-face {
font-family: "Titillium";
src: url("/Titillium-Web-Regular.ttf");
}
body {
font-family: 'Titillium';
}
h1, h2, h3 {
text-align: center;
}
.button {
padding: 16px 32px; /* Doppelte Größe */
border-radius: 8px;
background: linear-gradient(to bottom, #007bff, #0056b3); /* Blau */
box-shadow: 0 2px 4px rgba(0,0,0,0.7);
transition: all 0.2s;
display: flex;
align-items: center;
gap: 8px;
margin-top: 20px; /* Abstand zum oberen Inhalt */
}
.button:hover {
box-shadow: 0 4px 8px rgba(0,0,0,0.6);
}
.button:active {
box-shadow: 0 0px 1px rgba(0,0,0,0.8);
transform: scale(0.995);
}
.button-text {
font-weight: 600;
color: white;
font-size: 1.5em; /* Textgröße anpassen */
}
</style>
</head>
<body>
<!-- Ladeanimation -->
<div class="loader-container">
<l-quantum
size="90"
speed="1.75"
color="black"
></l-quantum>
</div>
<br>
<br>
<!-- Deine anderen Inhalte hier -->
<h1><img src="/icons/Controller.png" height="150svh">
<br/>
Creative Crafter</h1>
<h3>A presentation about London</h3>
<br>
<br>
<!-- Button hinzufügen -->
<a href="/presentations/präsentation_london_final.pptx" download> <button class="button"> <div class="button-inner"> <span class="button-text">DOWNLOAD</span> </div> </button> </a>
<footer><i id="footer-text"></i></footer>
<script>
// Ladeanimation beim Laden der Seite anzeigen
document.body.classList.add('loading');
// Ladeanimation entfernen, wenn die Seite vollständig geladen ist
window.addEventListener('load', () => {
document.body.classList.remove('loading');
});
function currentYear() {
var currentYear = new Date().getFullYear();
document.getElementById('footer-text').innerHTML = "2023-" + currentYear;
}
// Ruf die Funktion auf, um den Footer zu aktualisieren
window.addEventListener('load', currentYear);
</script>
</body>
</html>