/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / web-ui / src / index.css
68 lines · 1.1 KBCodeBlameHistory
a4762faweb-uiJeremy Magland 1:root {
2 font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
3 line-height: 1.5;
4 font-weight: 400;
5}
7body {
8 margin: 0;
9 min-width: 320px;
10 min-height: 100vh;
11 background-color: #f5f5f5;
14table {
15 width: 100%;
16 border-collapse: collapse;
17 background: white;
18 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
19 border-radius: 4px;
20 overflow: hidden;
a3cad9bformat codeJeremy Magland 21 font-size: 0.9rem;
22 line-height: 1.3;
a4762faweb-uiJeremy Magland 23}
25th {
26 background-color: #f8f9fa;
a3cad9bformat codeJeremy Magland 27 padding: 8px 12px;
a4762faweb-uiJeremy Magland 28 text-align: left;
29 font-weight: 600;
30 color: #333;
a3cad9bformat codeJeremy Magland 31 border-bottom: 1px solid #dee2e6;
a4762faweb-uiJeremy Magland 32 cursor: pointer;
a3cad9bformat codeJeremy Magland 33 white-space: nowrap;
a4762faweb-uiJeremy Magland 34}
36th:hover {
37 background-color: #e9ecef;
40td {
a3cad9bformat codeJeremy Magland 41 padding: 6px 12px;
a4762faweb-uiJeremy Magland 42 border-bottom: 1px solid #dee2e6;
43 color: #444;
46tr:hover {
47 background-color: #f8f9fa;
50tr:last-child td {
51 border-bottom: none;
54.table-container {
a3cad9bformat codeJeremy Magland 55 margin: 12px 0;
a4762faweb-uiJeremy Magland 56 overflow-x: auto;
a3cad9bformat codeJeremy Magland 58
59/* Make filter controls more compact */
60select {
61 padding: 4px 8px !important;
62 font-size: 0.9rem !important;
63 min-width: 150px !important;
66.table-container label {
67 font-size: 0.9rem;
moveopenescclose