|
|
@@ -53,12 +53,19 @@ main {
|
|
|
grid-area: main;
|
|
|
display: grid;
|
|
|
gap: 1em 1em;
|
|
|
- grid-template-columns: 1fr 6fr 1fr;
|
|
|
+ grid-template-columns: 1fr 3fr 1fr;
|
|
|
grid-template-rows: 1fr;
|
|
|
- grid-template-areas: "aside content debug";
|
|
|
+ grid-template-areas: "aside content automated";
|
|
|
justify-items: stretch;
|
|
|
}
|
|
|
|
|
|
+main article {
|
|
|
+ grid-area: automated;
|
|
|
+ justify-self: center;
|
|
|
+ width: 100%;
|
|
|
+ background-color: var(--color-content-background);
|
|
|
+}
|
|
|
+
|
|
|
main section {
|
|
|
grid-area: content;
|
|
|
justify-self: center;
|
|
|
@@ -123,4 +130,31 @@ footer section {
|
|
|
|
|
|
strong {
|
|
|
color: var(--color-content-text);
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+.automated-activity {
|
|
|
+ display: grid;
|
|
|
+ gap: 1em 1em;
|
|
|
+ grid-template-columns: 1fr 3fr;
|
|
|
+ grid-template-rows: 1fr;
|
|
|
+ grid-template-areas: "progress name";
|
|
|
+ justify-items: stretch;
|
|
|
+}
|
|
|
+
|
|
|
+.automated-activity > progress {
|
|
|
+ grid-area: progress;
|
|
|
+ justify-self: center;
|
|
|
+ align-self: center;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+progress.activity {
|
|
|
+ margin-bottom: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.automated-activity > span {
|
|
|
+ grid-area: name;
|
|
|
+ justify-self: start;
|
|
|
+ align-self: center;
|
|
|
+ width: 100%;
|
|
|
+}
|