-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmp_print
More file actions
34 lines (29 loc) · 745 Bytes
/
Copy pathtmp_print
File metadata and controls
34 lines (29 loc) · 745 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
/* ========== GLOBAL STYLES ========== */
/* Base font size and full viewport setup */
html {
/* Scala tipografia per desktop: tra 14px e 16px */
font-size: clamp(14px, 1.1vw, 16px);
position: relative;
min-height: 100%;
}
@media (min-width: 768px) {
html {
font-size: clamp(14px, 1.1vw, 16px);
}
}
/* General body styling */
body {
font-family: Montserrat, sans-serif;
margin: 0;
padding: 0;
height: 100vh;
overflow-y: auto; /* Consenti scroll quando necessario su desktop */
}
/* Focus styles for interactive elements */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}