-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (57 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (57 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* ---- general layout ------------------------------------------------- */
body {
font-family: system-ui, sans-serif;
margin: 0;
padding: 1rem;
line-height: 1.5;
}
/* centre the table, keep it narrow on large screens */
.table-wrapper {
max-width: 720px;
margin: 0 auto;
}
/* ---- table ---------------------------------------------------------- */
table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
background: #fafafa;
box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
th, td {
padding: .75rem 1rem;
border: 1px solid #e0e0e0;
text-align: left;
}
th {
background: #f0f0f0;
font-weight: 600;
}
/* ---- preview thumbnails --------------------------------------------- */
.preview {
width: 200px;
height: 150px;
display: block;
}
/* ---- “View” button --------------------------------------------------- */
.view-btn, .ar-btn {
display: inline-block;
padding: .45rem .9rem;
font-size: .95rem;
font-weight: 600;
color: #fff;
background: #0066ff;
border: none;
border-radius: .4rem;
box-shadow: 0 2px 4px rgba(0,0,0,.15);
cursor: pointer;
text-decoration: none;
transition: background .2s ease;
}
.view-btn:hover { background: #004ecc; }
/* ---- mobile tweaks -------------------------------------------------- */
@media (max-width: 480px) {
.preview { width: 150px; height: 120px; }
th, td { padding: .5rem .75rem; }
.view-btn, .ar-btn { font-size: .85rem; padding: .35rem .7rem; }
}