summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortekkub <tekkub@gmail.com>2009-06-20 20:45:03 -0600
committertekkub <tekkub@gmail.com>2009-06-20 20:45:03 -0600
commit2cc86882142d3f47a0104b8e702e86458df19130 (patch)
treea790a12500323fa221979f83b4269d7568e3615b
parente0b2eef46bffd1e655cdf818bc1f767d04915092 (diff)
Tweak margins a little bit
-rw-r--r--_posts/2009-06-17-troubleshooting-ssh.textile2
-rwxr-xr-xcss/style.css7
2 files changed, 7 insertions, 2 deletions
diff --git a/_posts/2009-06-17-troubleshooting-ssh.textile b/_posts/2009-06-17-troubleshooting-ssh.textile
index abea65c..c5c6dee 100644
--- a/_posts/2009-06-17-troubleshooting-ssh.textile
+++ b/_posts/2009-06-17-troubleshooting-ssh.textile
@@ -54,7 +54,9 @@ See "this post":http://groups.google.com/group/github/browse_thread/thread/21fd0
Especially with cygwin-git+pageant+putty/plink, you might want to set GIT_SSH to your plink.exe location -- unless that doesn't work for you. In certain circumstances (perhaps after a service pack installation), you will find git network operations failing with
this is because plink.exe running from your (cygwin-provided) git command "*can't talk with pageant to get its keys*":http://www.chiark.greenend.org.uk/~sgtatham/putty/wishlist/cygwin-clobbers-pageant.html . A solution is to set up a script that has:
<pre>/cygdrive/c/ntnot/plink.exe -i "c:\users\you\.ssh\key-file-for-github.ppk" $1 $2</pre>
+
and set GIT_SSH to point to this:
+
<pre>declare -x GIT_SSH="c:\path\to\script"</pre>
This explicitly provides the key for plink to use, rather than have it talk with pageant.
diff --git a/css/style.css b/css/style.css
index f0b7f1d..39e3010 100755
--- a/css/style.css
+++ b/css/style.css
@@ -9,7 +9,9 @@ a { color: #008; }
h2 { background: #ddd; text-align: center; padding: 4px; }
-#welcome p { font-size: 1.3em; color: #444; text-align:center;}
+#welcome { margin-bottom: 0.5em; }
+#welcome p { font-size: 1.3em; color: #444; text-align:center; padding: 0 5em; }
+#welcome p:last-child { margin-bottom: 0; }
#header { }
#footer { background: #ddd;}
@@ -17,7 +19,8 @@ h2 { background: #ddd; text-align: center; padding: 4px; }
.info, .fork { padding: 10px; }
.content { font-size: 1.2em; }
-.content h3 { background: #fdd; font-size: 1.7em; padding: 6px 2px; }
+.content h3 { background: #fdd; font-size: 1.7em; padding: 6px 2px; margin-top: 1.5em; }
+.content p { margin-top: 1.5em; }
pre { padding: 20px; background: #444; color: white; font-size: 0.9em; }