-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (62 loc) · 1.17 KB
/
style.css
File metadata and controls
71 lines (62 loc) · 1.17 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
63
64
65
66
67
68
69
70
71
/*
Plugin name: WP Stats
Plugin URI: https://github.com/Rayiumir/wp-stats
Author Plugin: Raymond Baghumian
Author URI: https://github.com/Rayiumir/wp-stats
Description: WP Stats - Simple WordPress Visitor Statistics Tool
Version: 1.0.0
*/
.container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
max-width: 1000px;
}
.today,
.month,
.year,
.total {
background: white;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition: box-shadow 0.3s ease;
border: 1px solid #e0e0e0;
}
.today:hover,
.month:hover,
.year:hover,
.total:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.label {
font-size: 13px;
color: #666;
margin-bottom: 8px;
font-weight: bold;
}
.number {
font-size: 32px;
font-weight: bold;
color: #333;
}
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr;
}
.number {
font-size: 28px;
}
}
.stats-info {
background: #005f8f;
color: #ffffff;
padding: 10px;
margin-top: 10px;
border-radius: 10px;
}
.stats-footer {
text-align: center;
margin-top: 5px;
font-weight: bold;
}