summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2008-10-11 22:24:24 -0400
committerDusty Phillips <buchuki@gmail.com>2008-10-11 22:24:24 -0400
commitf4f34fe7c01a881f73221e14bd5c7ab0a4d3c9f8 (patch)
tree37b3250c08f7b25361a09a45a8dd9316e65c4f8b /media
parente6c1febc4b37c4d74cad3cecbc079f888481c27b (diff)
downloadarchweb-f4f34fe7c01a881f73221e14bd5c7ab0a4d3c9f8.tar.gz
archweb-f4f34fe7c01a881f73221e14bd5c7ab0a4d3c9f8.zip
drop some extra media (may have to restore)
Diffstat (limited to 'media')
-rw-r--r--media/arch-paypal.jpgbin2273 -> 0 bytes
-rw-r--r--media/asc.gifbin54 -> 0 bytes
-rw-r--r--media/button.pngbin837 -> 0 bytes
-rw-r--r--media/desc.gifbin54 -> 0 bytes
-rw-r--r--media/forms/_library/cmxform.css57
-rw-r--r--media/forms/cmxform.css30
-rw-r--r--media/forms/cmxform.js22
-rw-r--r--media/forms/core.css22
-rw-r--r--media/forms/images/cmxform-divider.gifbin43 -> 0 bytes
-rw-r--r--media/forms/images/cmxform-fieldset.gifbin2926 -> 0 bytes
-rw-r--r--media/forms/reset.css62
-rw-r--r--media/forms/screen.css16
-rw-r--r--media/gnu-head-tiny.jpgbin3049 -> 0 bytes
13 files changed, 0 insertions, 209 deletions
diff --git a/media/arch-paypal.jpg b/media/arch-paypal.jpg
deleted file mode 100644
index 3b43e2f3..00000000
--- a/media/arch-paypal.jpg
+++ /dev/null
Binary files differ
diff --git a/media/asc.gif b/media/asc.gif
deleted file mode 100644
index 74157867..00000000
--- a/media/asc.gif
+++ /dev/null
Binary files differ
diff --git a/media/button.png b/media/button.png
deleted file mode 100644
index 670d69c6..00000000
--- a/media/button.png
+++ /dev/null
Binary files differ
diff --git a/media/desc.gif b/media/desc.gif
deleted file mode 100644
index 3b30b3c5..00000000
--- a/media/desc.gif
+++ /dev/null
Binary files differ
diff --git a/media/forms/_library/cmxform.css b/media/forms/_library/cmxform.css
deleted file mode 100644
index ff362864..00000000
--- a/media/forms/_library/cmxform.css
+++ /dev/null
@@ -1,57 +0,0 @@
-/**********************************
-
-Use: cmxform template
-Author: Nick Rigby
-
-***********************************/
-
-form.cmxform fieldset { margin-bottom: 10px; }
-
-form.cmxform legend {
- padding: 0 2px;
- font-weight: bold;
- _margin: 0 -7px; /* IE Win */
- }
-
-form.cmxform label {
- display: inline-block;
- line-height: 1.8;
- vertical-align: top;
- }
-
-form.cmxform fieldset ol {
- margin: 0;
- padding: 0;
- }
-
-form.cmxform fieldset li {
- list-style: none;
- padding: 5px;
- margin: 0;
- }
-
-form.cmxform fieldset fieldset {
- border: none;
- margin: 3px 0 0;
- }
-
-form.cmxform fieldset fieldset legend {
- padding: 0 0 5px;
- font-weight: normal;
- }
-
-form.cmxform fieldset fieldset label {
- display: block;
- width: auto;
- }
-
-form.cmxform em {
- font-weight: bold;
- font-style: normal;
- color: #f00;
- }
-
-form.cmxform label { width: 120px; } /* Width of labels */
-form.cmxform fieldset fieldset label { margin-left: 123px; } /* Width plus 3 (html space) */
-
-/*\*//*/ form.cmxform legend { display: inline-block; } /* IE Mac legend fix */ \ No newline at end of file
diff --git a/media/forms/cmxform.css b/media/forms/cmxform.css
deleted file mode 100644
index f713714f..00000000
--- a/media/forms/cmxform.css
+++ /dev/null
@@ -1,30 +0,0 @@
-/**********************************
-
-Name: cmxform Styles
-Author: Nick Rigby
-
-***********************************/
-
-form.cmxform {
- width: 370px;
- font-size: 1.1em;
- color: #333;
- }
-
-form.cmxform legend { padding-left: 0; }
-
-form.cmxform legend,
-form.cmxform label { color: #333; }
-
-form.cmxform fieldset {
- border: none;
- border-top: 1px solid #C9DCA6;
- background: url(../images/cmxform-fieldset.gif) left bottom repeat-x;
- }
-
-form.cmxform fieldset fieldset { background: none; }
-
-form.cmxform fieldset li {
- padding: 5px 10px 7px;
- background: url(../images/cmxform-divider.gif) left bottom repeat-x;
- } \ No newline at end of file
diff --git a/media/forms/cmxform.js b/media/forms/cmxform.js
deleted file mode 100644
index 0b7973d6..00000000
--- a/media/forms/cmxform.js
+++ /dev/null
@@ -1,22 +0,0 @@
-if( document.addEventListener ) document.addEventListener( 'DOMContentLoaded', cmxform, false );
-
-function cmxform(){
- // Hide forms
- $( 'form.cmxform' ).hide().end();
-
- // Processing
- $( 'form.cmxform' ).find( 'li/label' ).not( '.nocmx' ).each( function( i ){
- var labelContent = this.innerHTML;
- var labelWidth = document.defaultView.getComputedStyle( this, '' ).getPropertyValue( 'width' );
- var labelSpan = document.createElement( 'span' );
- labelSpan.style.display = 'block';
- labelSpan.style.width = labelWidth;
- labelSpan.innerHTML = labelContent;
- this.style.display = '-moz-inline-box';
- this.innerHTML = null;
- this.appendChild( labelSpan );
- } ).end();
-
- // Show forms
- $( 'form.cmxform' ).show().end();
-} \ No newline at end of file
diff --git a/media/forms/core.css b/media/forms/core.css
deleted file mode 100644
index bdeac7a4..00000000
--- a/media/forms/core.css
+++ /dev/null
@@ -1,22 +0,0 @@
-/**********************************
-
-Use: Core Styles
-Author: Nick Rigby
-
-***********************************/
-
-body {
- padding: 0 10px;
- font: normal 62.5% "Lucida Grande", Helvetica, Verdana, Arial;
- }
-
-p { margin: 10px 0; }
-
-.sr {
- position: absolute;
- left: -9999em;
- top: 0;
- width: 1px;
- height: 1px;
- overflow: hidden;
- } \ No newline at end of file
diff --git a/media/forms/images/cmxform-divider.gif b/media/forms/images/cmxform-divider.gif
deleted file mode 100644
index 718a977c..00000000
--- a/media/forms/images/cmxform-divider.gif
+++ /dev/null
Binary files differ
diff --git a/media/forms/images/cmxform-fieldset.gif b/media/forms/images/cmxform-fieldset.gif
deleted file mode 100644
index 0590c894..00000000
--- a/media/forms/images/cmxform-fieldset.gif
+++ /dev/null
Binary files differ
diff --git a/media/forms/reset.css b/media/forms/reset.css
deleted file mode 100644
index c557f24c..00000000
--- a/media/forms/reset.css
+++ /dev/null
@@ -1,62 +0,0 @@
-/**********************************
-
-Use: Reset Styles for all browsers
-Author: Nick Rigby
-
-***********************************/
-
-body, p, blockquote {
- margin: 0;
- padding: 0;
- }
-
-a img, iframe { border: none; }
-
-/* Headers
-------------------------------*/
-
-h1, h2, h3, h4, h5, h6 {
- margin: 0;
- padding: 0;
- font-size: 100%;
- }
-
-/* Lists
-------------------------------*/
-
-ul, ol, dl, li, dt, dd {
- margin: 0;
- padding: 0;
- }
-
-/* Links
-------------------------------*/
-
-a, a:link {}
-a:visited {}
-a:hover {}
-a:active {}
-
-/* Forms
-------------------------------*/
-
-form, fieldset {
- margin: 0;
- padding: 0;
- }
-
-fieldset { border: 1px solid #000; }
-
-legend {
- padding: 0;
- color: #000;
- }
-
-input, textarea, select {
- margin: 0;
- padding: 1px;
- font-size: 100%;
- font-family: inherit;
- }
-
-select { padding: 0; } \ No newline at end of file
diff --git a/media/forms/screen.css b/media/forms/screen.css
deleted file mode 100644
index d21a36a3..00000000
--- a/media/forms/screen.css
+++ /dev/null
@@ -1,16 +0,0 @@
-/**********************************
-
-Use: Main Screen Import
-Author: Nick Rigby
-
-***********************************/
-
-@import "reset.css";
-@import "core.css";
-
-@import "_library/cmxform.css";
-@import "cmxform.css";
-
-/* IE5 Macintosh \*//*/
-@import "_ie/mac/5.css";
-/**/ \ No newline at end of file
diff --git a/media/gnu-head-tiny.jpg b/media/gnu-head-tiny.jpg
deleted file mode 100644
index 441be50d..00000000
--- a/media/gnu-head-tiny.jpg
+++ /dev/null
Binary files differ