-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylee.css
74 lines (66 loc) · 1.27 KB
/
stylee.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #fdff7587;
}
.profile-card {
background-color: #229799;
padding: 80px;
padding-top: 0;;
margin: 15px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
width: 800px;
display: flex;
flex-direction: column;
align-items: center;
}
.profile-card:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.profile-img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 15px;
}
.name {
margin: 10px 0;
color: #ffffff;
padding-bottom:20PX ;
padding-TOP: 20PX;
font-family: 'lato';
font-weight: 800;
font-size: 60px;
}
.description {
color: rgb(15, 15, 15);
margin: 0;
width: 720PX;
}
#i{
padding: 20px;
padding-bottom: 40px;
color: blanchedalmond;
}
.description:hover {
transform: scale(1.1);
text-shadow: #44444460 2px 2px 20px;
}
.name:hover {
transform: scale(1.2);
text-shadow: #000000b4 2px 2px 20px;
}
.profile-img:hover {
transform: scale(1.2);
box-shadow: #000000 5px 5px 20px;
}
#i:hover{
transform: scale(1.7);
}