-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepo.html
95 lines (89 loc) · 2.71 KB
/
repo.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<link href='/css/ui/jquery-ui-1.8.7.custom.css' rel='stylesheet' />
<link rel="stylesheet" href="/css/forms.css" type="text/css" media="screen" charset="utf-8"0>
<link rel="stylesheet" href="http://yandex.st/highlightjs/5.16/styles/github.min.css">
<script src='/js/jquery.js'></script>
<script src='/js/jqueryui.js'></script>
<script src='/js/modernizr-1.6.min.js'></script>
<script src="/js/showdown.js"></script>
<script src="http://yandex.st/highlightjs/5.16/highlight.min.js"></script>
<script src="/js/jquery.elastic.js"></script>
<script src='/js/client.min.js'></script>
<style type="text/css" media="screen">
body{
font-family: Courier, monospace;
width: 1000px;
margin: 0 auto;
padding-top: 50px;
background: #DDD url(http://24ways.org/img/body.gif) repeat fixed 0px 0px;
}
em{
background-color: #FFF666;
}
a{
color: #06F;
text-decoration: none;
}
#workstation{
float: left;
background-color: rgba(255, 255, 255, 0.746094);
border: 1px dotted;
width: 45%;
min-height: 450px;
}
#edition{
padding-left: 10px;
}
#history{
float: right;
width: 45%;
}
.date{
font-size: 0.7em;
color: gray;
}
#gists{
list-style-type: none;
}
.gist:hover {
background-color: #FFF666;
cursor: pointer;
}
.error{
color: red;
}
</style>
<title>Hackutils</title>
</head>
<body>
<div id="workstation">
<form id="edition" action="/gists/create">
<h2>Agregando nota</h2>
<p>
<input type="text" name="title" placeholder="poné un título"0>
</p><p>
<input type="text" name="categories" placeholder="categorías separadas por comas"0>
</p><p>
<textarea name="content" rows="8" cols="40"></textarea>
</p>
<p>
<input type="submit" value="Add"0>
</p>
</form>
<div id="display">
<a href="/gists/new" id="add">Agregar nueva nota rápida</a>
<div id="note"></div>
</div>
</div>
<div id="history">
<h2 id="prompt">Todas tus notas</h2>
<select id="categories">
<option>Todas</option>
</select>
<ul id="gists"></div>
</div>
</body>
</html>