-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign16.html
More file actions
129 lines (123 loc) · 3.28 KB
/
design16.html
File metadata and controls
129 lines (123 loc) · 3.28 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
@import "https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
*{
margin: 0;
padding:0;
font-family: sans-serif;
}
body{
background:#009688;
}
.container{
position: absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
overflow: :hidden;;
}
.profile-card{
display:flex;
flex-direction: row;
background: #f3f3f3;
box-shadow: 0px 12px 24px -9px rgba(0,0,0,0.75);
border-radius:3px;
padding:30px 20px;
}
.image-container{
width:100px;
text-align: center;
}
.image-container img{
width:100px;
border-radius: 80%;
border:4px solid #fff;
box-shadow: 0px 12px 24px -9px rgba(0,0,0,0.75);
}
.text-container{
width:300px;
margin-left:20px;
}
.text-container h1{
font-size: 20px;
font-weight: normal;
letter-spacing: 2px;
}
.text-container h3{
font-size: 18px;
font-style: italic;
color:#009688;
margin-top:5px;
}
.text-container p{
margin-top:10px;
font-size:14px;
letter-spacing: 1px;
color:#6a6b6b;
}
.card-bottom{
background: #f3f3f3;
height:50px;
width:420px;
position: relative;
box-shadow: 0px 17px 24px -9px rgba(0,0,0,0.75);
margin-top:-2px;
margin-left:20px;
z-index: -1;
border-radius: 3px;
}
.card-bottom ul{
list-style-type: none;
text-align: center;
width:100%;
position: absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}
.card-bottom ul li{
display:inline;
margin:15px;
}
.card-bottom ul li i{
color:#6a6b6b;
font-size:20px;
padding:0 10px;
cursor:pointer;
transition:0.5s ease;
}
.card-bottom ul li i:hover{
color:#009688;
}
</style>
</head>
<body>
<div class="container">
<div class="profile-card">
<div class="image-container">
<img src="man.jpg" alt="Man">
</div>
<div class="text-container">
<h1>Mellan E.Brown</h1>
<h3>UI/UX Designer</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit ggyg sehguy gye sewsy6tgy. </p>
</div>
</div>
<div class="card-bottom">
<ul>
<li><i class="fa fa-html5" aria-hidden="true"></i></li>
<li><i class="fa fa-css3" aria-hidden="true"></i></li>
<li><i class="fa fa-wordpress" aria-hidden="true"></i></li>
<li><i class="fa fa-database" aria-hidden="true"></i></li>
<li><i class="fa fa-facebook" aria-hidden="true"></i></li>
</ul>
</div>
</div>
</body>
</html>