File tree Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Original file line number Diff line number Diff line change 52
52
/* gap: 30px; */
53
53
column-gap : 20px ;
54
54
row-gap : 40px ;
55
+ display : none;
55
56
}
56
57
57
58
.el--8 {
71
72
}
72
73
73
74
.container--2 {
74
- display : none;
75
-
76
75
/* STARTER */
77
76
font-family : sans-serif;
78
77
background-color : black;
79
78
font-size : 40px ;
80
- margin : 100 px ;
79
+ margin : 40 px ;
81
80
82
- width : 1000 px ;
81
+ width : 700 px ;
83
82
height : 600px ;
84
83
85
84
/* CSS GRID */
85
+ display : grid;
86
+ grid-template-columns : 125px 200px 125px ;
87
+ grid-template-rows : 250px 100px ;
88
+ gap : 50px ;
89
+
90
+ /* Aligning tracks inside container: distribute empty space */
91
+ justify-content : center;
92
+ /* justify-content: space-between; */
93
+ align-content : center;
94
+
95
+ /* Aligning items INSIDE cells: moving items around inside cells */
96
+ align-items : end;
97
+ justify-items : end;
98
+ }
99
+
100
+ .el--3 {
101
+ align-self : center;
102
+ justify-self : center;
86
103
}
87
104
</ style >
88
105
</ head >
You can’t perform that action at this time.
0 commit comments