Baggyeyes (
baggyeyes) wrote in
dreamscapes2009-12-28 06:17 pm
Entry tags:
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.
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.

Re: Shadow Boxing
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;
}
Re: Shadow Boxing
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;
}
Re: Shadow Boxing
set color_module_background = "#ffffff";
set color_module_text = "#6C3E49";
vs
.module {
background: #000000;
}
.module-section-two .module {
color: #4A4A4A;
background-color: #ffffff;
}
Re: Shadow Boxing
.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;
}