-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css.temp
More file actions
113 lines (95 loc) · 1.86 KB
/
style.css.temp
File metadata and controls
113 lines (95 loc) · 1.86 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* Seção Criptomoedas */
.cripto-table-container {
overflow-x: auto;
margin: 1rem 0;
background: white;
border-radius: 20px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.cripto-table {
width: 100%;
border-collapse: collapse;
font-size: 0.9rem;
}
.cripto-table th,
.cripto-table td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid #eee;
}
.cripto-table th {
background: #f8f9fa;
font-weight: 600;
color: #1e3c72;
}
.cripto-table tr:hover {
background: #f8f9fa;
}
.cripto-name {
display: flex;
align-items: center;
gap: 0.5rem;
}
.cripto-name img {
width: 24px;
height: 24px;
}
.cripto-symbol {
color: #666;
font-size: 0.8rem;
}
.price-change-positive {
color: #28a745;
}
.price-change-negative {
color: #dc3545;
}
.loading-row td {
text-align: center;
padding: 2rem;
}
.loading-message {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.loading-spinner {
width: 40px;
height: 40px;
border: 4px solid #eee;
border-top: 4px solid #1e3c72;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
margin-top: 1rem;
}
.page-button {
padding: 0.5rem 1rem;
border: 1px solid #eee;
border-radius: 4px;
background: white;
color: #1e3c72;
cursor: pointer;
transition: all 0.2s;
}
.page-button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.page-button:not(:disabled):hover {
background: #f8f9fa;
}
#page-info {
font-size: 0.9rem;
color: #666;
}