branch: new-master commit e33caa05b65d16316341bac5f5311b95fd474856 Author: Ted Zlatanov <t...@lifelogs.com> Commit: Ted Zlatanov <t...@lifelogs.com>
* html/index.html, html/layout.css : Initial import. --- html/index.html | 23 +++++++++++++++ html/layout.css | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 110 insertions(+) diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..e39a1c5 --- /dev/null +++ b/html/index.html @@ -0,0 +1,23 @@ +<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"> +<html> +<head> + <title>GNU Emacs Lisp Package Archive</title> + <link rel="icon" type="image/png" href="gnu-head-mini.png"> + <link rel="stylesheet" type="text/css" href="layout.css"> +</head> +<body> + +<h1>GNU Emacs Lisp Package Archive</h1> + +<p> +This is the default package repository for +<a href="http://www.gnu.org/software/emacs/">GNU Emacs</a>. + +<p> +To use it, type <tt>M-x list-packages</tt> in Emacs. +(This requires Emacs version 24.1 or higher.) + +<p> +You can grab the <a href="emacs-packages-latest.tgz">latest package snapshot</a>. +</body> +</html> diff --git a/html/layout.css b/html/layout.css new file mode 100644 index 0000000..f6c1395 --- /dev/null +++ b/html/layout.css @@ -0,0 +1,87 @@ +/* This is heavily cut-down version of http://www.gnu.org/layout.css */ + + +/* +layout.css -- css stylesheet used on www.gnu.org + +Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +*/ + +html, body{ + padding: 0; + color: #35382a; + max-width: 58em; margin: 0 auto 0; position: relative; min-width: 902px; + padding-left: 10px; padding-right: 10px; + background-color: #fff; padding-bottom: 1.8em; margin-top: 0.5em; +} + +body{ + font-family: sans-serif; +} + +a:hover{ color: red; } + +h1 { + background-color: #3465a4; color: white; font-size: 2em; + margin-bottom: 0.3em; font-weight:bold; text-align: center; line-height: 1.6em; } + +h2, h3, {line-height: 1.5em;} + +h2{ font-size: 1.6em; } + +h3{ font-size: 1.3em; } + +img{ border: 0; } + +.nocenter{ text-align: left; } + +ul { list-style: square; margin-left: 1.4em; list-style-image:url(bullet.gif); } + +ol{ list-style: decimal; margin-left: 1.9em; } + +li, dd, p{ + padding-bottom: 1em; line-height: 1.5em; } + +dt{ font-weight: bold; } + +pre { +padding-left: 1.5em; +padding-right: 1.5em; +margin-top: 1em; +margin-bottom: 1em; +font-size: 0.9em; +display: block; +background-color: #eeeeee; +color: #000000; +font-family: monospace; +} + +strong, b{ font-weight: bold; } + +em, i, var{ font-style: italic; } + +blockquote{ margin: 1em; font-style: italic; } + +code, kbd, samp, tt{ font-family: monospace; } + +.center{ text-align:center; } + +.big{ font-size: 130%; padding-top: 0.7em; } + +.inline-list li { display: inline } + +.highlight{background-color: #ff6;} + +h2 a{color: yellow !important;}