diff --git a/webseite/assets/css/styles.css b/webseite/assets/css/styles.css index 46efe87..49ff3b8 100644 --- a/webseite/assets/css/styles.css +++ b/webseite/assets/css/styles.css @@ -87,7 +87,7 @@ box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); } -/* Impressum page styles */ +/* Imprint page styles */ .content { margin: auto; padding: 2rem; diff --git a/webseite/assets/css/subject.css b/webseite/assets/css/subject.css new file mode 100644 index 0000000..6a8374c --- /dev/null +++ b/webseite/assets/css/subject.css @@ -0,0 +1,399 @@ +/* Subject page styles */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; +} + +body { + background-color: var(--bg-color); + min-height: 100vh; + display: flex; + overflow-x: hidden; +} + +.sidebar { + width: 280px; + height: 100vh; + padding: 2rem; + position: fixed; + left: 0; + top: 0; + transition: transform 0.3s ease; + z-index: 50; +} + +.sidebar-header { + color: white; + margin-bottom: 2rem; + display: flex; + align-items: center; + gap: 1rem; +} + +.sidebar-header i { + font-size: 2rem; +} + +.nav-link { + display: flex; + align-items: center; + padding: 1rem; + color: rgba(255, 255, 255, 0.8); + text-decoration: none; + border-radius: 12px; + margin-bottom: 0.5rem; + transition: all 0.2s ease; +} + +.nav-link:hover { + background: rgba(255, 255, 255, 0.1); + color: white; + transform: translateX(5px); +} + +.nav-link i { + margin-right: 1rem; + font-size: 1.25rem; +} + +.search-container { + position: fixed; + top: 0; + right: 0; + padding: 1rem; + background: var(--card-bg); + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); + z-index: 40; + display: flex; + align-items: center; + gap: 1rem; + transition: all 0.3s ease; + width: auto; +} + +.search-box { + flex: 1; + padding: 0.75rem 1rem; + border: 2px solid #E2E8F0; + border-radius: 12px; + outline: none; + font-size: 1rem; + transition: all 0.2s ease; + background: var(--bg-color); +} + +.main-content { + margin-left: 280px; + width: calc(100% - 280px); + padding-top: 5rem; + transition: margin-left 0.3s ease; +} + +.container { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); /* Back to original 380px for desktop */ + gap: 2rem; /* Back to original 2rem gap */ + padding: 2rem; + max-width: 1600px; + margin: 0 auto; + width: 100%; +} + +.topic-card { + background: var(--card-bg); + border-radius: 20px; + padding: 2rem; + position: relative; + overflow: hidden; + border: 1px solid rgba(255, 255, 255, 0.1); + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); + transform: translateY(0); + transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), + box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1); + display: flex; + flex-direction: column; + gap: 1.5rem; +} + +.topic-card::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 5px; + transform: scaleX(0); + transform-origin: left; +} + +.topic-card:hover { + transform: translateY(-5px); + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), + 0 10px 10px -5px rgba(0, 0, 0, 0.04); +} + +.topic-card:hover::before { + transform: scaleX(1); +} + +.topic-header { + display: flex; + align-items: center; + margin-bottom: 1.5rem; + position: relative; +} + +.topic-icon { + font-size: 2.5rem; + margin-right: 1rem; +} + + +.topic-title { + font-size: 1.5rem; + font-weight: 600; + margin-bottom: 0.5rem; +} + +.topic-description { + font-size: 1rem; + line-height: 1.7; + margin-bottom: 1.5rem; +} + +.related-topics { + margin: 0; +} + +.download-section { + margin-top: auto; +} + +.progress-container { + margin-top: 1.5rem; +} + +.download-section h4 { + margin-bottom: 1rem; + font-size: 1rem; +} + +.download-links { + display: flex; + gap: 1rem; + flex-wrap: wrap; +} + +.download-btn { + padding: 0.75rem 1.25rem; + border-radius: 10px; + text-decoration: none; + font-size: 0.9rem; + transition: all 0.2s ease; + backdrop-filter: blur(5px); + flex: 1; + min-width: 120px; + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; + transform: translateY(0); /* Set initial transform state */ + transition: all 0.2s ease; +} + +.download-btn:hover { + transform: translateY(-2px); +} + +@media (min-width: 1025px) { + .menu-toggle { + display: none; + } + + .sidebar { + transform: translateX(0); + } + + .search-container { + left: 280px; /* Sidebar width */ + width: calc(100% - 280px); + } + + .main-content { + margin-left: 280px; + width: calc(100% - 280px); + } +} + +@media (max-width: 1024px) { + .search-container { + width: 100%; + } + .menu-toggle { + display: flex !important; + } + + .sidebar { + transform: translateX(-100%); + } + + .sidebar.active { + transform: translateX(0); + } + + .main-content { + margin-left: 0; + width: 100%; + } + +} + +@media (max-width: 480px) { + .search-container { + padding: 0.75rem; + } + + .search-box { + font-size: 0.9rem; + padding: 0.5rem 0.75rem; + } + + .download-links { + flex-direction: column; + } + + .download-btn { + width: 100%; + } + + .container { + padding: 0.5rem; + } + + .topic-card { + margin: 0 0.5rem; + } +} + +.menu-toggle { + padding: 0.75rem; + border-radius: 10px; + cursor: pointer; + display: none; + align-items: center; + justify-content: center; + color: var(--text-primary); + transition: all 0.3s ease; +} + +/* Add floating animation for icons */ +@keyframes float { + 0%, 100% { transform: translateY(0); } + 50% { transform: translateY(-10px); } +} + +.theme-toggle:hover { + transform: rotate(45deg); +} + +/* Update animation keyframes */ +@keyframes cardAppear { + 0% { + opacity: 0; + transform: translateY(20px); + } + 100% { + opacity: 1; + transform: translateY(0); + } +} + +.download-section h4 { + margin-bottom: 1rem; + font-size: 1rem; +} + +.download-links { + display: flex; + gap: 1rem; + flex-wrap: wrap; +} + +.download-btn { + color: white; + padding: 0.75rem 1.25rem; + border-radius: 10px; + text-decoration: none; + font-size: 0.9rem; + transition: all 0.2s ease; + backdrop-filter: blur(5px); + flex: 1; + min-width: 120px; + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; +} + +.download-btn:hover { + transform: translateY(-2px); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); +} + +/* Add these styles for the related-topics section */ +.related-topics { + padding: 1.25rem; + border-radius: 12px; + margin-bottom: 1.5rem; +} + +.related-topics h4 { + color: var(--primary-color); + margin-bottom: 1rem; + font-size: 1rem; +} + +.related-topics ul { + list-style: none; + display: flex; + flex-wrap: wrap; + gap: 0.5rem; +} + +.related-topics li { + background: white; + padding: 0.5rem 1rem; + border-radius: 20px; + font-size: 0.9rem; + transition: all 0.2s ease; + cursor: pointer; +} + +.related-topics li:hover { + transform: translateY(-2px); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); +} + +.related-topics a { + color: inherit; + text-decoration: none; +} + +/* Improved topic card hover */ +.topic-card { + transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); +} + +.topic-card:hover { + transform: translateY(-5px) scale(1.01); + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); +} + +/* Active nav link style */ +.nav-link.active { + background: rgba(255, 255, 255, 0.15); + color: white; + font-weight: 600; +} \ No newline at end of file diff --git a/webseite/config/subjects/deutsch/properties.json b/webseite/config/subjects/deutsch/properties.json index 98b5b63..08c572e 100644 --- a/webseite/config/subjects/deutsch/properties.json +++ b/webseite/config/subjects/deutsch/properties.json @@ -1,7 +1,7 @@ { "displayName": "Deutsch", - "description": "Deutsch ist blau", - "color": "#FF0000", + "description": "Deutsch ist rot", + "color": "#ef4444", "buttonText": "Erfahre von einem ungeheuren Ungeziefer", "icon": "fa-book" } \ No newline at end of file diff --git a/webseite/config/subjects/mathe/properties.json b/webseite/config/subjects/mathe/properties.json index f755597..c1adc41 100644 --- a/webseite/config/subjects/mathe/properties.json +++ b/webseite/config/subjects/mathe/properties.json @@ -1,7 +1,7 @@ { "displayName": "Mathe", - "description": "Mathe ist gelb", - "color": "#60A5FA", + "description": "Mathe ist blau", + "color": "#3b82f6", "buttonText": "Jetzt rechnen!", "icon": "fa-square-root-alt" } \ No newline at end of file diff --git a/webseite/homepage.php b/webseite/homepage.php index 981f56d..3f9679b 100644 --- a/webseite/homepage.php +++ b/webseite/homepage.php @@ -4,11 +4,11 @@
-