-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (55 loc) · 1.03 KB
/
style.css
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
63
64
65
.user-agent {
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.wp-list-table th {
cursor: pointer;
}
.wp-list-table th:hover {
background: #f0f0f1;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 20px 0;
}
.stat-box {
background: #fff;
border: 1px solid #ccd0d4;
padding: 15px;
border-radius: 4px;
text-align: center;
}
.stat-box h3 {
margin: 0 0 10px 0;
font-size: 14px;
color: #23282d;
}
.stat-value {
font-size: 24px;
font-weight: 600;
color: #0073aa;
line-height: 1.3;
}
.stat-subtext {
font-size: 12px;
color: #666;
margin-top: 5px;
}
.stat-box.time-range {
grid-column: 1 / -1; /* Make it span full width */
background-color: #f8f9fa;
border-left: 4px solid #0073aa;
}
.time-range .stat-value {
font-size: 16px;
line-height: 1.5;
}
.time-range .stat-subtext {
font-size: 14px;
color: #666;
margin-top: 8px;
}