- Add config_functions.py for reasoning configuration - Add init.py initialization module - Add harnessed_reasoning_config model definition - Add skill documentation (SKILL.md with assets, references, scripts) - Add ios_design.css frontend styles
115 lines
2.8 KiB
CSS
115 lines
2.8 KiB
CSS
/*
|
|
* iOS Design System for Hermes Modules
|
|
* iPhone-style UI with Apple HIG principles
|
|
* Applied via inline options and direct element styling
|
|
*/
|
|
|
|
/* === iOS Design Tokens === */
|
|
body {
|
|
background-color: #F2F2F7 !important;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif !important;
|
|
-webkit-font-smoothing: antialiased;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* === iOS Navigation Bar === */
|
|
.ios-navbar {
|
|
background-color: rgba(249, 249, 249, 0.94) !important;
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border-bottom: 0.5px solid rgba(60, 60, 67, 0.3) !important;
|
|
}
|
|
|
|
.ios-navbar-title {
|
|
font-size: 34px !important;
|
|
font-weight: 700 !important;
|
|
color: #000000 !important;
|
|
letter-spacing: 0.37px;
|
|
}
|
|
|
|
.ios-navbar-subtitle {
|
|
font-size: 13px !important;
|
|
font-weight: 400 !important;
|
|
color: rgba(60, 60, 67, 0.6) !important;
|
|
}
|
|
|
|
/* === iOS Card === */
|
|
.ios-card {
|
|
background-color: #FFFFFF !important;
|
|
border-radius: 12px !important;
|
|
padding: 16px !important;
|
|
margin: 8px 16px !important;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06) !important;
|
|
border: none !important;
|
|
}
|
|
|
|
/* === iOS Scroll Area === */
|
|
.ios-scroll-area {
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* === iOS Tab Bar === */
|
|
.ios-tabbar {
|
|
background-color: rgba(249, 249, 249, 0.94) !important;
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border-top: 0.5px solid rgba(60, 60, 67, 0.3) !important;
|
|
}
|
|
|
|
/* === iOS Stat Card === */
|
|
.ios-stat-card {
|
|
background: linear-gradient(135deg, #007AFF, #5856D6) !important;
|
|
border-radius: 16px !important;
|
|
color: #FFFFFF !important;
|
|
}
|
|
|
|
.ios-stat-value {
|
|
font-size: 34px !important;
|
|
font-weight: 700 !important;
|
|
}
|
|
|
|
.ios-stat-label {
|
|
font-size: 13px !important;
|
|
font-weight: 500 !important;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* === iOS Group === */
|
|
.ios-group {
|
|
background-color: #FFFFFF !important;
|
|
border-radius: 12px !important;
|
|
margin: 8px 16px !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* === iOS Button === */
|
|
.ios-btn {
|
|
background-color: #007AFF !important;
|
|
color: #FFFFFF !important;
|
|
border: none !important;
|
|
border-radius: 12px !important;
|
|
font-size: 17px !important;
|
|
font-weight: 600 !important;
|
|
}
|
|
|
|
.ios-btn-secondary {
|
|
background-color: rgba(0, 122, 255, 0.12) !important;
|
|
color: #007AFF !important;
|
|
}
|
|
|
|
/* === iOS Badge === */
|
|
.ios-badge {
|
|
background-color: #FF3B30 !important;
|
|
color: #FFFFFF !important;
|
|
border-radius: 10px !important;
|
|
font-size: 12px !important;
|
|
font-weight: 600 !important;
|
|
}
|
|
|
|
/* === iOS Status Dots === */
|
|
.ios-status-active { color: #34C759 !important; }
|
|
.ios-status-pending { color: #FF9500 !important; }
|
|
.ios-status-failed { color: #FF3B30 !important; }
|
|
.ios-status-inactive { color: #8E8E93 !important; }
|