From 2cc86882142d3f47a0104b8e702e86458df19130 Mon Sep 17 00:00:00 2001 From: tekkub Date: Sat, 20 Jun 2009 20:45:03 -0600 Subject: Tweak margins a little bit --- _posts/2009-06-17-troubleshooting-ssh.textile | 2 ++ css/style.css | 7 +++++-- 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:
/cygdrive/c/ntnot/plink.exe -i "c:\users\you\.ssh\key-file-for-github.ppk" $1 $2
+ and set GIT_SSH to point to this: +
declare -x GIT_SSH="c:\path\to\script"
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; } -- cgit v1.3.1