🎨 style: update base styles and templates for improved layout and design

This commit is contained in:
2025-05-02 18:46:05 +02:00
parent daf2704253
commit e8d356a27a
3 changed files with 321 additions and 887 deletions

View File

@@ -136,7 +136,7 @@
--accent-primary:#7c3aed;
--accent-secondary:#8b5cf6;
--glow-effect:0 0 8px rgba(139,92,246,.08);
background-image: linear-gradient(to bottom right, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
background-image: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.9));
background-attachment: fixed;
}
/* DarkMode */
@@ -161,42 +161,115 @@
background:linear-gradient(135deg,var(--accent-primary),var(--accent-secondary));
-webkit-background-clip:text; background-clip:text; color:transparent; text-shadow:none;
}
.glass-morphism { backdrop-filter: blur(10px); }
.glass-navbar { @apply glass-morphism border backdrop-blur-xl; }
.light .glass-navbar { background-color:rgba(255,255,255,.8); border-color:rgba(0,0,0,.05); }
.dark .glass-navbar { background-color:rgba(10,14,25,.8); border-color:rgba(255,255,255,.05); }
.glass-morphism {
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
transition: all 0.3s ease;
}
.glass-navbar {
@apply glass-morphism border backdrop-blur-xl;
}
body:not(.dark) .glass-navbar {
background-color:rgba(255,255,255,.85);
border-color:rgba(0,0,0,.05);
box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.dark .glass-navbar {
background-color:rgba(10,14,25,.8);
border-color:rgba(255,255,255,.05);
}
/* Light-Mode spezifische Stile */
body:not(.dark) {
background-color: var(--bg-primary);
color: var(--text-primary);
background-image: linear-gradient(135deg, rgba(249, 250, 251, 0.92), rgba(243, 244, 246, 0.92));
}
.nav-link-light {
body:not(.dark) .nav-link {
color: var(--text-secondary);
transition: all 0.3s ease;
}
.nav-link-light:hover {
color: var(--text-primary);
background-color: rgba(126, 34, 206, 0.1);
}
.nav-link-light-active {
color: var(--accent-primary);
background-color: rgba(126, 34, 206, 0.15);
border-radius: 0.5rem;
font-weight: 500;
padding: 0.5rem 0.75rem;
}
body:not(.dark) .nav-link:hover {
color: var(--text-primary);
background-color: rgba(124, 58, 237, 0.08);
transform: translateY(-1px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
body:not(.dark) .nav-link-active,
body:not(.dark) .nav-link-light-active {
color: var(--accent-primary);
background-color: rgba(124, 58, 237, 0.12);
font-weight: 600;
}
/* Kartendesign im Light-Mode */
body:not(.dark) .card {
background-color: white;
border: 1px solid #e5e7eb;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
background-color: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(229, 231, 235, 0.6);
box-shadow: 0 4px 15px -1px rgba(0, 0, 0, 0.05), 0 2px 8px -1px rgba(0, 0, 0, 0.03);
border-radius: 12px;
transition: all 0.3s ease;
}
body:not(.dark) .card:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.05);
transform: translateY(-3px);
border-color: rgba(124, 58, 237, 0.2);
}
body:not(.dark) .glass-card {
background-color: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
border-radius: 16px;
transition: all 0.3s ease;
}
body:not(.dark) .glass-card:hover {
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
transform: translateY(-3px);
border-color: rgba(124, 58, 237, 0.25);
}
/* Verbesserte Buttons im Light Mode */
body:not(.dark) .btn {
background: linear-gradient(135deg, #8b5cf6, #6d28d9);
color: white;
border: none;
box-shadow: 0 3px 6px rgba(91, 33, 182, 0.25);
border-radius: 10px;
padding: 0.625rem 1.25rem;
font-weight: 600;
transition: all 0.2s ease;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
body:not(.dark) .btn:hover {
background: linear-gradient(135deg, #9f7afa, #7c3aed);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(109, 40, 217, 0.3);
}
/* Light Mode Netzwerk-Hintergrund */
body:not(.dark) .network-background {
opacity: 0.3;
}
body:not(.dark) .network-background .node {
fill: rgba(124, 58, 237, 0.5);
}
body:not(.dark) .network-background .link {
stroke: rgba(124, 58, 237, 0.2);
stroke-width: 1.5;
}
</style>
</head>

View File

@@ -4,521 +4,7 @@
{% block extra_css %}
<style>
/* Grundstile für das Profil mit verbessertem Glasmorphismus */
.profile-container {
background: rgba(24, 28, 45, 0.75);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 24px;
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
padding: 2rem;
margin-bottom: 2rem;
transition: all 0.3s ease;
}
.profile-container:hover {
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
transform: translateY(-3px);
}
/* Verbesserte Profile-Header mit dynamischer User-Anzeige */
.profile-header {
display: flex;
align-items: flex-start;
margin-bottom: 2rem;
gap: 2.5rem;
position: relative;
}
.avatar-container {
width: 180px;
height: 180px;
border-radius: 50%;
background: rgba(32, 36, 55, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 3px solid rgba(179, 143, 255, 0.3);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 15px rgba(179, 143, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
transition: all 0.3s ease;
flex-shrink: 0;
}
.avatar-container:hover {
transform: scale(1.05);
border: 3px solid rgba(179, 143, 255, 0.5);
box-shadow: 0 12px 45px rgba(0, 0, 0, 0.3), 0 0 25px rgba(179, 143, 255, 0.35);
}
.avatar-container img {
width: 100%;
height: 100%;
object-fit: cover;
transition: filter 0.3s ease;
}
.avatar-container:hover img {
filter: brightness(1.1);
}
.avatar-edit {
position: absolute;
bottom: 0;
right: 0;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
.avatar-edit:hover {
background: rgba(255, 255, 255, 0.3);
}
.user-info {
flex: 1;
padding-top: 0.5rem;
}
.user-info h1 {
font-size: 2.75rem;
font-weight: 800;
margin-bottom: 0.75rem;
background: linear-gradient(135deg, #b38fff, #58a9ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 2px 10px rgba(179, 143, 255, 0.3);
letter-spacing: 0.3px;
line-height: 1.2;
}
.user-bio {
font-size: 1.15rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.9);
max-width: 650px;
margin-bottom: 1.5rem;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.user-meta {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
color: rgba(255, 255, 255, 0.7);
font-size: 1rem;
align-items: center;
}
.user-meta span {
display: flex;
align-items: center;
gap: 0.5rem;
transition: all 0.25s ease;
}
.user-meta span:hover {
color: rgba(255, 255, 255, 1);
transform: translateY(-2px);
}
.user-meta i {
opacity: 0.8;
}
/* Benutzer-Aktionsbereich */
.profile-actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 2rem;
}
.profile-action-btn {
padding: 0.75rem 1.5rem;
border-radius: 16px;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
background: rgba(32, 36, 55, 0.75);
color: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(255, 255, 255, 0.12);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.profile-action-btn:hover {
transform: translateY(-3px);
background: rgba(179, 143, 255, 0.25);
border: 1px solid rgba(179, 143, 255, 0.3);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(179, 143, 255, 0.2);
text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}
.profile-action-btn.primary {
background: rgba(179, 143, 255, 0.25);
color: #ffffff;
border: 1px solid rgba(179, 143, 255, 0.3);
}
.profile-action-btn.primary:hover {
background: rgba(179, 143, 255, 0.35);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 20px rgba(179, 143, 255, 0.35);
}
/* Verbesserte Profil-Tabs */
.profile-tabs {
display: flex;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 1.5rem;
overflow-x: auto;
scrollbar-width: thin;
scrollbar-color: rgba(179, 143, 255, 0.5) rgba(255, 255, 255, 0.05);
}
.profile-tab {
padding: 1rem 1.5rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.7);
border-bottom: 3px solid transparent;
transition: all 0.3s ease;
cursor: pointer;
white-space: nowrap;
}
.profile-tab:hover {
color: rgba(255, 255, 255, 0.9);
background: rgba(255, 255, 255, 0.05);
}
.profile-tab.active {
color: #b38fff;
border-bottom: 3px solid #b38fff;
background: rgba(179, 143, 255, 0.1);
}
/* Aktivitäten und Beiträge */
.activity-feed {
display: flex;
flex-direction: column;
gap: 1.25rem;
}
.activity-card {
background: rgba(32, 36, 55, 0.7);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
}
.activity-card:hover {
transform: translateY(-3px);
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(179, 143, 255, 0.15);
}
.activity-header {
padding: 1.25rem 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
display: flex;
align-items: center;
justify-content: space-between;
}
.activity-title {
font-size: 1.25rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.95);
}
.activity-date {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.6);
}
.activity-content {
padding: 1.5rem;
color: rgba(255, 255, 255, 0.85);
font-size: 1.05rem;
line-height: 1.6;
}
.activity-footer {
padding: 1rem 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.06);
display: flex;
align-items: center;
justify-content: space-between;
}
.activity-reactions {
display: flex;
gap: 0.75rem;
}
.reaction-button {
display: flex;
align-items: center;
gap: 0.35rem;
padding: 0.5rem 0.75rem;
border-radius: 12px;
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
background: rgba(255, 255, 255, 0.05);
border: none;
transition: all 0.3s ease;
cursor: pointer;
}
.reaction-button:hover {
background: rgba(179, 143, 255, 0.15);
color: rgba(255, 255, 255, 0.95);
transform: translateY(-2px);
}
.reaction-button.active {
background: rgba(179, 143, 255, 0.2);
color: #b38fff;
}
.activity-actions {
display: flex;
gap: 0.75rem;
}
.action-button {
padding: 0.5rem 0.75rem;
border-radius: 12px;
font-size: 0.9rem;
background: rgba(179, 143, 255, 0.1);
color: #b38fff;
border: 1px solid rgba(179, 143, 255, 0.25);
transition: all 0.3s ease;
cursor: pointer;
}
.action-button:hover {
background: rgba(179, 143, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 10px rgba(179, 143, 255, 0.2);
}
/* Verbesserte Einstellungskarten */
.settings-card {
background: rgba(32, 36, 55, 0.7);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 1.5rem;
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
transition: all 0.3s ease;
}
.settings-card:hover {
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(179, 143, 255, 0.15);
}
.settings-card-header {
padding: 1.25rem 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
font-size: 1.2rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.95);
}
.settings-card-body {
padding: 1.5rem;
}
.settings-group {
margin-bottom: 1.5rem;
}
.settings-label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.85);
}
.settings-input {
width: 100%;
padding: 0.75rem 1rem;
background: rgba(24, 28, 45, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
color: rgba(255, 255, 255, 0.95);
font-size: 1rem;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.settings-input:focus {
border-color: rgba(179, 143, 255, 0.4);
box-shadow: 0 0 0 3px rgba(179, 143, 255, 0.15);
outline: none;
}
/* Light Mode Anpassungen */
body:not(.dark) .profile-container,
body:not(.dark) .profile-tabs,
body:not(.dark) .activity-card,
body:not(.dark) .settings-card {
background: rgba(255, 255, 255, 0.92);
border: 1px solid rgba(0, 0, 0, 0.08);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
body:not(.dark) .glass-card {
background: rgba(255, 255, 255, 0.92);
border: 1px solid rgba(0, 0, 0, 0.08);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
border-radius: 16px;
}
body:not(.dark) .avatar-container {
background: rgba(255, 255, 255, 0.9);
border: 3px solid rgba(126, 63, 242, 0.3);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 15px rgba(126, 63, 242, 0.15);
}
body:not(.dark) .user-info h1 {
background: linear-gradient(135deg, #7e3ff2, #3282f6);
text-shadow: none;
}
body:not(.dark) .user-bio,
body:not(.dark) .activity-content {
color: #1a202c;
text-shadow: none;
}
body:not(.dark) .user-meta span {
color: #4a5568;
}
body:not(.dark) .stat-item,
body:not(.dark) .settings-input {
background: rgba(255, 255, 255, 0.7);
border: 1px solid rgba(0, 0, 0, 0.05);
}
body:not(.dark) .stat-value {
background: linear-gradient(135deg, #7e3ff2, #3282f6);
}
body:not(.dark) .stat-label {
color: #4a5568;
}
body:not(.dark) .profile-tab {
color: #4a5568;
}
body:not(.dark) .profile-tab:hover {
background: rgba(0, 0, 0, 0.03);
color: #1a202c;
}
body:not(.dark) .profile-tab.active {
color: #7e3ff2;
border-bottom: 3px solid #7e3ff2;
background: rgba(126, 63, 242, 0.08);
}
body:not(.dark) .activity-title,
body:not(.dark) .settings-card-header,
body:not(.dark) .settings-label {
color: #1a202c;
}
body:not(.dark) .activity-date {
color: #718096;
}
body:not(.dark) .activity-footer {
border-top: 1px solid rgba(0, 0, 0, 0.05);
}
body:not(.dark) .reaction-button {
color: #4a5568;
background: rgba(0, 0, 0, 0.03);
}
body:not(.dark) .reaction-button:hover {
background: rgba(126, 63, 242, 0.1);
color: #7e3ff2;
}
body:not(.dark) .reaction-button.active {
background: rgba(126, 63, 242, 0.15);
color: #7e3ff2;
}
body:not(.dark) .action-button {
background: rgba(126, 63, 242, 0.1);
color: #7e3ff2;
border: 1px solid rgba(126, 63, 242, 0.2);
}
body:not(.dark) .action-button:hover {
background: rgba(126, 63, 242, 0.2);
}
/* Verbesserte Styles für Card-Items im Light Mode */
body:not(.dark) .thought-item,
body:not(.dark) .mindmap-item,
body:not(.dark) .collection-item {
background: white !important;
border: 1px solid rgba(0, 0, 0, 0.08) !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
body:not(.dark) .thought-item:hover,
body:not(.dark) .mindmap-item:hover,
body:not(.dark) .collection-item:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
transform: translateY(-3px);
border: 1px solid rgba(126, 63, 242, 0.2) !important;
}
body:not(.dark) .edit-profile-btn {
background: #7e3ff2;
color: white;
padding: 0.5rem 1rem;
border-radius: 8px;
font-weight: 500;
transition: all 0.2s ease;
border: none;
}
body:not(.dark) .edit-profile-btn:hover {
background: #6d28d9;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(109, 40, 217, 0.25);
}
</style>
{% endblock %}
{% block content %}
@@ -790,7 +276,7 @@
<div class="text-center py-12">
<i class="fas fa-project-diagram text-5xl text-gray-400 mb-4"></i>
<p class="text-gray-500">Noch keine Verbindungen erstellt</p>
<a href="{{ url_for('mindmap') }}" class="mt-4 inline-block px-4 py-2 bg-purple-600 text-white rounded-lg">Verbindungen in der Mindmap erstellen</a>
<a href="{{ url_for('mindmap') }}" class="mt-4 inline-block px-4 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700 transition-colors">Verbindungen in der Mindmap erstellen</a>
</div>
{% endif %}
</div>