-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (62 loc) · 999 Bytes
/
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
66
67
68
69
70
71
72
73
74
75
/* Estilos Gerais */
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
flex: 1;
}
.screen {
display: none;
}
.screen.active {
display: block;
}
/* Mapa */
.map-container {
height: 300px;
width: 100%;
background: #f8f9fa;
}
/* Estatísticas */
.stats-container {
background: #fff;
}
.stat-label {
font-size: 0.875rem;
color: #6c757d;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.stat-value {
font-size: 1.5rem;
font-weight: bold;
color: #212529;
margin: 0.25rem 0;
}
.stat-unit {
font-size: 0.875rem;
color: #6c757d;
}
/* Botões */
.btn {
padding: 0.75rem 1.5rem;
font-weight: 500;
}
.btn-lg {
font-size: 1.125rem;
}
/* Histórico de Corridas */
#run-history .card {
transition: transform 0.2s;
}
#run-history .card:hover {
transform: translateY(-2px);
}
/* Responsividade */
@media (min-width: 768px) {
.container {
max-width: 540px;
}
}