-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (105 loc) · 3.33 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
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<title>Smoking Fish Games</title>
<link href='http://fonts.googleapis.com/css?family=Sintony' rel='stylesheet' type='text/css'>
<style type='text/css'>
body {
background-color:#f7ff42;
text-align:center;
font-family: 'Sintony', sans-serif;
}
#fullWrapper {
width:960px;
background-color:#45d5f7;
font-size:25px;
padding-bottom:10px;
text-align:left;
margin: 0 auto;
}
#quicklinks {
margin-top:-8px;
width:960px;
background-color:black;
text-transform:uppercase;
}
.quicklink {
margin-left:10px;
margin-right:10px;
padding-left:10px;
padding-right:10px;
padding-top:5px;
padding-bottom:5px;
border-radius:7px;
font-size:54px;
color:white;
-webkit-user-select: none;
-moz-user-select: -moz-none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
cursor:pointer;
text-decoration:none;
}
.currquicklink {
background-color:#4B4B4B;
}
.quicklink:hover {
background-color:white;
color:black;
}
.currquicklink {
background-color:#4B4B4B;
}
.content {
margin-left:15px;
margin-right:15px;
}
/* @font-face {
font-family: Bebas;
src: url('BebasNeue.otf');
}*/
#footer {
text-align:center;
font-size:10px;
color:#8F8F8F;
}
#footer a:link {
color:#8F8F8F;
}
#footer a:visited {
color:#8F8F8F;
}
#footer a:hover {
color:#696969;
}
#footer a:active {
color:#5E5E5E;
}
</style>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-26738353-3', 'smokingfishgames.com');
ga('send', 'pageview');
</script>
</head>
<body>
<div id='fullWrapper'>
<img src='/SFGLogo.jpg' title='Smoking Fish Games' />
<div id='quicklinks'><a href='http://smokingfishgames.com' class='quicklink currquicklink'>Home</a><a href='http://blog.smokingfishgames.com' class='quicklink'>Blog</a><a href='http://imagedoku.com' target='_blank' class='quicklink'>Imagedoku</a><a href='http://github.com/SmokingFishGames' target='_blank' class='quicklink'>GitHub</a><!--<a href='http://seanmcgeer.com' target='_blank' class='quicklink'>Sean</a><a href='http://rick.mcgeer.com' target='_blank' class='quicklink'>Rick</a>--></div>
<p class='content'>
Smoking Fish Games is a father-son team made up of <a href='http://rick.mcgeer.com' target='_blank'>Rick</a> and <a href='http://seanmcgeer.com' target='_blank'>Sean McGeer</a>. Our first project is the free open-source web game Imagedoku.
</p>
<p class='content'>
<a href='http://imagedoku.com' target='_blank'>Play Imagedoku</a> or <a href='http://github.com/SmokingFishGames/imgdoku' target='_blank'>fork it on GitHub</a>.
</p>
<p class='content'>
<a href='mailto:[email protected]'>Contact Smoking Fish Games</a>.
</p>
</div>
<div id='footer'>© 2013 <a href='http://smokingfishgames.com'>Smoking Fish Games</a> -- <a href='https://github.com/SmokingFishGames/home'>Open source on GitHub</a></div>
</body>
</html>