1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-06-01 06:39:19 +02:00

bg white, new logo, minor fixes

This commit is contained in:
muflax 2012-04-18 03:47:38 +02:00
parent 0e30b00be5
commit a186dacd2c
9 changed files with 9 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

View file

@ -1,5 +1,5 @@
/* colors */ /* colors */
$bg: #ffffcc; $bg: #fff;
$fg: #222; $fg: #222;
$h1: #7D9B3E; $h1: #7D9B3E;
$h2: #AAd398; $h2: #AAd398;
@ -117,12 +117,11 @@ div#crumb {
margin: 0 auto; margin: 0 auto;
} }
div.next-prev { div.nextprev {
border-top: 10px solid $h1; border-top: 10px solid $h1;
text-align: center; text-align: center;
} }
div.footnotes { div.footnotes {
border-top: 10px solid $h1; border-top: 10px solid $h1;
} }

View file

@ -13,13 +13,11 @@ Finished most of the transition. All content is now ported over and everything's
There's no new content besides this entry yet (and some minor clean-ups). There's no new content besides this entry yet (and some minor clean-ups).
I've divided the blog into a bunch of categories, but there's still a main stream of content and old links continue to work (though new posts use a different format). Unless I fucked up, nobody should have to change any links or feeds or whatever and nothing is gone. I think navigation is now a bit easier. (Tags are gone, but who cares. I only used them for puns anyway.) I've divided the blog into a bunch of categories, but there's still a main stream of content and old links continue to work (though new posts use a different format). Unless I fucked up, nobody should have to change any links or feeds or whatever and nothing is gone. I think navigation is now a bit easier. (Tags are gone, but who cares. I only used them for puns anyway.) The layout is usable, I think, but I'm still improving it. If anyone is bothered by anything, just say so, I'll fix it.
I also didn't want to setup a new CSS design, so the blogs all use the same one as the main site for now. I also didn't want to setup a new CSS design, so the blogs all use the same one as the main site for now. I did plan to move away from the violet/green/yellow look, but now that Google+ looks even *more* like gray-ish fog, I'm disgusted by anything black-and-white for a while. Nonetheless, I've switched to a white background for now, mostly 'cause the yellow one really bothered me, and images look better on white. Also, (temporary?) new logo on the main site. (That's [Yamantaka][]. Great guy.)
The layout is usable, I think, but I'm still improving it. If anyone is bothered by anything, just say so, I'll fix it. I did plan to move away from the violet/green/yellow look, but now that Google+ looks even *more* like gray-ish fog, I'm disgusted by anything black-and-white for a while. I'll likely improve the current look, but this may take some time and inspiration first. I'll also hack up some mobile-compatible version soon 'cause text-only sites that are hard to read on phones actually annoy me now. (\*cough\*LW\*cough\*)
I'll improve the current look, but this may take some time and inspiration first. I'll also hack up some mobile-compatible version soon 'cause text-only sites that are hard to read on phones actually annoy me now. (\*cough\*LW\*cough\*)
Besides coding, fixing links and moving text around, I played some old Need For Speed, filed some paperwork, listened to Michel Thomas and tweeted a lot. ([Klout][] says I'm a "socializer". This is [Lain][] all over again!) Besides coding, fixing links and moving text around, I played some old Need For Speed, filed some paperwork, listened to Michel Thomas and tweeted a lot. ([Klout][] says I'm a "socializer". This is [Lain][] all over again!)

View file

@ -1,11 +1,11 @@
<div id="next-prev"> <div id="next-prev">
<p><span class="align_left"> <p><span class="align_left">
<a class='next-prev' href='<%= @item.path %>'> <a class='nextprev' href='<%= @item.path %>'>
<%= @item[:title] %> <%= @item[:title] %>
</a> </a>
</span> </span>
<span class="align_right"> <span class="align_right">
<a class='next-prev' href='<%= @item.path %>'> <a class='nextprev' href='<%= @item.path %>'>
<%= @item[:title] %> <%= @item[:title] %>
</a> </a>
</span> </span>

View file

@ -15,8 +15,9 @@ def image(name, title="", link=nil)
end end
ret += "<a href='#{link}'>" unless link.nil? ret += "<a href='#{link}'>" unless link.nil?
ret += "<img src='/pigs/#{name}' height='#{img.height}' width='#{img.width}' title='#{title}' alt='#{title}'/>" ret += "<img src='/pigs/#{name}' height='#{img.height}' width='#{img.width}' title=\"#{title}\" alt=\"#{title}\"/>"
ret += "</a>" unless link.nil? ret += "</a>" unless link.nil?
ret ret
end end