From 1e8dc75be8b03d49dd44ef744a0a3550c4f71ad4 Mon Sep 17 00:00:00 2001 From: Matthew Summers Date: Mon, 21 Feb 2011 15:08:36 -0600 Subject: Initial Working Commit --- htdocs/gentoo-logo.png | Bin 0 -> 38865 bytes htdocs/get_gentoo.html | 87 ++++++++++++++++++++++++++++++++ htdocs/style.css | 133 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 220 insertions(+) create mode 100644 htdocs/gentoo-logo.png create mode 100644 htdocs/get_gentoo.html create mode 100644 htdocs/style.css diff --git a/htdocs/gentoo-logo.png b/htdocs/gentoo-logo.png new file mode 100644 index 0000000..2529988 Binary files /dev/null and b/htdocs/gentoo-logo.png differ diff --git a/htdocs/get_gentoo.html b/htdocs/get_gentoo.html new file mode 100644 index 0000000..5c876b5 --- /dev/null +++ b/htdocs/get_gentoo.html @@ -0,0 +1,87 @@ + + + + + Get Gentoo! + + + + +
+
+ +
+ +
+ +
+
+
+

+ LiveDVD (released Oct 10, 2009) +
(up to 2.6 gigabytes depending on arch) +
+ amd64 + x86 +

+

+ If you prefer to select a local mirror yourself, see Gentoo Mirrors. +

+
+ + +
+ + + diff --git a/htdocs/style.css b/htdocs/style.css new file mode 100644 index 0000000..d00a820 --- /dev/null +++ b/htdocs/style.css @@ -0,0 +1,133 @@ +/*Copyright 2011 Gentoo Foundation +Created by Matthew Summers*/ + +body { + background: #DDDAEC; + font-size: 16px; + font-family: sans-serif; + color: #45347B; +} + +div.contain { + display:inline-block; + width:98%; + height:100%; + margin: 1em 1em; + background: rgba(255,255,255,0.20); + -moz-border-radius: 142px; + -webkit-border-radius: 142px; + -opera-border-radius: 142px; + border-radius: 142px; + -moz-box-shadow:#45347B 0 0 2.5em; + -webkit-box-shadow:#45347B 0 0 2.5em; + -opera-box-shadow:#45347B 0 0 2.5em; + box-shadow:#45347B 0 0 2.5em; +} + +div.head { + +} + +div.logo { + background: url('gentoo-logo.png') no-repeat top center; + text-align:center; + +} +div.logo h1 { +/* display:none; */ + font-size: 48px; + padding-top: 6em; +} + +div.arches { + width:100%; + margin:auto; + min-height:5em; + text-align:center; + display:inline-block; +} + +div.arches ul { + display:inline-block; + margin: 0 auto; + text-align:center; +} + +div.arches ul li { + float:left; + display:block; + width:17.6%; + min-width: 160px; + margin: 1%; +/* padding: 0.5%; */ + min-height: 160px; + text-align:center; + border: none; + -moz-border-radius: 20px; + -webkit-border-radius: 20px; + -opera-border-radius: 20px; + border-radius: 20px; + -moz-box-shadow: 0 0 1em #000; + -webkit-box-shadow: #000 0 0 1em; + -opera-box-shadow: #000 0 0 1em; + box-shadow: 0 0 1em #000; +} + +div.arches ul li a { +/* background: rgba(0,0,0,0.25); */ + color: #45347B; + margin-right:1em; + margin-bottom: 1em; + font-weight: bold; + text-decoration: none; +/* text-shadow:0 3px 2px #000000, 0px 0px 2px #000000; */ + display:inline-block; + border: none; + padding: 0.25em 1em; + -moz-border-radius: 10px; + -webkit-border-radius: 10px; + -opera-border-radius: 10px; + border-radius: 10px; + -moz-box-shadow: 0 0 0.5em #000; + -webkit-box-shadow: #000 0 0 0.5em; + -opera-box-shadow: #000 0 0 0.5em; + box-shadow: 0 0 0.5em #000; +} + +div.arches ul li a:hover { + text-decoration: none; + -moz-box-shadow:inset 0 0 0.5em #000; + -webkit-box-shadow:inset #000 0 0 0.5em; + -opera-box-shadow: inset #000 0 0 0.5em; + box-shadow:inset 0 0 0.5em #000; +} + +div.other { + margin:2em auto; + padding:1em 0.5em; + text-align:center; + width: 42%; + -moz-border-radius: 20px; + -webkit-border-radius: 20px; + -opera-border-radius: 20px; + border-radius: 20px; + -moz-box-shadow: 0 0 1em #000; + -webkit-box-shadow: #000 0 0 1em; + -opera-box-shadow: #000 0 0 1em; + box-shadow: 0 0 1em #000; +} + +div.footer { +/* display:inline-block; */ + text-align:center; + margin:2em auto; + width:75%; +} + +p { + margin: 1em 1em; +} + +h1 { + color: #45347B; +} \ No newline at end of file -- cgit v1.2.3-65-gdbad