This repository has been archived by the owner on Sep 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (129 loc) · 3.96 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<title>Code Club poster generator</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="Code Club volunteers, use this (unofficial) tool to create posters to promote your club">
<style>
body {
background: #f8faf4;
border-top: 7px solid #d3e8d0;
color: #666;
font-family: Helvetica, Arial, sans-serif;
font-size: 1.25em;
line-height: 1.5;
margin: 0;
padding: 2em;
text-align: center;
}
h1 {
color: #393;
font-family: 'museo-sans-rounded', Arial, sans-serif;
line-height: 1.25;
text-rendering: optimizeLegibility;
}
textarea {
border: 3px solid #ccc;
border-radius: 5px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: inherit;
display: block;
font-family: inherit;
font-size: 1em;
height: 300px;
line-height: 1.5;
padding: 1em;
text-align: center;
width: 100%;
overflow: hidden;
position: relative;
z-index: 2;
}
.print {
background: #393;
border-radius: 1000px;
color: #fff;
padding: 5px 18px 4px;
position: absolute;
right: 1em;
top: 1em;
text-decoration: none;
z-index: 1000;
}
.print:hover {
background: #267326;
}
.logo {
margin: 0 0 2em;
position: relative;
z-index: 2;
}
.top-left {
position: absolute;
top: 2em;
left: 2em;
z-index: 1;
}
.top-right {
position: absolute;
top: 2em;
right: 2em;
z-index: 1;
}
.bottom {
position: absolute;
bottom: 2em;
left: 0;
right: 0;
margin: auto;
max-width: 80%;
z-index: 1;
}
.page {
background: #fff;
border: 1px solid #d1d1d1;
min-height: 922px;
margin: auto;
overflow: hidden;
padding: 3em;
position: relative;
max-width: 595px;
}
@media print {
body {
border: 0;
padding: 0;
}
textarea {
border: 0;
}
.page {
border: 0;
}
.print {
display: none;
}
}
</style>
<script>
(function(d) {
var config = {
kitId: 'ana7hlh',
scriptTimeout: 3000
},
h=d.documentElement,t=setTimeout(function(){h.className=h.className.replace(/\bwf-loading\b/g,"")+" wf-inactive";},config.scriptTimeout),tk=d.createElement("script"),f=false,s=d.getElementsByTagName("script")[0],a;h.className+=" wf-loading";tk.src='https://use.typekit.net/'+config.kitId+'.js';tk.async=true;tk.onload=tk.onreadystatechange=function(){a=this.readyState;if(f||a&&a!="complete"&&a!="loaded")return;f=true;clearTimeout(t);try{Typekit.load(config)}catch(e){}};s.parentNode.insertBefore(tk,s)
})(document)
</script>
</head>
<body>
<a href="#" onclick="window.print(); return false" class="print">Print</a>
<div class="page"><img src="https://www.codeclub.org.uk/assets/logo.svg" class="logo"/><img src="https://www.codeclub.org.uk/assets/robots/header-1.png" class="top-left"/><img src="https://www.codeclub.org.uk/assets/robots/header-2.png" class="top-right"/><img src="https://www.codeclub.org.uk/system/files/032013/515064749d200f088d00013b/large/line-up.png" class="bottom"/>
<h1 contenteditable>Would you like to learn how to make computer games, animations and websites?</h1>
<p contenteditable>Code Club is a nationwide network of free volunteer-led after-school coding clubs for children aged 9-11.</p>
<textarea>Put the details of your Code Club here</textarea>
</div>
</body>
</hmtl>