all repos — h3rald @ 467802c520d60853a738fe30bb34d1a145a41f1b

The sources of https://h3rald.com

Minor changes
* CSS fixes.
* comments.json no longer versioned.
h3rald h3rald@h3rald.com
Mon, 10 Aug 2009 16:23:43 +0200
commit

467802c520d60853a738fe30bb34d1a145a41f1b

parent

761f062117cc5fc2d41962439d382b265d7fc945

M README.textileREADME.textile

@@ -11,3 +11,4 @@

h3. Other * pygments (code highlighting) +* A cron job to fetch backtype comments.json and save it to /output/data.
M layouts/default.htmlayouts/default.htm

@@ -35,8 +35,8 @@ <script type="text/javascript">

Cufon.replace('h2', {fontFamily: 'Mutlu'}); Cufon.replace('h3', {fontFamily: 'Mutlu'}); Cufon.replace('h4', {fontFamily: 'Mutlu'}); - Cufon.replace('#services h3', {fontFamily: 'Mutlu'}); - Cufon.replace('#navigation a', {fontFamily: 'Mutlu'}); + Cufon.replace('#services h3 a', {fontFamily: 'Mutlu', hover: true}); + Cufon.replace('#navigation a', {fontFamily: 'Mutlu', hover: true}); function tweets_received(){ $('.twitter-item[title]').qtip(dark_tooltip); }
M resources/css/elements.cssresources/css/elements.css

@@ -260,6 +260,12 @@ }

/* Google Search */ +#search_form +{ + clear:both; + margin-left: 10px; +} + .gsc-resultsHeader, .gs-visibleUrl, .gsc-trailing-more-results, .gs-watermark { display:none;

@@ -268,7 +274,6 @@

table.gsc-search-box { height: 25px; - margin-top: -13px; } .gsc-control, .gsc-resultsRoot

@@ -295,7 +300,7 @@ {

height: 20px; font-size: 80%; color: #ccc; - margin-top: -5px; + margin-top: -2px; font-style: italic; font-family: Georgia, Serif; border: none;
M resources/css/layout.cssresources/css/layout.css

@@ -81,15 +81,17 @@ }

#navigation { - color: #ccc; - margin-top: -3px; + padding-right: 60px; + margin-top: -5px } #navigation li { - display: inline; + display: block; + float: left; list-style-type: none; - padding-right: 10px; + width: 100px; + text-align: center; }
M resources/css/text.cssresources/css/text.css

@@ -64,8 +64,7 @@

#services h3 a { - padding-top: 35px; - vertical-align: middle; + padding-top: 10px; } #content ul
M tasks/site.raketasks/site.rake

@@ -41,11 +41,11 @@ puts "Deleting all files in output dir..."

output.rmtree end - task :update => [:copy_resources, :build_tag_pages] do + task :update => [:copy_resources] do system "nanoc co" end - task :run => [:copy_resources, :build_tag_pages] do + task :run => [:copy_resources] do system "nanoc aco" end

@@ -91,8 +91,7 @@ end

end file_dirs = [Pathname.new(pwd/'resources/images'), Pathname.new(pwd/'resources/js'), - Pathname.new(pwd/'resources/css'), - Pathname.new(pwd/'resources/data')] + Pathname.new(pwd/'resources/css')] files = [pwd/'resources/.htaccess'] files.each { |f| copy_f.call f } file_dirs.each do |d|