File size: 1,473 Bytes
53f8b01
2f2cf3d
53f8b01
 
 
2f2cf3d
 
 
 
 
 
 
 
 
 
 
 
 
53f8b01
 
 
 
 
 
 
2f2cf3d
53f8b01
 
 
 
846171f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278fca3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2f2cf3d
 
 
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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
    background: linear-gradient(to bottom right, #1a1a2e, #16213e);
    color: #e2e8f0;
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}
.card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Forex Signal Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.signal-card {
  transition: all 0.3s ease;
}
.signal-card:hover {
  transform: translateY(-3px);
}
.signal-card.buy {
  animation: pulse 2s infinite;
}

/* Scalp Trading Dashboard */
.timeframe-tab {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s;
}

.timeframe-tab.active {
  background: #374151;
  color: white;
  border-radius: 0.375rem;
}

#signals-body tr:hover {
  background: rgba(55, 65, 81, 0.5);
}

#signals-body td {
  padding: 0.75rem 1rem;
  color: #e5e7eb;
  font-size: 0.875rem;
}
.card p:last-child {
	margin-bottom: 0;
}