forked from itscodenation/flw1-u1l2-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
37 lines (31 loc) · 747 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
align-items: center;
height: 100vh;
margin: 0;
}
/* 4. Select the class "profile-card" for the styling below. */
____ {
background-color: white;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
/* 5. Style the profile image to have a width of 100px. */
.profile-pic {
border-radius: 50%;
}
/* 6. Style the profile name to have a margin of 10px. */
.profile-name {
color: #333;
}
.profile-bio {
color: #666;
font-size: 14px;
}
/* 7. Style the class "container" to use flexbox. Justify the content in a way that looks best to you. */
.container {
}