-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_profile.css
More file actions
45 lines (36 loc) · 784 Bytes
/
Copy pathuser_profile.css
File metadata and controls
45 lines (36 loc) · 784 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
40
41
42
43
/* Reset and Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #F7EEDD;
scrollbar-width: thin; /* Firefox scrollbar */
scrollbar-color: #333 #F7EEDD; /* Firefox scrollbar */
}
.profile{
margin-top: 80px;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.profile h2 {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 20px;
border-bottom: 2px solid #333;
}
.profile .key {
font-weight: 600;
}
.profile .value {
display: inline-block;
margin-left: 20px;
}
.card:hover .card_image img {
transform: scale(1.05); /* Zoom effect on hover */
}