-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (73 loc) · 1.7 KB
/
index.html
File metadata and controls
77 lines (73 loc) · 1.7 KB
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
<html>
<head>
<title>Skillnet on GitHub</title>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
<style type="text/css">
body {
background-color: #3C3C3C;;
margin: 0px;
font-family: 'Helvetica Neue' Helvetica Arial sans-serif;
}
#header {
background-color: black;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
.right_logo {
position: absolute;
right: 10px;
top: 10px;
}
.right_logo img {
margin-right: 10px;
height: 40px;
margin-top: 7px;
}
#page {
right: 0px;
left: 0px;
background: #3C3C3C url("content_tausta.png") repeat-x;
padding-top: 10px;
padding-left: 10px;
color: white;
height: 200px;
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
li {
margin: 0 0 0.5em 0;
padding: 0;
}
#content {
position: absolute;
width: 60%;
left: 200px;
}
.darkorange { color: #FF7900; }
.orange { color: #FF9433; }
.green { color: #95C633; }
.blue { color: #698797; }
.red { color: red; }
a { color: #FF7900; }
</style>
</head>
<body>
<div id="header">
<img src="logo.png"/>
</div>
<div id="page">
<div id="content">
<h3 class="green">Skillnet opensource projects</h3>
<ul>
<li><a href="http://github.com/skillnet/validates_email_with_smtp/tree/master">validates_email_with_smtp</a> - Rails plugin which validates email address using smtp.</li>
<li><a href="http://rubyforge.org/projects/diff-csv/">diff-csv</a> - Library API and command line tool to compare CSV files.</li>
<li><a href="http://github.com/skillnet/github-wiki-inspector/tree/master">github-wiki-inspector</a> - Compact Rails WebApp to inspect GitHub Wiki pages.</li>
</ul>
</div>
</div>
</body>
</html>