Skip to content

Commit cb74b53

Browse files
committed
kids are up early for some reason
1 parent 23a89aa commit cb74b53

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

projectfolder/pages/css-grid.html

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434

3535
.container--1 {
3636
/* STARTER */
37+
3738
font-family: sans-serif;
3839
background-color: #ddd;
3940
font-size: 32px;
@@ -49,6 +50,9 @@
4950
/* gap: 30px; */
5051
column-gap: 10px;
5152
row-gap: 40px;
53+
54+
/*Temp */
55+
display: none;
5256
}
5357

5458
.el--8 {
@@ -67,17 +71,24 @@
6771
grid-row: 2;
6872
}
6973
.container--2 {
70-
display: none;
7174
/* STARTER */
7275
font-family: sans-serif;
7376
background-color: black;
7477
font-size: 40px;
75-
margin: 100px;
78+
margin: 40px;
7679

77-
width: 1000px;
80+
width: 700px;
7881
height: 600px;
7982

8083
/* CSS GRID */
84+
display: grid;
85+
grid-template-columns: 125px 200px 125px;
86+
grid-template-rows: 250px 100px;
87+
88+
/* Aligning tracks inside container:
89+
distribute empty space */
90+
justify-content: center;
91+
justify-content: space-between;
8192
}
8293
</style>
8394
</head>

0 commit comments

Comments
 (0)