-
Notifications
You must be signed in to change notification settings - Fork 0
/
developer.php
80 lines (80 loc) · 2.06 KB
/
developer.php
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
<!DOCTYPE html>
<html>
<head>
<title>Social Media Handles</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
body{
font-family: Source Sans Pro;
background:#282828;
background:linear-gradient(-45deg,#EE7752,#E73C7E,#23A6D5,#23D5AB);
background-size: 400% 400%;
animation: Gradient 15s ease infinite;
}
@-webkit-keyframes Gradient{
0%{
background-position: 0% 50%
}
50%{
background-position: 100% 50%
}
100%{
background-position: 0% 50%
}
}
h1{
font-weight: lighter;
font-size: 80px;
color: #fff;
text-align: center;
padding-top: 50px;
margin-bottom: 0;
}
p{
color: #fff;
text-align: center;
font-family: Source Sans Pro;
font-weight: lighter;
font-size: 20px;
margin-top: 0;
}
.media{
position: absolute;
top: 40%;
left: 50%;
transform: translate(-53%, -50%);
}
li{
list-style: none;
margin: 10px 30px;
display: inline-block;
font-size: 20px;
padding: 20px 20px;
color: #fff;
border: 1px solid #fff;
border-radius: 50%;
transition: .5s;
}
li:hover{
color: #292929;
border: 1px solid #292929;
transition: .5s;
}
</style>
</head>
<body>
<div class="wrapper">
<h1>Socialize</h1>
<p>Social Media platforms</p>
<div class="media">
<ul>
<a href="https://www.facebook.com/"><li><i class="fa fa-facebook-official" aria-hidden="true"></i></li></a>
<a href="https://twitter.com/login"><li><i class="fa fa-twitter-square" aria-hidden="true"></i></li></a>
<a href="https://www.instagram.com/accounts/login/"><li><i class="fa fa-instagram" aria-hidden="true"></i></li></a>
<a href="https://www.whatsapp.com/"><li><i class="fa fa-whatsapp" aria-hidden="true"></i></li></a>
<a href="https://github.com/Mbiraru"><li><i class="fa fa-github-square" aria-hidden="true"></i></li></a>
</ul>
</div>
</div>
</body>
</html>