Add 1 files
Browse files- index.html +10 -6
index.html
CHANGED
@@ -36,17 +36,20 @@
|
|
36 |
.main-content {
|
37 |
transition: margin-left 0.3s;
|
38 |
}
|
39 |
-
|
|
|
|
|
40 |
background-color: #1a1a2e;
|
41 |
}
|
42 |
-
.dark .dark
|
43 |
background-color: #16213e;
|
44 |
}
|
45 |
-
.dark .dark
|
46 |
color: #e2e8f0;
|
47 |
}
|
48 |
-
.dark .dark
|
49 |
border-color: #2d3748;
|
|
|
50 |
}
|
51 |
#usaMap {
|
52 |
height: 400px;
|
@@ -67,10 +70,11 @@
|
|
67 |
}
|
68 |
</style>
|
69 |
</head>
|
70 |
-
<body class="bg-white text-gray-800">
|
|
|
71 |
<div class="flex h-screen overflow-hidden">
|
72 |
<!-- Sidebar -->
|
73 |
-
<div class="sidebar bg-purple-800 text-white
|
74 |
<div class="p-4 flex items-center justify-between border-b border-purple-700">
|
75 |
<div class="flex items-center space-x-2">
|
76 |
<i class="fas fa-users text-2xl"></i>
|
|
|
36 |
.main-content {
|
37 |
transition: margin-left 0.3s;
|
38 |
}
|
39 |
+
|
40 |
+
/* Dark mode classes */
|
41 |
+
.dark .dark-bg-primary {
|
42 |
background-color: #1a1a2e;
|
43 |
}
|
44 |
+
.dark .dark-bg-secondary {
|
45 |
background-color: #16213e;
|
46 |
}
|
47 |
+
.dark .dark-text-light {
|
48 |
color: #e2e8f0;
|
49 |
}
|
50 |
+
.dark .dark-border {
|
51 |
border-color: #2d3748;
|
52 |
+
}order-color: #2d3748;
|
53 |
}
|
54 |
#usaMap {
|
55 |
height: 400px;
|
|
|
70 |
}
|
71 |
</style>
|
72 |
</head>
|
73 |
+
<body class="bg-white text-gray-800 ">
|
74 |
+
|
75 |
<div class="flex h-screen overflow-hidden">
|
76 |
<!-- Sidebar -->
|
77 |
+
<div class="sidebar bg-purple-800 text-white flex flex-col dark-bg-secondary">
|
78 |
<div class="p-4 flex items-center justify-between border-b border-purple-700">
|
79 |
<div class="flex items-center space-x-2">
|
80 |
<i class="fas fa-users text-2xl"></i>
|