forked from vinodselvin/css-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacebook-logo.html
36 lines (34 loc) · 863 Bytes
/
facebook-logo.html
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
<!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>Facebook logo</title>
<style>
.app {
background: #fff;
border-radius: 9%;
display: block;
height: 100px;
left: 50%;
margin: -51px 0 0 -49px;
position: absolute;
top: 50%;
width: 100px;
}
.app:after {
color: #43609C;
content: "f";
display: block;
font-family: Facebook Letter Faces, Arial;
font-size: 100px;
font-weight: bold;
margin: 6% 0 0 50%;
}
</style>
</head>
<body>
<div class="app"></div>
</body>
</html>