-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (63 loc) · 1.66 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
<!DOCTYPE html>
<head>
<title>PearJS</title>
<link href='https://fonts.googleapis.com/css?family=Grand+Hotel|Roboto:400,700' rel='stylesheet' type='text/css'>
<style>
body {
background-image:
radial-gradient(hsl(72, 54%, 89%) 15%, transparent 15%),
radial-gradient(hsl(72, 54%, 89%) 15%, transparent 15%);
background-size: 60px 60px;
background-position: 0 0, 30px 30px;
font-family: 'Roboto', sans-serif;
text-align: center;
padding: 60px;
}
a {
color: hsl(78, 40%, 42%);
text-decoration: none;
}
a:hover {
border-bottom: 2px solid hsl(78, 40%, 42%);
}
img {
width: 150px;
}
h1 {
font-size: 7em;
font-family: 'Grand Hotel', cursive;
color: hsl(78, 49%, 68%);
text-shadow:
5px 5px 0 hsl(55, 48%, 21%),
-1px -1px 0 hsl(55, 48%, 21%),
1px -1px 0 hsl(55, 48%, 21%),
-1px 1px 0 hsl(55, 48%, 21%),
1px 1px 0 hsl(55, 48%, 21%);
margin: -20px 0 0;
}
.subtext {
color: hsl(55, 48%, 21%);
font-size: 1.25em;
font-weight: 700;
margin-top: 60px;
line-height: 1.5em;
}
.social #twitter {
width: 40px;
margin-top: 40px;
}
</style>
</head>
<body>
<img src='images/logo.png' />
<h1>PearJS</h1>
<div class='subtext'>
a video podcast series<br>
by <a href='https://twitter.com/0x604' target='_new'>@0x604</a> & <a href='https://twitter.com/sxywu' target='_new'>@sxywu</a>
</div>
<div class='social'>
<a href='https://twitter.com/hellopearjs' target='_new'>
<img id='twitter' src="images/twitter.svg"/>
</a>
</div>
</body>