main { width: 100%; display: flex; justify-content: center; } .main-section { width: var(--main-width); } .placeholder { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 450px; } .placeholder-image { height: 30%; width: 30%; -webkit-filter: grayscale(1) brightness(2.5); } .placeholder-text { text-align: center; color: var(--grey-400); } .profiled-requests-actions { display: flex; padding: 1rem 0; justify-content: space-between; align-items: center; } .search-field { padding: 0.5rem .5rem; border-radius: .25em; border: 1px solid var(--grey-400); color: var(--grey-700) ; } .clear-action button { background: var(--red-500); color: white; } .table { width: 100%; /* Hack to get table row borders, see https://stackoverflow.com/a/2586780/2553104 */ border-collapse: collapse; border-radius: 5px; border: hidden 1px var(--border-color); box-shadow: 0 0 0 1px var(--border-color); } .table thead tr { color: var(--grey-400); } .table thead th { font-weight: 400; } .table tr { border: solid 1px var(--border-color); color: var(--grey-700); cursor: pointer; } .table tr:nth-child(even) { background: var(--grey-50); } .table tbody tr:hover { background: var(--grey-100); } .table th, .table td { padding: 0.5rem 1rem; } .request-path { max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .request-buttons { z-index: 1; text-align: right; } .request-buttons a { text-decoration: none; padding: 0 .25rem; color: var(--grey-700); } .request-buttons a:active, .request-buttons a:focus-visible, .request-buttons a:hover { color: var(--blue-500); } .request-buttons a.link-disabled { cursor: default; pointer-events: none; text-decoration: none; color: var(--grey-200); } .request-details-data { display: flex; margin: 0; padding: 0; } .data-item { display: flex; flex-direction: column; align-items: flex-start; list-style: none; margin-right: 3rem; padding: 0; } .data-item small { color: var(--grey-400); } .data-item span { margin: .25rem 0; } [class*='request-status-2'], [class*='request-method-get'] { color: white; background: var(--green-400) !important; } [class*='request-status-4'], [class*='request-method-put'], [class*='request-method-patch'] { color: white; background: var(--yellow-400) !important; } [class*='request-status-5'], [class*='request-method-delete'] { color: white; background: var(--red-500) !important; } .request-details-actions { margin: 0; padding: 2em 0; display: flex; align-items: center; justify-content: space-between; } .flamegraph-button button { background: var(--grey-200); }