-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_home.css
30 lines (27 loc) · 1.02 KB
/
styles_home.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
/* Styles for the home */
.about {
display: flex; /* Use flexbox for a responsive layout */
align-items: center; /* Align items vertically */
justify-content: center; /* Align items horizontally */
flex-direction: column; /* Stack items vertically */
text-align: center;
margin: 0 50px; /* Add some right margin to text */
font-family: 'Arial', Helvetica;
}
.profile {
display: flex; /* Use flexbox */
flex-direction: horizontal; /* Stack items vertically */
align-items: center; /* Center items horizontally */
}
.profile-image img {
width: 200px; /* Set a default image width */
height: 200px; /* Set a default image height */
margin-right: 30px; /* Add some right margin to images */
width: 300px; /* Set a default image width */
height: 300px; /* Set a default image height */
border-radius: 50%; /* Make images circular */
margin: 0 50px;
}
.profile-links img {
justify-content: space-between; /* Distribute space evenly between the icons */
}