/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / web-ui / src / index.css
54 lines · 866 BCodeBlameHistory
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;
23th {
24 background-color: #f8f9fa;
25 padding: 12px 16px;
26 text-align: left;
27 font-weight: 600;
28 color: #333;
29 border-bottom: 2px solid #dee2e6;
30 cursor: pointer;
33th:hover {
34 background-color: #e9ecef;
37td {
38 padding: 12px 16px;
39 border-bottom: 1px solid #dee2e6;
40 color: #444;
43tr:hover {
44 background-color: #f8f9fa;
47tr:last-child td {
48 border-bottom: none;
51.table-container {
52 margin: 20px 0;
53 overflow-x: auto;
moveopenescclose