diff --git a/index.html b/index.html index e31f12f0..8c722796 100644 --- a/index.html +++ b/index.html @@ -19,18 +19,21 @@ } #main { background-color: white; - padding-bottom: 200px; + padding-bottom: 1em; } h1 { font-family: 'Iceland', sans-serif; font-size: 50px; - } + } #main h2 { - margin-top: 1.5em; + margin-top: 1.75em; font-family: Ubuntu, Arial, sans-serif; font-weight: 300; font-size: 20px; + padding-bottom: .25em; + border-bottom: 1px solid #DDD; + margin-bottom: .5em; } #main a { color: #24A; @@ -39,12 +42,32 @@ p#deck { font-size: 18px; - margin-bottom: 2em; + margin-bottom: 2.5em; } #example-toolbar { margin-bottom: 1px; } + #example { + background-color: #fafafa; + border: 1px solid #ccc; + border-radius: 4px; + margin-bottom: .5em; + } + #example pre { + border: none; + margin: 0; + background-color: #f0f0f0; + } + #example > div { + padding: 9.5px 9.5px 0 9.5px; + font-family: serif; + font-size: 14px; + } + #example ul { + padding-left: 1.5em; + list-style-type: square; + } #sidebar { color: #DDD; @@ -70,14 +93,25 @@ #sidebar li { margin-bottom: 6px; } + @media (max-width: 768px) { + body, #sidebar, #sidebar h2 { + background-color: #FAFAFA; + color: black; + } + #sidebar a { + color: #005; + } + } -
-
+ Fork me on GitHub + + +

Mail-in-a-Box

Take back control of your email with this easy-to-deploy mail server in a box.

@@ -87,15 +121,35 @@
-
-sudo apt-get install vagrant git
+	    			
+
sudo apt-get install vagrant git
 git clone https://github.com/joshdata/mailinabox
 cd mailinabox
 
-vagrant up
-vagrant ssh
+vagrant up
+vagrant ssh
 sudo management/whats_next.py
+ + + + + + +

Note: This is a work in progress. I work on Mail-in-a-Box in my limited free time. Your mileage may vary.

@@ -136,6 +190,7 @@ sudo management/whats_next.py

Mail-in-a-Box is similar to iRedMail.

+
@@ -143,15 +198,17 @@ sudo management/whats_next.py

Inside Every Box . . .

@@ -167,11 +224,12 @@ sudo management/whats_next.py var me = $(this); $('#example-toolbar button').removeClass('active') me.addClass('active'); - $('pre#example span').addClass('hidden'); - $('pre#example span.' + me.attr('data-id')).removeClass('hidden'); + $('#example > *').addClass('hidden'); + $('#example > .' + me.attr('data-id')).removeClass('hidden'); }) - $('#sidebar li').popover({ animation: false, trigger: 'hover', container: 'body' }) + if ($(window).width() > 768) + $('#sidebar li').popover({ animation: false, trigger: 'hover', container: 'body' }) })