-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (84 loc) · 1.41 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
82
83
84
85
86
87
88
89
90
91
92
93
94
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
.container{
width: 100%;
height: 100vh;
background-image: url(background.jpg);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
}
.profile-box{
background: #ff574a;
text-align: center;
padding: 40px 90px;
color: #fff;
position: relative;
border-radius: 20px;
}
.menu-icon{
width: 25px;
position: absolute;
left: 40px;
top: 40px;
color: white;
}
.settings-icon{
width: 25px;
position: absolute;
right: 40px;
top: 40px;
color: white;
}
.profile-pic{
width: 150px;
border-radius: 50%;
background: #fff;
padding: 6px;
margin-top: 40px;
}
.profile-bottom{
background: #fff;
color: #999;
padding: 60px 0;
margin-left: -70px;
margin-right: -70px;
margin-bottom: -20px;
border-radius: 20px;
margin-top: -10px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
}
.profile-bottom img{
width: 15px;
margin-top: 15px;
cursor: pointer;
}
.profile-box button{
background: #fff;
color: #ff574a;
border: none;
outline: none;
box-shadow: 0 5px 10px rgba(244, 67, 54, 0.8);
padding: 15px 60px;
cursor: pointer;
border-radius: 30px;
margin-bottom: -50px;
font-weight: bold;
font-size: 16px;
}
.profile-box h3{
font-size: 22px;
margin-top: 20px;
font-weight: bolder;
}
.social-media img{
width: 50px;
margin-top: 120px 10px;
cursor: pointer;s
}