-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (72 loc) · 1.85 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
<html>
<head>
<meta charset="UTF-8">
<title>Greve Poema</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.8/p5.js"></script>
<script src="geragera.js"></script>
<style>
.textInput {
display: block;
margin: 0 auto;
font-size: 18px;
}
.textInput+.textInput {
margin-top: 12px;
}
#inputsContainer {
margin: 0;
}
#shareButtons {
margin: 0 auto;
position: fixed;
top: 5px;
left: 0;
background-color: #fff;
z-index: 10;
width: 2rem;
padding: 0 5px;
}
a {
text-decoration: none;
}
i.fa {
font-size: 2rem;
color: #000;
padding: 5px 0;
transition: color 0.15s linear;
cursor: pointer;
}
i.fa:hover {
color: #aaa;
}
.button {
width: 250px;
margin: 12px auto;
padding: 8px;
background-color: #eee;
border: 1px solid #000;
text-align: center;
text-transform: uppercase;
cursor: pointer;
}
</style>
</head>
<body style="margin: 0;">
<div id="myCanvas" style="margin: 0 auto;"></div>
<div id="inputsContainer">
<input type="text" maxlength="80" class="textInput" id="lambeTexto" value="texto do lambe">
<input type="text" maxlength="24" class="textInput" id="lambeTitulo" value="título">
<a title="Baixe a imagem do Lambe">
<div class="button saveButton">
Baixe a imagem do Lambe
</div>
</a>
</div>
<div id="shareButtons">
<a title="Baixe a imagem">
<i class="fa fa-download saveButton" aria-hidden="true"></i>
</a>
</div>
</body>
</html>