-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (80 loc) · 1.99 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (80 loc) · 1.99 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
/* Configurações Globais e Transição Suave */
* {
box-sizing: border-box;
}
body {
font-size: 16px;
background-color: #f8f9fa;
color: #212529;
transition: background-color 0.3s ease, color 0.3s ease;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Barra de Acessibilidade Sticky */
.barra-acessibilidade {
position: sticky;
top: 0;
z-index: 1050;
background: #ffffff;
border-bottom: 3px solid #0056b3;
padding: 12px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.btn-acessivel {
min-height: 48px;
min-width: 48px;
font-weight: bold;
}
/* Indicador de Foco Acessível */
button:focus,
a:focus,
[tabindex="-1"]:focus {
outline: 4px solid #ff0000 !important;
outline-offset: 2px;
}
/* Estilização dos Cards */
.flashcard {
border: 3px solid #0056b3;
border-radius: 8px;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: transform 0.2s ease;
}
.flashcard:hover {
transform: translateY(-2px);
}
/* Modo Alto Contraste (Cores Acessíveis conforme WCAG) */
body.alto-contraste {
background-color: #000000 !important;
color: #ffff00 !important;
}
body.alto-contraste .barra-acessibilidade {
background-color: #000000 !important;
border-bottom: 3px solid #ffff00 !important;
}
body.alto-contraste .header-title {
color: #ffff00 !important;
}
body.alto-contraste .flashcard {
background-color: #000000 !important;
border: 3px solid #ffff00 !important;
color: #ffff00 !important;
}
body.alto-contraste .btn-outline-primary {
color: #ffff00 !important;
border-color: #ffff00 !important;
background-color: #000000 !important;
}
body.alto-contraste .btn-outline-primary:hover {
background-color: #ffff00 !important;
color: #000000 !important;
}
body.alto-contraste table {
color: #ffff00 !important;
border-color: #ffff00 !important;
}
body.alto-contraste thead {
background-color: #333333 !important;
}