Skip to content
This repository was archived by the owner on Sep 25, 2019. It is now read-only.

Commit 96b39c1

Browse files
gforce2k5scissorsneedfoodtoo
authored andcommitted
fix(challenges): fixed challenge accepted without any new code
changed the location of .container rule ISSUES CLOSED: #198
1 parent 6335a15 commit 96b39c1

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

challenges/01-responsive-web-design/css-grid.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,6 +1493,20 @@
14931493
"name": "index",
14941494
"contents": [
14951495
"<style>",
1496+
" .container {",
1497+
" font-size: 1.5em;",
1498+
" min-height: 300px;",
1499+
" width: 100%;",
1500+
" background: LightGray;",
1501+
" display: grid;",
1502+
" grid-template-columns: auto 1fr;",
1503+
" grid-template-rows: auto 1fr auto;",
1504+
" grid-gap: 10px;",
1505+
" grid-template-areas:",
1506+
" \"advert header\"",
1507+
" \"advert content\"",
1508+
" \"advert footer\";",
1509+
" }",
14961510
" .item1 {",
14971511
" background: LightSkyBlue;",
14981512
" grid-area: header;",
@@ -1525,20 +1539,6 @@
15251539
" background: BlanchedAlmond;",
15261540
" }",
15271541
" ",
1528-
" .container {",
1529-
" font-size: 1.5em;",
1530-
" min-height: 300px;",
1531-
" width: 100%;",
1532-
" background: LightGray;",
1533-
" display: grid;",
1534-
" grid-template-columns: auto 1fr;",
1535-
" grid-template-rows: auto 1fr auto;",
1536-
" grid-gap: 10px;",
1537-
" grid-template-areas:",
1538-
" \"advert header\"",
1539-
" \"advert content\"",
1540-
" \"advert footer\";",
1541-
" }",
15421542
"</style>",
15431543
" ",
15441544
"<div class=\"container\">",

0 commit comments

Comments
 (0)