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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
:root {
accent-color: darkred;
text-align: justify;
}
* :any-link {
color: inherit;
text-decoration: underline;
}
aside {
max-width: max(40%, 12rem);
background: darkred;
color: white;
float: inline-end;
margin: 0.5rem;
margin-inline-start: 1rem;
padding: 0.5rem;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
max-inline-size: 100%;
display: block;
}
img,
svg,
video,
canvas {
block-size: auto;
}
picture {
display: contents;
}
@media screen {
* :any-link:hover,
* :any-link:active {
font-style: italic;
}
body {
max-width: min(100dvw, 58rem);
min-height: 100dvh;
padding: 0.5rem;
margin-inline-start: auto;
margin-inline-end: auto;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr auto;
grid-template-areas:
'header'
'main'
'footer';
display: grid;
&>header,
&>footer {
padding: 1rem;
font-weight: bolder;
background-color: darkred;
color: white;
& *:any-link {
text-decoration: none;
}
}
&>header {
grid-area: header;
& nav>a {
margin-inline-end: 0.5rem;
}
}
&>main {
grid-area: main;
}
&>footer {
align-self: end;
grid-area: footer;
}
}
}
@media (forced-colors: active) {
header,
footer {
border: 2px solid;
}
aside {
border: 2px solid;
}
}
@media print {
header,
footer {
display: none;
}
section,
table {
orphans: 4;
break-inside: auto;
}
tr {
break-inside: avoid;
break-before: auto;
}
}
|