-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (38 loc) · 821 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (38 loc) · 821 Bytes
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
/* Stylizacja zgodna z WCAG */
/* Wysokie kontrasty dla lepszej czytelności */
.stMarkdown {
color: #262730;
}
/* Fokus dla elementów interaktywnych */
.stRadio > div > label:focus-within {
outline: 2px solid #1f77b4;
outline-offset: 2px;
}
.stButton > button:focus {
outline: 2px solid #1f77b4;
outline-offset: 2px;
}
/* Większe obszary klikalne */
.stRadio > div > label {
padding: 8px;
min-height: 44px;
display: flex;
align-items: center;
}
/* Czytelne nagłówki */
h1, h2, h3 {
color: #262730;
font-weight: 600;
}
/* Odpowiednie odstępy */
.main .block-container {
padding-top: 2rem;
padding-bottom: 2rem;
}
/* Responsywność */
@media (max-width: 768px) {
.main .block-container {
padding-left: 1rem;
padding-right: 1rem;
}
}