baggyeyes: Photography: Yashica-A (Photography: Yashica-A)
Baggyeyes ([personal profile] baggyeyes) wrote in [site community profile] dreamscapes2009-12-28 06:17 pm

Two Transmogrified themes

I promised I'd submit this before New Years. I wanted to clean it up; take out code that I didn't modify, but I honestly cannot for the life of me, remember what I changed and didn't. :(

I've been having a terrible time remembering things...

I had been working on a theme a while ago, for DW Transmogrified. It morphed into two themes, Tehotenion, a purple and White and black theme named in honor of my Dad, and a black and white one with shadows. They aren't done, and they are messy - code-wise.

Previews:

Tehotenion

Shadow Boxing

Layer info:

Tehotenion

Shadow Boxing

This needs testing on Windows machines, (IE in particular) and Linux.
ninetydegrees: Art: self-portrait (Default)

Re: Shadow Boxing

[personal profile] ninetydegrees 2010-03-01 05:07 pm (UTC)(link)
In the footer:

set color_footer_background = "#000000";
set color_footer_link = "#6C3E49";
set color_footer_text = "#995667";

vs

.module-section-three {
background-color: #ffffff;
color: #4A4A4A;
}

.module-section-three a {
color: #e6f8e4;
}
ninetydegrees: Art: self-portrait (Default)

Re: Shadow Boxing

[personal profile] ninetydegrees 2010-03-01 05:35 pm (UTC)(link)
In modules

set color_module_link = "#995667";
set color_module_link_active = "#e5e9d6";
set color_module_link_hover = "#e6f8e4";
set color_module_link_visited = "#cbcebe";

vs

.module-section-two a {
color: #6C3E49;
}

.module-section-two a:visited {
color: #553039;
}

.module-section-two a:hover {
color: #995667;
}

.module-section-two a:active {
color: #995667;
}


and

set color_header_background = "#ffffff";
set color_header_hover = "#995667";
set color_header_hover_background = "#995667";
set color_header_text = "#272727";

vs
.module-section-one ul {
background-color: #ffffff;
color: #4A4A4A;
}

.module-section-one li a {
background-color: #ffffff;
color: #4A4A4A;
}

.module-section-one ul li a:hover, .module-section-one ul li.active a {
background-color: #6C3E49;
color: #ffffff;
}
ninetydegrees: Art: self-portrait (Default)

Re: Shadow Boxing

[personal profile] ninetydegrees 2010-03-01 05:42 pm (UTC)(link)
Still in modules:

set color_module_background = "#ffffff";
set color_module_text = "#6C3E49";

vs

.module {
background: #000000;
}

.module-section-two .module {
color: #4A4A4A;
background-color: #ffffff;
}
ninetydegrees: Art: self-portrait (Default)

Re: Shadow Boxing

[personal profile] ninetydegrees 2010-03-01 06:46 pm (UTC)(link)
And:

.month .day-has-entries p a { color: #5B333D; }
.month .day-has-entries {
background-color: #5B333D;
color: #ffffff;
text-decoration: none;
}

.month .day-has-entries a:hover {
background-color: #ffffff;
color: #5B333D;
text-decoration: none;
}

vs

.month .day-has-entries p a { color: #4C2B33; font-weight:bold; }
.month .day-has-entries {
background-color: #ffffff;
color: #553039;
text-decoration: none;
}
.month .day-has-entries a:hover {
background-color: #ffffff;
color: #995667;
text-decoration: none;
}
Edited 2010-03-01 18:49 (UTC)