-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
96 lines (80 loc) · 2.69 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>wut is up dog?</title>
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Jua" rel="stylesheet">
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.0/normalize.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container {
/* background-color: linear-gradient(to left, #0abde3, #ffffff);
background-color: -webkit-linear-gradient(left, transparent 0%,#fff 50%,transparent 100%);*/
height: 100vh;
width: 100vw;
background-image: -webkit-linear-gradient(top, #0abde3, #FFF);
background-image: -moz-linear-gradient(top, #0abde3, #FFF);
background-image: -ms-linear-gradient(top, #0abde3, #FFF);
background-image: -o-linear-gradient(top, #0abde3, #FFF);
background-image: linear-gradient(top, #0abde3, #FFF);
}
.h1 {
padding-top: 50px;
padding-bottom: 20px;
text-align: center;
font-family: 'Jua', sans-serif;
font-size: 4em;
cursor: help;
}
.h2 {
/* padding-top: 90px;
*/ text-align: center;
font-family: 'Indie FLower', sans-serif;
font-size: 6em;
cursor: vertical-text;
}
.gif_container{
width: 50%;
margin: auto;
text-align: center;
}
.gif{
max-width: 100%;
max-height:100%;
vertical-align: middle;
margin: auto;
cursor:url(./Dog_Icon_32.png), auto;
}
.footer {
text-align: center;
font-size: 1em;
padding: 50px;
}
.footer a{
color: #aaa;
font-family: 'Jua', sans-serif;
}
</style>
</head>
<body>
<div class="container">
<div class="h1">Wut is up dog?</div>
<div class="gif_container">
<a target="_blank" href="https://giphy.com/gifs/oldspice-dog-sunglasses-3oKIPsgVPHyPPG5p3a">
<img class="gif" src="https://media.giphy.com/media/3oKIPsgVPHyPPG5p3a/giphy.gif" alt="dog with sunglasses">
</a>
</div>
<div class="h2">Nuthin much, wut is up with you?</div>
<div class="footer"><a href="//www.avibagla.com">seriously tho, wut is up?</a></div>
<a href="https://github.com/avibagla/wutisupdog"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>
</div>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-42196574-2', 'auto');
ga('send', 'pageview');
</script>
</html>