There was an error while loading. Please reload this page.
1 parent d27a197 commit f273d56Copy full SHA for f273d56
1 file changed
Wireframe/style.css
@@ -33,8 +33,9 @@ body {
33
font: var(--font);
34
padding-bottom: 80px;
35
}
36
-h1{
37
- text-align: left;
+header {
+ text-align: center;
38
+ margin-bottom: calc(var(--space) * 2);
39
40
a {
41
padding: var(--space);
@@ -70,11 +71,16 @@ Play with the options that come up.
70
71
https://developer.chrome.com/docs/devtools/css/grid
72
https://gridbyexample.com/learn/
73
*/
74
+/* ====== Articles Grid Layout ==== */
75
main {
76
display: grid;
- grid-template-columns: 1fr;
77
+ grid-template-columns: 1fr 1fr;
78
gap: var(--space);
- }
79
+}
80
+
81
+main > *:first-child {
82
+ grid-column: span 2;
83
84
85
/* ====== Article Layout ======
86
Setting the rules for how elements are placed in the article.
0 commit comments