Skip to content

Commit 1aa29af

Browse files
committed
Site first version
1 parent 95fdf94 commit 1aa29af

File tree

2 files changed

+111
-1
lines changed

2 files changed

+111
-1
lines changed

index.html

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,50 @@
1-
Welcome to EasyPack Site
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>EasyPack Maven Plugin</title>
6+
<link rel="stylesheet" type="text/css" href="resources/style.css">
7+
</head>
8+
<body>
9+
<header>
10+
<div class="header">
11+
<a href="https://github.com/easypack/easypack-maven-plugin/wiki"> Wiki </a>
12+
</div>
13+
</header>
14+
15+
<section class="intro">
16+
<h1>EasyPack Maven Plugin</h1>
17+
<h3>Java applications in tar, zip and tar.gz</h3>
18+
</section>
19+
20+
21+
<div class="packagins">
22+
<div class="example-packaging">
23+
<div class="table-cell" >
24+
<span class="xml-tag">&lt;groupId&gt;</span>com.company<span class="xml-tag">&lt;/groupId&gt;</span>
25+
<span class="xml-tag">&lt;artifactId&gt;</span>myapp<span class="xml-tag">&lt;/artifactId&gt;</span>
26+
<span class="xml-tag">&lt;version&gt;</span>1.0-SNAPSHOT<span class="xml-tag">&lt;version&gt;</span>
27+
<span class="xml-tag">&lt;packaging&gt;</span> <strong>jtar</strong> <span class="xml-tag">&lt;/packaging&gt;</span>
28+
</div>
29+
</div>
30+
<div class="example-packaging">
31+
<div class="table-cell" >
32+
<span class="xml-tag">&lt;groupId&gt;</span>com.company<span class="xml-tag">&lt;/groupId&gt;</span>
33+
<span class="xml-tag">&lt;artifactId&gt;</span>myapp<span class="xml-tag">&lt;/artifactId&gt;</span>
34+
<span class="xml-tag">&lt;version&gt;</span>1.0-SNAPSHOT<span class="xml-tag">&lt;version&gt;</span>
35+
<span class="xml-tag">&lt;packaging&gt;</span> <strong>jzip</strong> <span class="xml-tag">&lt;/packaging&gt;</span>
36+
</div>
37+
</div>
38+
<div class="example-packaging">
39+
<div class="table-cell" >
40+
<span class="xml-tag">&lt;groupId&gt;</span>com.company<span class="xml-tag">&lt;/groupId&gt;</span>
41+
<span class="xml-tag">&lt;artifactId&gt;</span>myapp<span class="xml-tag">&lt;/artifactId&gt;</span>
42+
<span class="xml-tag">&lt;version&gt;</span>1.0-SNAPSHOT<span class="xml-tag">&lt;version&gt;</span>
43+
<span class="xml-tag">&lt;packaging&gt;</span> <strong>jtargz</strong> <span class="xml-tag">&lt;/packaging&gt;</span>
44+
</div>
45+
</div>
46+
</div>
47+
48+
</body>
49+
</html>
50+

resources/style.css

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
body {
2+
margin:0px 0px 0px 0px;
3+
}
4+
5+
.header {
6+
height:30px;
7+
background-color: #2c2c2c;
8+
margin:0px 0px 0px 0px;
9+
}
10+
11+
.header a {
12+
color: white;
13+
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
14+
text-decoration: none;
15+
float:right;
16+
margin: 6px 20px 0 0;
17+
font-weight:bold;
18+
}
19+
20+
.intro {
21+
text-align: center;
22+
margin-top: 102px;
23+
}
24+
.intro h1 {
25+
font-family:"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
26+
font-size: 60px;
27+
color: #333;
28+
}
29+
30+
.intro h3 {
31+
color: #535353;
32+
font-family: 'helvetica neue', Helvetica, Arial;
33+
font-weight: 300;
34+
font-size: 30px;
35+
}
36+
.packagins {
37+
margin-top: 80px;
38+
margin-left: 10px;
39+
text-align: center;
40+
}
41+
42+
.example-packaging {
43+
width: 400px;
44+
display: inline-block;
45+
margin-top: 14px;
46+
height: 168px;
47+
margin-top: 14px;
48+
padding-top: 42px;
49+
50+
}
51+
52+
.example-packaging .table-cell {
53+
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
54+
font-size: 20px;
55+
display: table-cell;
56+
vertical-align: middle;
57+
}
58+
59+
.xml-tag {
60+
color: #63a35c;
61+
}

0 commit comments

Comments
 (0)