This repository has been archived by the owner on Mar 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
66 lines (60 loc) · 1.79 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
<html>
<head>
<title>My Co-de-sign dojo</title>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<script src="https://cdn.rawgit.com/google/code-prettify/master/src/lang-css.js"></script>
</head>
<body>
<div id="app">
<div class="event-cover">
<div class="brand">
<svg
viewBox="0 0 400 400"
width="160"
height="160"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<g
fill="#FFF"
stroke="none"
stroke-width="1"
fill-rule="evenodd"
>
<path></path>
</g>
</svg>
</div>
<div class="info">
<code class="prettyprint lang-css"></code>
</div>
</div>
<div class="control-panel">
<label class="color">
<h3>Cor de fundo</h3>
<select class="input">
<option value="#00ffcc">#00ffcc</option>
<option value="#99ccff">#99ccff</option>
<option value="#9966cc">#9966cc</option>
<option value="#ff6699">#ff6699</option>
<option value="#ff9966">#ff9966</option>
<option value="#ffff66">#ffff66</option>
</select>
</label>
<label class="number">
<h3>Número da edição</h3>
<input type="number" class="input" />
</label>
<label class="body">
<h3>Conteúdo do evento</h3>
<textarea class="input"></textarea>
</label>
<button class="submit">
Baixar imagem
</button>
</div>
</div>
<script defer src="./app.js"></script>
</body>
</html>