|
@@ -73,6 +73,10 @@ body {
|
|
|
align-items: stretch;
|
|
|
}
|
|
|
|
|
|
+.wrap {
|
|
|
+ flex-wrap: wrap;
|
|
|
+}
|
|
|
+
|
|
|
.col {
|
|
|
flex-direction: column;
|
|
|
}
|
|
@@ -115,6 +119,20 @@ body {
|
|
|
margin-inline: auto;
|
|
|
}
|
|
|
|
|
|
+.block-center {
|
|
|
+ margin-block: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.right {
|
|
|
+ text-align: end;
|
|
|
+}
|
|
|
+
|
|
|
+.ellipsis {
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
+
|
|
|
.margin-after {
|
|
|
margin-block-end: 0.5rem;
|
|
|
}
|
|
@@ -146,7 +164,7 @@ body {
|
|
|
grid-template-columns: 14rem 1fr 8rem;
|
|
|
}
|
|
|
|
|
|
-body > * + * {
|
|
|
+body > * + :not(#sidebar) {
|
|
|
border-inline-start: 1px solid var(--highlight);
|
|
|
}
|
|
|
|