2026-01-09 21:30:49 +05:30

168 lines
4.3 KiB
CSS

/* Main background with premium gradient */
.o_home_menu_background {
background: linear-gradient(135deg, #8fe0d6 0%, #ffecb5 100%) !important;
min-height: 100vh !important;
padding: 0 !important;
margin: 0 !important;
font-family: 'Inter', 'Segoe UI', Roboto, sans-serif !important;
position: relative !important;
}
.o_apps {
display: flex !important;
flex-wrap: wrap !important;
justify-content: center !important;
gap: 40px 50px !important;
max-width: 1000px !important;
margin: 0 auto !important;
padding: 20px !important;
}
.o_app {
display: flex !important;
flex-direction: column !important;
align-items: center !important;
text-decoration: none !important;
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
width: 120px !important;
}
.o_app_icon_container {
background: #ffffff !important;
width: 90px !important;
height: 90px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
border-radius: 24px !important;
box-shadow:
0 4px 6px -1px rgba(0, 0, 0, 0.05),
0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
margin-bottom: 12px !important;
position: relative !important;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.03) !important;
transition: all 0.4s ease !important;
}
.o_app:hover .o_app_icon_container {
transform: translateY(-10px) rotate(2deg) !important;
background: #ffffff !important;
border: 1px solid #fecd4f !important;
box-shadow:
0 20px 25px -5px rgba(254, 205, 79, 0.2),
0 10px 10px -5px rgba(43, 177, 165, 0.1) !important;
}
.o_app_icon_container::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
z-index: 1;
}
.o_app_icon {
width: 56px !important;
height: 56px !important;
object-fit: contain !important;
z-index: 2;
transition: transform 0.3s ease !important;
}
.o_app:hover .o_app_icon {
transform: scale(1.1) !important;
}
.o_app_name {
color: #2d3748 !important;
font-size: 14px !important;
font-weight: 500 !important;
text-align: center !important;
letter-spacing: -0.2px !important;
transition: color 0.3s ease !important;
}
.o_app:hover .o_app_name {
color: #2bb1a5 !important;
font-weight: 700 !important;
}
.o_home_top_bar {
position: fixed !important;
top: 25px !important;
left: 0;
right: 0;
display: flex !important;
justify-content: center !important;
z-index: 1000 !important;
}
.o_top_bar_island {
display: flex !important;
align-items: center !important;
gap: 12px !important;
padding: 10px 25px !important;
background: rgba(0, 0, 0, 0.9) !important;
backdrop-filter: blur(15px) !important;
-webkit-backdrop-filter: blur(15px);
border-radius: 50px !important;
border: 1px solid rgba(255, 255, 255, 0.15) !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}
.o_top_item {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff !important;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
text-decoration: none !important;
}
.o_top_item:hover {
color: #2bb1a5 !important;
transform: translateY(-3px);
}
.o_bar_divider {
width: 1px;
height: 24px;
background: rgba(255, 255, 255, 0.2);
margin: 0 10px;
}
.o_ai_icon {
font-weight: 800;
background: linear-gradient(135deg, #fecd4f, #2bb1a5) !important;
-webkit-background-clip: text !important;
background-clip: text !important;
-webkit-text-fill-color: transparent !important;
}
.badge_dot {
position: absolute !important;
top: 8px;
right: 8px;
width: 8px;
height: 8px;
background: #fecd4f !important;
border-radius: 50% !important;
border: 2px solid white !important;
}
.o_user_avatar {
width: 35px !important;
height: 35px !important;
border-radius: 12px !important;
background: linear-gradient(135deg, #fecd4f, #2bb1a5) !important;
color: white !important;
font-weight: bold !important;
}