-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (39 loc) · 731 Bytes
/
style.css
File metadata and controls
39 lines (39 loc) · 731 Bytes
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
38
39
body {
font-family: Arial, sans-serif;
background-color: #f1f1f1;
text-align: center;
}
.profile-container {
max-width: 400px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.profile-image {
width: 150px;
height: 150px;
border-radius: 50%;
margin: 0 auto;
object-fit: cover;
}
.profile-name {
font-size: 24px;
font-weight: bold;
margin: 10px 0;
}
.profile-info {
font-size: 16px;
}
#like-button {
background-color: #3498db;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
#like-button:hover {
background-color: #2980b9;
}