KirthGersenClone
@KirthGersenCloneAll comments
- @zodwoSubmitted over 1 year ago@KirthGersenClonePosted over 1 year ago
Hey, I just finished this challenge too. I used a grid lay-out for both versions. Following clip from Kevin Powell helped me a lot: Grid Lay-out
I also noticed that the background color of the right column is black instead of dark-blue.
Marked as helpful0 - @KirthGersenCloneSubmitted over 1 year ago@KirthGersenClonePosted over 1 year ago
As with all my other projects, I am still struggling to get the main element in the right position on the screen. Honestly, I am getting frustrated about it. Any advice is more than welcome.
But this challenge give me also great satisfaction and my knowledge on hsla, has improved dramaticly. The use of ::before was a lot easier since the last challenge.
Thanks to flex zombies the use of flex also got better, but I haven't finished the game yet.
0 - @alenazachovaSubmitted almost 2 years ago
Hi guys, please let me know about my code.
@KirthGersenClonePosted almost 2 years agoHi there,
the first thing that come to mind are the fonts you are using in your solution. Put following lines at the very top of your css: @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,[email protected],700&display=swap");
Secondly check out the "Josh Comeau CSS reset" it did wonders for me.
I am just beginning to get to know flex and grid, but when I look at your solution maybe you could put the two parts of your card as parts of a flexbox or gridbox.
0 - @princess-ctrlSubmitted almost 2 years ago
- How long did it take you to complete this challenge?
- Which area did you find helpful?
- What was most challenging for you to do in this project?
@KirthGersenClonePosted almost 2 years agoI am a newbie myself, but maybe I can comment on the things I've already learnt:
To center #imagebody on the page using flexbox:
- min-height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
round corners
- border-radius: 1.8rem;
background colour of the body
- background-color: hsl(212, 45%, 89%);
- font-size: 15px;
Marked as helpful0