-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
86 lines (74 loc) · 1.33 KB
/
App.css
File metadata and controls
86 lines (74 loc) · 1.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.widget-card {
width: 100%;
max-width: 520px;
min-width: 260px;
padding: 20px;
background: linear-gradient(135deg, #ffffff, #f6f7fb);
border-radius: 18px;
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
font-family: "Segoe UI", sans-serif;
box-sizing: border-box;
}
/* Title */
.widget-title {
font-size: 1.8rem;
font-weight: 700;
text-align: center;
margin-bottom: 15px;
}
/* Live prices */
.live-section {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.price {
flex: 1 1 45%;
padding: 12px;
border-radius: 12px;
text-align: center;
}
.price span {
display: block;
font-size: 0.9rem;
color: #555;
}
.price strong {
font-size: 1.4rem;
}
.price.gold {
background: linear-gradient(135deg, #fff4cc, #ffe08a);
}
.price.silver {
background: linear-gradient(135deg, #e8ebef, #cfd6df);
}
.currency-note {
text-align: center;
font-size: 0.85rem;
color: #666;
margin: 10px 0;
}
/* Date picker */
.date-section {
display: flex;
flex-wrap: wrap;
gap: 8px;
align-items: center;
margin-bottom: 10px;
}
/* Table */
.history-table {
width: 100%;
font-size: clamp(0.75rem, 1vw, 0.9rem);
border-collapse: collapse;
}
.history-table th,
.history-table td {
padding: 6px;
border-bottom: 1px solid #ddd;
text-align: center;
}
.history-table th {
background: #f0f2f6;
font-weight: 600;
}