diff --git a/flex/flex-information/README.md b/flex/flex-information/README.md index b9d2e86..22dd91a 100644 --- a/flex/flex-information/README.md +++ b/flex/flex-information/README.md @@ -15,4 +15,5 @@ For this one you will need to edit the HTML a little bit too. We can't be making - 32px between the title and the 'items' - 52px between each item - Items are arranged horizontally on the page -- Items are only 200px wide and the text wraps \ No newline at end of file +- Items are only 200px wide and the text wraps +- Item text is centered \ No newline at end of file diff --git a/flex/flex-information/solution.css b/flex/flex-information/solution.css new file mode 100644 index 0000000..b44d453 --- /dev/null +++ b/flex/flex-information/solution.css @@ -0,0 +1,40 @@ +body { + font-family: 'Courier New', Courier, monospace; + text-align: center; +} + +img { + width: 100px; + height: 100px; +} + +.title { + font-size: 36px; + font-weight: 900; + margin-bottom: 32px; +} + +.container { + display: flex; + align-items: center; + justify-content: center; + gap: 52px; +} + +.info { + max-width: 200px; +} + + +/* do not edit this footer */ +.footer { + position: fixed; + bottom: 0; + left: 0; + right: 0; + height: 52px; + display: flex; + align-items: center;; + justify-content: center; + background: #eee; +} \ No newline at end of file diff --git a/flex/flex-information/solution.html b/flex/flex-information/solution.html new file mode 100644 index 0000000..effb986 --- /dev/null +++ b/flex/flex-information/solution.html @@ -0,0 +1,37 @@ + + +
+ + + +