Spaces:
Sleeping
Sleeping
Update static/css/apps-hub/ai-sidebar.css
Browse files
static/css/apps-hub/ai-sidebar.css
CHANGED
|
@@ -1,81 +1,82 @@
|
|
| 1 |
-
/* ai-sidebar.css */
|
| 2 |
-
|
| 3 |
-
.ai-sidebar__container {
|
| 4 |
-
display: flex;
|
| 5 |
-
min-height: 100vh;
|
| 6 |
-
|
| 7 |
-
}
|
| 8 |
-
|
| 9 |
-
.ai-sidebar__sidebar {
|
| 10 |
-
max-width: 250px;
|
| 11 |
-
background-color: #ffffff;
|
| 12 |
-
padding: 10px;
|
| 13 |
-
box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
|
| 14 |
-
display: flex;
|
| 15 |
-
flex-direction: column;
|
| 16 |
-
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 17 |
-
}
|
| 18 |
-
|
| 19 |
-
.ai-sidebar__title {
|
| 20 |
-
font-size: 1.5rem;
|
| 21 |
-
font-weight: bold;
|
| 22 |
-
color: #3f72af;
|
| 23 |
-
margin-bottom: 20px;
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
color:
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
|
|
|
| 81 |
}
|
|
|
|
| 1 |
+
/* ai-sidebar.css */
|
| 2 |
+
|
| 3 |
+
.ai-sidebar__container {
|
| 4 |
+
display: flex;
|
| 5 |
+
min-height: 100vh;
|
| 6 |
+
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
.ai-sidebar__sidebar {
|
| 10 |
+
max-width: 250px;
|
| 11 |
+
background-color: #ffffff;
|
| 12 |
+
padding: 10px;
|
| 13 |
+
box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
|
| 14 |
+
display: flex;
|
| 15 |
+
flex-direction: column;
|
| 16 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
.ai-sidebar__title {
|
| 20 |
+
font-size: 1.5rem;
|
| 21 |
+
font-weight: bold;
|
| 22 |
+
color: #3f72af;
|
| 23 |
+
margin-bottom: 20px;
|
| 24 |
+
text-align: center;
|
| 25 |
+
justify-content: center;
|
| 26 |
+
}
|
| 27 |
+
.ai-sidebar__app-list {
|
| 28 |
+
list-style-type: none;
|
| 29 |
+
padding: 0;
|
| 30 |
+
margin: 0;
|
| 31 |
+
flex-grow: 1;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
.ai-sidebar__app-item {
|
| 35 |
+
display: flex;
|
| 36 |
+
align-items: center;
|
| 37 |
+
padding: 10px;
|
| 38 |
+
margin-bottom: 10px;
|
| 39 |
+
border-radius: 8px;
|
| 40 |
+
cursor: pointer;
|
| 41 |
+
transition: background-color 0.2s ease;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.ai-sidebar__app-item:hover {
|
| 45 |
+
background-color: #3f72af;
|
| 46 |
+
color: white;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
.ai-sidebar__app-icon {
|
| 50 |
+
width: 36px;
|
| 51 |
+
height: 36px;
|
| 52 |
+
border-radius: 8px;
|
| 53 |
+
display: flex;
|
| 54 |
+
justify-content: center;
|
| 55 |
+
align-items: center;
|
| 56 |
+
margin-right: 16px;
|
| 57 |
+
color: white;
|
| 58 |
+
font-size: 1.1rem;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
.ai-sidebar__app-name {
|
| 62 |
+
font-weight: 500;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.ai-sidebar__content {
|
| 66 |
+
flex-grow: 1;
|
| 67 |
+
padding: 20px;
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
.ai-sidebar__footer {
|
| 71 |
+
margin-top: auto;
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
.ai-sidebar__footer .ai-sidebar__app-item {
|
| 75 |
+
text-decoration: none;
|
| 76 |
+
color: inherit;
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
.ai-sidebar__footer .ai-sidebar__app-icon {
|
| 80 |
+
width: 40px;
|
| 81 |
+
height: 40px;
|
| 82 |
}
|