new file: Dockerfile new file: README.md new file: app.py new file: index.html new file: projekte des/PROJECT_DESCRIPTION.txt new file: projekte des/WEBSITE_DESCRIPTION.md new file: projekte des/website_project_description_en.txt new file: requirements.txt new file: script.js new file: static/css/styles.css new file: static/js/script.js new file: styles.css new file: templates/about.html new file: templates/base.html new file: templates/contact.html new file: templates/index.html new file: templates/minecraft.html new file: templates/project_detail.html new file: templates/projects.html
845 lines
14 KiB
CSS
845 lines
14 KiB
CSS
/* Reset and Base Styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background-color: #0a0a0a;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Navigation */
|
|
.navbar {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
background: rgba(10, 10, 10, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
z-index: 1000;
|
|
padding: 1rem 0;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.nav-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-logo h2 {
|
|
color: #fff;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.nav-logo span {
|
|
color: #00d4ff;
|
|
font-size: 0.9rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-links a::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -5px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, #00d4ff, #0099cc);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.nav-links a:hover::before {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: #00d4ff;
|
|
}
|
|
|
|
.hamburger {
|
|
display: none;
|
|
flex-direction: column;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.hamburger span {
|
|
width: 25px;
|
|
height: 3px;
|
|
background: #fff;
|
|
margin: 3px 0;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-content {
|
|
text-align: center;
|
|
z-index: 2;
|
|
max-width: 800px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 4rem;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
margin-bottom: 0.5rem;
|
|
background: linear-gradient(135deg, #fff, #00d4ff);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
animation: fadeInUp 1s ease;
|
|
}
|
|
|
|
.hero h2 {
|
|
font-size: 2rem;
|
|
color: #ccc;
|
|
margin-bottom: 1rem;
|
|
animation: fadeInUp 1s ease 0.2s both;
|
|
}
|
|
|
|
.highlight {
|
|
color: #00d4ff;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.2rem;
|
|
color: #aaa;
|
|
margin-bottom: 2rem;
|
|
animation: fadeInUp 1s ease 0.4s both;
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
animation: fadeInUp 1s ease 0.6s both;
|
|
}
|
|
|
|
.btn {
|
|
padding: 12px 24px;
|
|
border: none;
|
|
border-radius: 50px;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
transition: all 0.3s ease;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: linear-gradient(135deg, #00d4ff, #0099cc);
|
|
color: #fff;
|
|
box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: #fff;
|
|
border: 2px solid #333;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: #333;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.hero-background {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.floating-icons {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.floating-icons i {
|
|
position: absolute;
|
|
color: rgba(0, 212, 255, 0.1);
|
|
font-size: 3rem;
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
.floating-icons i:nth-child(1) {
|
|
top: 20%;
|
|
left: 10%;
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
.floating-icons i:nth-child(2) {
|
|
top: 60%;
|
|
left: 80%;
|
|
animation-delay: 1s;
|
|
}
|
|
|
|
.floating-icons i:nth-child(3) {
|
|
top: 30%;
|
|
right: 20%;
|
|
animation-delay: 2s;
|
|
}
|
|
|
|
.floating-icons i:nth-child(4) {
|
|
bottom: 30%;
|
|
left: 20%;
|
|
animation-delay: 3s;
|
|
}
|
|
|
|
.floating-icons i:nth-child(5) {
|
|
bottom: 20%;
|
|
right: 10%;
|
|
animation-delay: 4s;
|
|
}
|
|
|
|
/* Projekte Section */
|
|
.projekte {
|
|
padding: 100px 0;
|
|
background: #111;
|
|
}
|
|
|
|
.projekte h2 {
|
|
text-align: center;
|
|
font-size: 3rem;
|
|
color: #fff;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.section-subtitle {
|
|
text-align: center;
|
|
color: #aaa;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.projects-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 2rem;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.project-card {
|
|
background: linear-gradient(145deg, #1a1a1a, #222);
|
|
border-radius: 15px;
|
|
padding: 2rem;
|
|
transition: all 0.3s ease;
|
|
border: 1px solid #333;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.project-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, #00d4ff, #0099cc);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.project-card:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.project-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
|
|
}
|
|
|
|
.project-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.project-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.5rem;
|
|
color: #fff;
|
|
}
|
|
|
|
.minecraft .project-icon {
|
|
background: linear-gradient(135deg, #8b4513, #654321);
|
|
}
|
|
|
|
.discord .project-icon {
|
|
background: linear-gradient(135deg, #7289da, #5865f2);
|
|
}
|
|
|
|
.coming-soon .project-icon {
|
|
background: linear-gradient(135deg, #666, #444);
|
|
}
|
|
|
|
.project-meta h3 {
|
|
color: #fff;
|
|
font-size: 1.3rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.project-type {
|
|
color: #00d4ff;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.project-card p {
|
|
color: #ccc;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.project-features {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.feature-tag {
|
|
background: rgba(0, 212, 255, 0.1);
|
|
color: #00d4ff;
|
|
padding: 0.3rem 0.8rem;
|
|
border-radius: 20px;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
border: 1px solid rgba(0, 212, 255, 0.2);
|
|
}
|
|
|
|
.project-links {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.project-link {
|
|
color: #00d4ff;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.project-link:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.project-stats {
|
|
display: flex;
|
|
gap: 2rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.stat {
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-number {
|
|
display: block;
|
|
color: #00d4ff;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.stat-label {
|
|
color: #aaa;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
/* Tech Stack */
|
|
.tech-stack {
|
|
text-align: center;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.tech-stack h3 {
|
|
color: #fff;
|
|
font-size: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.tech-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
|
|
gap: 1.5rem;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.tech-item {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 10px;
|
|
padding: 1.5rem 1rem;
|
|
transition: all 0.3s ease;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.tech-item:hover {
|
|
transform: translateY(-5px);
|
|
background: rgba(0, 212, 255, 0.1);
|
|
border-color: rgba(0, 212, 255, 0.3);
|
|
}
|
|
|
|
.tech-item i {
|
|
font-size: 2rem;
|
|
color: #00d4ff;
|
|
margin-bottom: 0.5rem;
|
|
display: block;
|
|
}
|
|
|
|
.tech-item span {
|
|
color: #fff;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* About Section */
|
|
.about {
|
|
padding: 100px 0;
|
|
background: #0a0a0a;
|
|
}
|
|
|
|
.about-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.about-text h2 {
|
|
color: #fff;
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.about-text p {
|
|
color: #ccc;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 2rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.skills-list {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.skill-category h4 {
|
|
color: #00d4ff;
|
|
font-size: 1.2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.skill-category ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.skill-category li {
|
|
color: #ccc;
|
|
padding: 0.3rem 0;
|
|
position: relative;
|
|
padding-left: 1.5rem;
|
|
}
|
|
|
|
.skill-category li::before {
|
|
content: '▶';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #00d4ff;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.achievements {
|
|
display: flex;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.achievement {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.achievement i {
|
|
font-size: 2rem;
|
|
color: #00d4ff;
|
|
}
|
|
|
|
.achievement h4 {
|
|
color: #fff;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.achievement p {
|
|
color: #aaa;
|
|
font-size: 0.9rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.about-image {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.code-preview {
|
|
background: #1a1a1a;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
|
max-width: 400px;
|
|
width: 100%;
|
|
}
|
|
|
|
.code-header {
|
|
background: #2d2d2d;
|
|
padding: 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.code-title {
|
|
color: #fff;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.code-buttons {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.code-buttons span {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: #555;
|
|
}
|
|
|
|
.code-buttons span:nth-child(1) {
|
|
background: #ff5f56;
|
|
}
|
|
|
|
.code-buttons span:nth-child(2) {
|
|
background: #ffbd2e;
|
|
}
|
|
|
|
.code-buttons span:nth-child(3) {
|
|
background: #27ca3f;
|
|
}
|
|
|
|
.code-content {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.code-content pre {
|
|
color: #ccc;
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 0.8rem;
|
|
line-height: 1.4;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
/* Kontakt Section */
|
|
.kontakt {
|
|
padding: 100px 0;
|
|
background: #111;
|
|
}
|
|
|
|
.kontakt h2 {
|
|
text-align: center;
|
|
color: #fff;
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.kontakt p {
|
|
text-align: center;
|
|
color: #aaa;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.contact-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.contact-card {
|
|
background: linear-gradient(145deg, #1a1a1a, #222);
|
|
border-radius: 15px;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
border: 1px solid #333;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.contact-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.github::before {
|
|
background: linear-gradient(90deg, #333, #666);
|
|
}
|
|
|
|
.discord::before {
|
|
background: linear-gradient(90deg, #7289da, #5865f2);
|
|
}
|
|
|
|
.spigot::before {
|
|
background: linear-gradient(90deg, #ff8c00, #ffa500);
|
|
}
|
|
|
|
.contact-card:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.contact-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
|
|
}
|
|
|
|
.contact-card i {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
color: #00d4ff;
|
|
}
|
|
|
|
.contact-card h3 {
|
|
color: #fff;
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.contact-card p {
|
|
color: #ccc;
|
|
margin: 0;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: #0a0a0a;
|
|
padding: 2rem 0;
|
|
border-top: 1px solid #333;
|
|
}
|
|
|
|
.footer-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.footer-text h3 {
|
|
color: #fff;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.footer-text p {
|
|
color: #aaa;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.footer-links {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: #aaa;
|
|
font-size: 1.5rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: #00d4ff;
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
padding-top: 1rem;
|
|
border-top: 1px solid #333;
|
|
}
|
|
|
|
.footer-bottom p {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% {
|
|
transform: translateY(0px);
|
|
}
|
|
50% {
|
|
transform: translateY(-20px);
|
|
}
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.hamburger {
|
|
display: flex;
|
|
}
|
|
|
|
.nav-links {
|
|
display: none;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.hero h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.hero-buttons {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.about-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.skills-list {
|
|
grid-template-columns: 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.achievements {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.projects-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.tech-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
|
|
}
|
|
|
|
.contact-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.footer-content {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.container {
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.projekte h2,
|
|
.about-text h2,
|
|
.kontakt h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.project-card,
|
|
.contact-card {
|
|
padding: 1.5rem;
|
|
}
|
|
} |