You challenge is clone a course card from Scrimba's homepage.
For the layout, you can go grid or flex.
Some extra things to look into: - logical properties for margin and padding - the new color syntax (for RGB and HSL)
Stretch goals: - Add those fun bubble animations! - Create a set of cards where the colors (and other things?) are updated through the use of custom properties
*/
/* Write your code here ๐ */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
html,body{
margin:0;
padding:0;
}
/*
DESCRIPTION:
You challenge is clone a course card from Scrimba's homepage.
For the layout, you can go grid or flex.
Some extra things to look into:
- logical properties for margin and padding
- the new color syntax (for RGB and HSL)
Stretch goals:
- Add those fun bubble animations!
- Create a set of cards where the colors (and other things?) are updated through the use of