Skip to main content
Glama

OpenManager Vibe V4 MCP Server

by skyasu2
style.css11.3 kB
/* style.css */ :root { --primary-color: #3498db; --secondary-color: #2ecc71; --warning-color: #f39c12; --danger-color: #e74c3c; --light-bg: #f5f7fa; --dark-bg: #2c3e50; --text-color: #333; --light-text: #ecf0f1; --border-color: #ddd; --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 0; background-color: var(--light-bg); color: var(--text-color); line-height: 1.6; } /* 헤더 스타일 */ header { background-color: var(--dark-bg); color: var(--light-text); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); position: sticky; top: 0; z-index: 100; } .logo { font-size: 1.5em; font-weight: bold; color: var(--light-text); } nav ul { display: flex; list-style: none; } nav ul li { margin: 0 10px; } nav ul li a { color: var(--light-text); text-decoration: none; padding: 5px 10px; border-radius: 4px; transition: background-color 0.3s; } nav ul li a:hover { background-color: rgba(255, 255, 255, 0.1); } nav ul li a.active { background-color: rgba(255, 255, 255, 0.2); font-weight: bold; } .controls { display: flex; gap: 10px; } .time-range { padding: 8px 12px; border-radius: 4px; border: none; background-color: rgba(255, 255, 255, 0.1); color: var(--light-text); outline: none; } .btn { padding: 8px 16px; border-radius: 4px; border: none; background-color: var(--primary-color); color: white; cursor: pointer; transition: background-color 0.3s; } .btn:hover { background-color: #2980b9; } /* 메인 콘텐츠 */ main { padding: 20px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; max-width: 1800px; margin: 0 auto; } /* 카드 스타일 */ .summary-card, .chart-card, .server-list-card, .recent-alerts-card, .full-width-card, .half-width-card { background-color: white; border-radius: 8px; box-shadow: var(--card-shadow); padding: 20px; overflow: hidden; } .summary-card, .chart-card { grid-column: span 4; } .chart-card.full-width, .full-width-card { grid-column: span 12; } .half-width-card { grid-column: span 6; } .server-list-card, .recent-alerts-card { grid-column: span 6; } @media (max-width: 1200px) { .summary-card, .chart-card { grid-column: span 6; } .server-list-card, .recent-alerts-card { grid-column: span 12; } } @media (max-width: 768px) { main { grid-template-columns: 1fr; } .summary-card, .chart-card, .server-list-card, .recent-alerts-card, .full-width-card, .half-width-card { grid-column: span 1; } } /* 시스템 상태 카드 */ .system-status { display: flex; flex-direction: column; } .system-status-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; } .status-indicator-container { display: flex; align-items: center; } .status-indicator { width: 12px; height: 12px; border-radius: 50%; margin-right: 8px; } .status-indicator.normal { background-color: var(--secondary-color); } .status-indicator.warning { background-color: var(--warning-color); } .status-indicator.critical { background-color: var(--danger-color); } .summary-stats { display: flex; justify-content: space-between; margin-bottom: 20px; } .stat-item { text-align: center; flex: 1; padding: 10px; border-radius: 8px; transition: transform 0.3s, box-shadow 0.3s; } .stat-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } .stat-value { font-size: 2.5em; font-weight: bold; line-height: 1.2; } .stat-label { font-size: 0.9em; color: #666; } .stat-item.normal .stat-value { color: var(--secondary-color); } .stat-item.warning .stat-value { color: var(--warning-color); } .stat-item.critical .stat-value { color: var(--danger-color); } .health-indicator { margin-top: 10px; } .health-label { font-size: 0.9em; color: #666; margin-bottom: 5px; } .health-bar { height: 8px; background-color: #eee; border-radius: 4px; overflow: hidden; margin-bottom: 5px; } .health-progress { height: 100%; background-color: var(--secondary-color); border-radius: 4px; } .health-value { text-align: right; font-size: 0.9em; font-weight: bold; color: var(--secondary-color); } /* 차트 컨테이너 */ .chart-container { height: 250px; position: relative; } .card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; } .view-all { color: var(--primary-color); text-decoration: none; font-size: 0.9em; } .view-all:hover { text-decoration: underline; } .card-subtitle { font-size: 0.9em; color: #666; } .info-badge { position: absolute; top: 10px; right: 10px; background-color: var(--primary-color); color: white; padding: 4px 8px; border-radius: 12px; font-size: 0.8em; } /* 서버 테이블 */ .table-container { overflow-x: auto; } .server-table { width: 100%; border-collapse: collapse; } .server-table th, .server-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--border-color); } .server-table th { background-color: #f9f9f9; font-weight: 600; color: #555; } .server-table tr:hover { background-color: #f5f9ff; } .server-table tr.warning { background-color: rgba(243, 156, 18, 0.1); } .server-table tr.critical { background-color: rgba(231, 76, 60, 0.1); } .server-status { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; } .server-status.normal { background-color: var(--secondary-color); } .server-status.warning { background-color: var(--warning-color); } .server-status.critical { background-color: var(--danger-color); } .badge { display: inline-block; padding: 3px 8px; border-radius: 12px; font-size: 0.8em; font-weight: bold; color: white; text-align: center; min-width: 25px; } .badge.normal, .badge.info { background-color: var(--primary-color); } .badge.warning { background-color: var(--warning-color); } .badge.critical { background-color: var(--danger-color); } /* 알림 목록 */ .alerts-container { max-height: 400px; overflow-y: auto; } .alert-item { display: flex; padding: 12px; border-bottom: 1px solid var(--border-color); align-items: center; } .alert-item:last-child { border-bottom: none; } .alert-item:hover { background-color: #f9f9f9; } .alert-item.warning { border-left: 3px solid var(--warning-color); } .alert-item.critical { border-left: 3px solid var(--danger-color); } .alert-item.info { border-left: 3px solid var(--primary-color); } .alert-time { font-size: 0.9em; color: #666; width: 50px; } .alert-badge { font-size: 0.8em; font-weight: bold; padding: 3px 8px; border-radius: 12px; color: white; margin: 0 10px; min-width: 60px; text-align: center; } .alert-item.warning .alert-badge { background-color: var(--warning-color); } .alert-item.critical .alert-badge { background-color: var(--danger-color); } .alert-item.info .alert-badge { background-color: var(--primary-color); } .alert-content { flex: 1; } .alert-server { font-weight: bold; margin-bottom: 3px; } .alert-message { font-size: 0.9em; color: #555; } .no-alerts { padding: 20px; text-align: center; color: #777; font-style: italic; } /* 로딩 및 오류 */ .loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.8); display: flex; justify-content: center; align-items: center; z-index: 1000; display: none; } .loading-spinner { width: 50px; height: 50px; border: 5px solid #f3f3f3; border-top: 5px solid var(--primary-color); border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .error-message { background-color: #fff5f5; border-left: 4px solid var(--danger-color); color: var(--danger-color); padding: 15px; margin: 20px; border-radius: 4px; display: none; } /* 필터 컨트롤 */ .filter-controls { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; } .filter-group { display: flex; align-items: center; } .filter-group label { margin-right: 8px; font-size: 0.9em; color: #555; } .filter-group select, .filter-group input { padding: 6px 10px; border-radius: 4px; border: 1px solid var(--border-color); background-color: white; } /* 데이터 테이블 */ .data-table { width: 100%; border-collapse: collapse; margin-top: 10px; } .data-table th, .data-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--border-color); } .data-table th { background-color: #f5f7fa; font-weight: 600; color: #444; } .data-table td.centered, .data-table th.centered { text-align: center; } .data-table tr:hover { background-color: #f9f9f9; } .data-table .no-data { text-align: center; padding: 30px; color: #777; font-style: italic; } /* 푸터 */ footer { background-color: var(--dark-bg); color: var(--light-text); padding: 20px; margin-top: 30px; } .footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 1800px; margin: 0 auto; } .footer-links a { color: var(--light-text); text-decoration: none; margin-left: 20px; } .footer-links a:hover { text-decoration: underline; } /* 반응형 */ @media (max-width: 992px) { .summary-stats { flex-wrap: wrap; } .stat-item { flex: 1 0 40%; margin-bottom: 10px; } } @media (max-width: 576px) { header { flex-direction: column; padding: 10px; } .logo { margin-bottom: 10px; } nav ul { margin-bottom: 10px; } .controls { width: 100%; justify-content: space-between; } .time-range, .btn { font-size: 0.9em; padding: 6px 10px; } .stat-item { flex: 1 0 100%; } .footer-content { flex-direction: column; text-align: center; } .footer-links { margin-top: 10px; } .footer-links a { margin: 0 10px; } } /* CPU 분석 페이지 추가 스타일 */ .correlation-tooltip { padding: 10px; background-color: rgba(0, 0, 0, 0.8); color: white; border-radius: 4px; font-size: 0.9em; pointer-events: none; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/skyasu2/openmanager-vibe-v4'

If you have feedback or need assistance with the MCP directory API, please join our Discord server