Spaces:
Sleeping
Sleeping
| /* ai-sidebar.css */ | |
| .ai-sidebar__container { | |
| display: flex; | |
| min-height: 100vh; | |
| } | |
| .ai-sidebar__sidebar { | |
| max-width: 250px; | |
| background-color: #ffffff; | |
| padding: 10px; | |
| box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); | |
| display: flex; | |
| flex-direction: column; | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| } | |
| .ai-sidebar__title { | |
| font-size: 1.5rem; | |
| font-weight: bold; | |
| color: #3f72af; | |
| margin-bottom: 20px; | |
| text-align: center; | |
| justify-content: center; | |
| } | |
| .ai-sidebar__app-list { | |
| list-style-type: none; | |
| padding: 0; | |
| margin: 0; | |
| flex-grow: 1; | |
| } | |
| .ai-sidebar__app-item { | |
| display: flex; | |
| align-items: center; | |
| padding: 10px; | |
| margin-bottom: 10px; | |
| border-radius: 8px; | |
| cursor: pointer; | |
| transition: background-color 0.2s ease; | |
| } | |
| .ai-sidebar__app-item:hover { | |
| background-color: #3f72af; | |
| color: white; | |
| } | |
| .ai-sidebar__app-icon { | |
| width: 36px; | |
| height: 36px; | |
| border-radius: 8px; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| margin-right: 16px; | |
| color: white; | |
| font-size: 1.1rem; | |
| } | |
| .ai-sidebar__app-name { | |
| font-weight: 500; | |
| } | |
| .ai-sidebar__content { | |
| flex-grow: 1; | |
| padding: 20px; | |
| } | |
| .ai-sidebar__footer { | |
| margin-top: auto; | |
| } | |
| .ai-sidebar__footer .ai-sidebar__app-item { | |
| text-decoration: none; | |
| color: inherit; | |
| } | |
| .ai-sidebar__footer .ai-sidebar__app-icon { | |
| width: 40px; | |
| height: 40px; | |
| } |