-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (81 loc) · 1.51 KB
/
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
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
75
76
77
78
79
80
81
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.main{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-image: url(images/back.jpg);
background-position: center;
background-size: cover;
}
.profile-card{
display: flex;
flex-direction: column;
align-items: center;
max-width: 400px;
width: 100%;
border-radius: 25px;
padding: 30px;
border: 1px solid #ffffff40;
box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.image{
position: relative;
height: 150px;
width: 150px;
object-fit: cover;
}
.image .profile-pic{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.data{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 15px;
}
.data h2{
font-size: 33px;
font-weight: 600;
}
span{
font-size: 18px;
}
.row{
display: flex;
align-items: center;
margin-top: 30px;
}
.row .info{
text-align: center;
padding: 0 20px;
}
.buttons{
display: flex;
align-items: center;
margin-top: 30px;
}
.buttons .btn{
color: #fff;
text-decoration: none;
margin: 0 20px;
padding: 8px 25px;
border-radius: 25px;
font-size: 18px;
white-space: nowrap;
background: linear-gradient(to left, #33ccff 0%, #ff99cc 100%);
}
.buttons .btn:hover{
box-shadow: inset 0 5px 20px rgba(0,0,0,0.4);
}