-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.css
107 lines (102 loc) · 1.93 KB
/
profile.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
padding: 0;
margin: 0;
}
.nav{
padding: 10px;
margin-top: 10px;
}
.nav-item{
display: flex;
list-style-type: none;
}
.nav-link {
text-decoration: none;
padding: 5px;
color: black;
font-family: 'Poppins', sans-serif;
font-size: .9rem;
font-weight: 500;
margin-left: 20px;
}
.active{
color : #E83A59;
text-decoration: underline;
}
.main-div{
margin-top: 30px;
position: absolute;
top: 50%;
left: 50%;
width: 70%;
background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
transform: translate(-50%,-50%);
box-shadow: 0px 6px 5px 5px rgba(176,164,176,1) !important;
transition: all .3s ease-in-out !important;
}
.main{
display: flex;
justify-content: space-between;
}
.main-left{
width: 50%;
}
.main-left > img {
object-fit: contain;
width: 100%;
height: 500px;
}
.main-right{
width: 50%;
margin : 10px 3px;
padding: 0px 0px 0px 40px;
}
.main-head{
font-family: 'Poppins', sans-serif;
font-weight: 1000px;
margin: 0px 0px 10px;
}
.sub-head{
font-family: 'Poppins',sans-serif;
font-size: 1rem;
font-weight: 400px;
margin-bottom: 50px;
}
.span{
display: flex;
margin-bottom: 10px;
align-items: center;
font-family: 'Poppins',sans-serif;
font-size: .7rem;
}
.span-img {
margin-right: 10px;
}
.span > a{
text-decoration: none;
color: black;
cursor: pointer;
}
.social-media{
margin-top: 70px;
}
/* @media (max-width : 900px){
.main{
display: flex;
flex-direction: column;
}
.main-div{
margin-top: 100px;
}
} */
.drop-1{
width: 100px;
height: 100px;
background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
border-radius: 50%;
position: absolute;
bottom: 15%;
left: 10%;
z-index: -1;
}