summaryrefslogtreecommitdiff
path: root/sitestatic
diff options
context:
space:
mode:
Diffstat (limited to 'sitestatic')
-rw-r--r--sitestatic/.gitignore3
-rw-r--r--sitestatic/Makefile9
-rw-r--r--sitestatic/archnavbar/archnavbar.css6
-rw-r--r--sitestatic/archnavbar/parabolabw.pngbin0 -> 6595 bytes
-rw-r--r--sitestatic/archweb.css6
-rw-r--r--sitestatic/favicon.icobin575 -> 1150 bytes
-rw-r--r--sitestatic/freedomincluded.pngbin0 -> 3116 bytes
-rw-r--r--sitestatic/gnuchile.pngbin0 -> 7476 bytes
-rw-r--r--sitestatic/js.mk18
-rw-r--r--sitestatic/naltu.pngbin0 -> 5270 bytes
-rw-r--r--sitestatic/silhouette.pngbin2194 -> 2411 bytes
-rw-r--r--sitestatic/venenux.pngbin0 -> 8714 bytes
12 files changed, 36 insertions, 6 deletions
diff --git a/sitestatic/.gitignore b/sitestatic/.gitignore
new file mode 100644
index 00000000..14bd2d31
--- /dev/null
+++ b/sitestatic/.gitignore
@@ -0,0 +1,3 @@
+jquery-1.4.4.js
+jquery-1.4.4.min.js
+jquery.tablesorter.min.js
diff --git a/sitestatic/Makefile b/sitestatic/Makefile
new file mode 100644
index 00000000..f7499d64
--- /dev/null
+++ b/sitestatic/Makefile
@@ -0,0 +1,9 @@
+jqueryversion=1.4.4
+targets=jquery-$(jqueryversion).js jquery-$(jqueryversion).min.js jquery.tablesorter.min.js
+
+all: $(targets) .gitignore
+
+jquery-$(jqueryversion).js:
+ wget http://code.jquery.com/$@
+
+include js.mk
diff --git a/sitestatic/archnavbar/archnavbar.css b/sitestatic/archnavbar/archnavbar.css
index d10c5f52..20cd2ac9 100644
--- a/sitestatic/archnavbar/archnavbar.css
+++ b/sitestatic/archnavbar/archnavbar.css
@@ -5,15 +5,15 @@
*/
/* container for the entire bar */
-#archnavbar { height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; }
-#archnavbarlogo { background: url('archlogo.png') no-repeat !important; }
+#archnavbar { height: 40px !important; padding: 10px 15px !important; background: #000 !important; border-bottom: 5px #787DAB solid !important; }
+#archnavbarlogo { background: url('parabolabw.png') no-repeat !important; }
/* move the heading/paragraph text offscreen */
#archnavbarlogo p { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
#archnavbarlogo h1 { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
/* make the link the same size as the logo */
-#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; }
+#archnavbarlogo a { display: block !important; height: 50px !important; width: 397px !important; }
/* display the list inline, float it to the right and style it */
#archnavbar ul { display: inline !important; float: right !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }
diff --git a/sitestatic/archnavbar/parabolabw.png b/sitestatic/archnavbar/parabolabw.png
new file mode 100644
index 00000000..0e16d33f
--- /dev/null
+++ b/sitestatic/archnavbar/parabolabw.png
Binary files differ
diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css
index b7d6e1ee..a892efbf 100644
--- a/sitestatic/archweb.css
+++ b/sitestatic/archweb.css
@@ -478,7 +478,7 @@ table thead th.sorter-false {
/* home: arrowed headings */
#news h3 a {
display: block;
- background: #1794D1;
+ background: #787DAB;
font-size: 15px;
padding: 2px 10px;
color: white;
@@ -494,7 +494,7 @@ h3 span.arrow {
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
- border-top: 6px solid #1794D1;
+ border-top: 6px solid #787DAB;
margin: 0 auto;
font-size: 0;
line-height: 0px;
@@ -503,7 +503,7 @@ h3 span.arrow {
/* home: pkgsearch box */
#pkgsearch {
padding: 1em 0.75em;
- background: #3ad;
+ background: #787DAB;
color: #fff;
border: 1px solid #08b;
}
diff --git a/sitestatic/favicon.ico b/sitestatic/favicon.ico
index 55497b85..3e43f9bd 100644
--- a/sitestatic/favicon.ico
+++ b/sitestatic/favicon.ico
Binary files differ
diff --git a/sitestatic/freedomincluded.png b/sitestatic/freedomincluded.png
new file mode 100644
index 00000000..87ce39be
--- /dev/null
+++ b/sitestatic/freedomincluded.png
Binary files differ
diff --git a/sitestatic/gnuchile.png b/sitestatic/gnuchile.png
new file mode 100644
index 00000000..b6f9bfb8
--- /dev/null
+++ b/sitestatic/gnuchile.png
Binary files differ
diff --git a/sitestatic/js.mk b/sitestatic/js.mk
new file mode 100644
index 00000000..4c803be6
--- /dev/null
+++ b/sitestatic/js.mk
@@ -0,0 +1,18 @@
+closurecompiler=@compiler() { cp "$$1" "$${1%.js}.min.js"; echo "compiler $$*"; }; compiler
+
+%.min.js: %.js
+ $(closurecompiler) '$<'
+
+.gitignore: FORCE
+ for file in $(gitignore) $(targets); do echo $$file; done | sort > $@
+
+clean: PHONY
+distclean-hook: clean
+distclean: clean distclean-hook
+ rm -f $(targets)
+
+FORCE: PHONY
+PHONY:
+.PHONY: PHONY
+
+.SECONDARY:
diff --git a/sitestatic/naltu.png b/sitestatic/naltu.png
new file mode 100644
index 00000000..0fb4624b
--- /dev/null
+++ b/sitestatic/naltu.png
Binary files differ
diff --git a/sitestatic/silhouette.png b/sitestatic/silhouette.png
index 37e6cf33..c957292e 100644
--- a/sitestatic/silhouette.png
+++ b/sitestatic/silhouette.png
Binary files differ
diff --git a/sitestatic/venenux.png b/sitestatic/venenux.png
new file mode 100644
index 00000000..9db96bba
--- /dev/null
+++ b/sitestatic/venenux.png
Binary files differ