|
@@ -0,0 +1,152 @@
|
|
|
|
|
+* {
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+body {
|
|
|
|
|
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
|
|
|
+ background-color: #121212;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ line-height: 1.6;
|
|
|
|
|
+ min-height: 100vh;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+nav {
|
|
|
|
|
+ background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
|
|
|
|
|
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
|
|
|
|
|
+ border-bottom: 2px solid #333;
|
|
|
|
|
+ position: sticky;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ z-index: 1000;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-container {
|
|
|
|
|
+ max-width: 1200px;
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+ padding: 0 20px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-brand {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ padding: 15px 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.brand-logo {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ gap: 12px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.logo-icon {
|
|
|
|
|
+ width: 40px;
|
|
|
|
|
+ height: 40px;
|
|
|
|
|
+ background: linear-gradient(135deg, #8C231E, #b8332e);
|
|
|
|
|
+ border-radius: 8px;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ box-shadow: 0 2px 10px rgba(140, 35, 30, 0.3);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.brand-text {
|
|
|
|
|
+ font-size: 24px;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ letter-spacing: -0.5px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.brand-subtitle {
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ color: #888;
|
|
|
|
|
+ font-weight: 400;
|
|
|
|
|
+ margin-top: -4px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-menu {
|
|
|
|
|
+ list-style: none;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ gap: 8px;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-item {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-link {
|
|
|
|
|
+ color: #e0e0e0;
|
|
|
|
|
+ text-decoration: none;
|
|
|
|
|
+ padding: 10px 16px;
|
|
|
|
|
+ border-radius: 8px;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-link:hover {
|
|
|
|
|
+ background-color: rgba(255, 255, 255, 0.1);
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ transform: translateY(-1px);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-link.primary {
|
|
|
|
|
+ background: linear-gradient(135deg, #8C231E, #a52a24);
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.nav-link.primary:hover {
|
|
|
|
|
+ background: linear-gradient(135deg, #a52a24, #8C231E);
|
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
|
+ box-shadow: 0 4px 15px rgba(140, 35, 30, 0.4);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.user-info {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
+ padding: 8px 12px;
|
|
|
|
|
+ border-radius: 20px;
|
|
|
|
|
+ font-size: 13px;
|
|
|
|
|
+ color: #b0b0b0;
|
|
|
|
|
+ margin-left: 10px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.user-name {
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.main-content {
|
|
|
|
|
+ max-width: 1200px;
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+ padding: 40px 20px;
|
|
|
|
|
+ min-height: calc(100vh - 200px);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+@media (max-width: 768px) {
|
|
|
|
|
+ .nav-brand {
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+ align-items: flex-start;
|
|
|
|
|
+ gap: 15px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .nav-menu {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .main-content {
|
|
|
|
|
+ padding: 20px 15px;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|