mourningdove/styles/crisped/themes.s2

13207 lines
480 KiB
Text
Raw Permalink Normal View History

2026-05-24 01:03:05 +00:00
#NEWLAYER: crisped/adore
layerinfo type = "theme";
layerinfo name = "Adore";
layerinfo redist_uniq = "crisped/adore";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#DA6F3F";
set color_calendar_link = "#FEC321";
set color_calendar_link_hover = "#FCE980";
set color_calendar_link_visited = "#FCC87F";
set color_calendar_text = "#070103";
set color_footer_link = "#FEC321";
set color_footer_link_hover = "#FCE980";
set color_footer_link_visited = "#FE9372";
set color_page_background = "#B61A5C";
set color_page_link = "#FEC321";
set color_page_link_hover = "#FCE980";
set color_page_link_visited = "#FE9372";
set color_page_subtitle = "#FE9372";
set color_page_text = "#070103";
set color_page_title = "#FEC321";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#FCE980";
set color_comment_title_background = "#C8444D";
set color_entry_background = "#FEC321";
set color_entry_border = "#DA6F3F";
set color_entry_interaction_links = "#E03848";
set color_entry_link = "#C8444D";
set color_entry_link_hover = "#E03848";
set color_entry_link_visited = "#DD3330";
set color_entry_text = "#070103";
set color_entry_title = "#FCE980";
set color_entry_title_background = "#C8444D";
##===============================
## Module Colors
##===============================
set color_module_background = "#EC9930";
set color_module_border = "#DA6F3F";
set color_module_link = "#8E201E";
set color_module_link_hover = "#791E26";
set color_module_link_visited = "#691716";
set color_module_text = "#070103";
set color_module_title = "#71161D";
set color_module_title_background = "#C8444D";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
function Page::print_theme_stylesheet() {
"""
/* Adored
/* by Nornoriel
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/aliceblueblossoms
layerinfo type = "theme";
layerinfo name = "Alice Blue Blossoms";
layerinfo redist_uniq = "crisped/aliceblueblossoms";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly and thirdbreakfast", "url" => "http://www.colourlovers.com/pattern/3872852/Alice_Blue_Blossoms" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#f0f8ff";
set color_page_border = "#b0c4de";
set color_page_link = "#7da4a6";
set color_page_link_visited = "#87cefa";
set color_page_subtitle = "#b2c7e1";
set color_page_text = "#5f6a78";
set color_page_title = "#5f6a78";
set color_header_background = "#f0f8ff";
set color_footer_background = "#f0f8ff";
set color_footer_link = "#7da4a6";
set color_footer_link_visited = "#87cefa";
set color_calendar_background = "#dafbf8";
set color_calendar_link = "#7da4a6";
set color_calendar_link_visited = "#87cefa";
set color_calendar_text = "#5f6a78";
set control_strip_bgcolor = "#f0f8ff";
set control_strip_bordercolor = "#b0c4de";
set control_strip_fgcolor = "#5f6a78";
set control_strip_linkcolor = "#7da4a6";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f0f8ff";
set color_entry_border = "#b0cfee";
set color_entry_interaction_links = "#7da4a6";
set color_entry_interaction_links_visited = "#87cefa";
set color_entry_link = "#7da4a6";
set color_entry_link_visited = "#87cefa";
set color_entry_text = "#5f6a78";
set color_entry_title = "#5f6a78";
set color_entry_title_background = "#C6DCF9";
set color_entry_title_background = "#C6DCF9";
set color_comment_title = "#f0f8ff";
set color_comment_title_background = "#C6DCF9";
##===============================
## Module Colors
##===============================
set color_module_background = "#f0f8ff";
set color_module_border = "#b0c4de";
set color_module_link = "#7da4a6";
set color_module_link_visited = "#87cefa";
set color_module_text = "#5f6a78";
set color_module_title = "#5f6a78";
set color_module_title_background = "#C6DCF9";
set color_module_title_background = "#C6DCF9";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/aliceblueblossoms.png";
function Page::print_theme_stylesheet() { """
/* Alice Blue Blossoms
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/andune
layerinfo type = "theme";
layerinfo name = "Andúnë";
layerinfo redist_uniq = "crisped/andune";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#0a0c19";
set color_page_link = "#d5d2e3";
set color_page_link_hover = "#e5dcf4";
set color_page_link_visited = "#d5caf7";
set color_page_text = "#f9f7fc";
set color_header_background = "#7e718f";
set color_footer_background = "#7e718f";
set color_footer_link = "#d5d2e3";
set color_footer_link_hover = "#e5dcf4";
set color_footer_link_visited = "#d5caf7";
set control_strip_bgcolor = "#565e71";
set control_strip_bordercolor = "#7e718f";
set control_strip_linkcolor = "#d5d2e3";
set control_strip_fgcolor = "#f9f7fc";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#565e71";
set color_entry_border = "#7e718f";
set color_entry_link = "#d5d2e3";
set color_entry_link_hover = "#e5dcf4";
set color_entry_link_visited = "#d5caf7";
set color_entry_text = "#f9f7fc";
set color_entry_title = "#e1def9";
##===============================
## Module Colors
##===============================
set color_module_background = "#565e71";
set color_module_border = "#7e718f";
set color_module_link = "#d5d2e3";
set color_module_link_hover = "#e5dcf4";
set color_module_link_visited = "#d5caf7";
set color_module_text = "#f9f7fc";
set color_module_title = "#e1def9";
#NEWLAYER: crisped/argyle
layerinfo type = "theme";
layerinfo name = "Argyle";
layerinfo redist_uniq = "crisped/argyle";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#cbdbe0";
set color_page_link = "#5b7882";
set color_page_link_active = "#5b7882";
set color_page_link_hover = "#4a99b4";
set color_page_link_visited = "#2D3C41";
set color_page_subtitle = "#0f0f0f";
set color_page_text = "#0f0f0f";
set color_page_title = "#0f0f0f";
set color_header_background = "#d4e1e5";
set color_footer_background = "#f7f9fe";
set color_footer_link = "#5b7882";
set color_footer_link_active = "#5b7882";
set color_footer_link_hover = "#4a99b4";
set color_footer_link_visited = "#2D3C41";
set control_strip_bgcolor = "#f7f9fe";
set control_strip_bordercolor = "#d4e1e5";
set control_strip_linkcolor = "#5b7882";
set control_strip_fgcolor = "#0f0f0f";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f7f9fe";
set color_entry_border = "#d4e1e5";
set color_entry_interaction_links = "#4a99b4";
set color_entry_link = "#5b7882";
set color_entry_link_active = "#5b7882";
set color_entry_link_hover = "#4a99b4";
set color_entry_link_visited = "#2D3C41";
set color_entry_text = "#0f0f0f";
set color_entry_title = "#0f0f0f";
set color_entry_title_background = "#d4e1e5";
set color_comment_title = "#0f0f0f";
set color_comment_title_background = "#d4e1e5";
##===============================
## Module Colors
##===============================
set color_module_background = "#f7f9fe";
set color_module_border = "#d4e1e5";
set color_module_link = "#5b7882";
set color_module_link_active = "#5b7882";
set color_module_link_hover = "#4a99b4";
set color_module_link_visited = "#2D3C41";
set color_module_text = "#0f0f0f";
set color_module_title = "#0f0f0f";
set color_module_title_background = "#d4e1e5";
set color_calendar_background = "#d4e1e5";
set color_calendar_link = "#5b7882";
set color_calendar_link_active = "#5b7882";
set color_calendar_link_hover = "#4a99b4";
set color_calendar_link_visited = "#2D3C41";
set color_calendar_text = "#0f0f0f";
##===============================
## Images
##===============================
set image_background_header_height = 0;
set image_background_header_position = "top left";
set image_background_header_repeat = "repeat";
set image_background_header_url = "commons/argyle.png";
#NEWLAYER: crisped/autumnflowers
layerinfo type = "theme";
layerinfo name = "Autumn Flowers";
layerinfo redist_uniq = "crisped/autumnflowers";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly and thirdbreakfast", "url" => "http://www.colourlovers.com/pattern/3748145/Autumn_Flowers" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#6e0000";
set color_page_border = "#af0000";
set color_page_link = "#feffa7";
set color_page_link_visited = "#ff8b24";
set color_page_subtitle = "#ffc28d";
set color_page_text = "#ffc28d";
set color_page_title = "#ffc28d";
set color_header_background = "#6e0000";
set color_footer_background = "#6e0000";
set color_footer_link = "#e10d0d";
set color_footer_link_visited = "#ff8b24";
set color_calendar_background = "#6e0000";
set color_calendar_link = "#e10d0d";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#6e0000";
set color_entry_border = "#af0000";
set color_entry_interaction_links = "#e10d0d";
set color_entry_link = "#e10d0d";
set color_entry_link_visited = "#ff8b24";
set color_entry_text = "#ffc28d";
set color_entry_title = "#feffa7";
set color_entry_title_background = "#6e0000";
set color_comment_title = "#ffc28d";
set color_comment_title_background = "#6e0000";
##===============================
## Module Colors
##===============================
set color_module_background = "#6e0000";
set color_module_border = "#af0000";
set color_module_link = "#e10d0d";
set color_module_link_visited = "#ff8b24";
set color_module_text = "#ffc28d";
set color_module_title = "#ffc28d";
set color_module_title_background = "#6e0000";
function Page::print_theme_stylesheet() { """
/* REMOVING ALL THE UPPERCASE */
h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/autumnflowers.png";
#NEWLAYER: crisped/barrenwintertrees
layerinfo type = "theme";
layerinfo name = "Barren Winter Trees";
layerinfo redist_uniq = "crisped/barrenwintertrees";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#30303b";
set color_page_link = "#9797b7";
set color_page_link_active = "#9797b7";
set color_page_link_hover = "#aaa";
set color_page_link_visited = "#9797b7";
set color_page_subtitle = "#aaa";
set color_page_text = "#aaa";
set color_page_title = "#9797b7";
set control_strip_bgcolor = "#212128";
set control_strip_bordercolor = "#10101b";
set control_strip_linkcolor = "#9797b7";
set control_strip_fgcolor = "#aaa";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#212128";
set color_entry_border = "#10101b";
set color_entry_interaction_links = "#aaa";
set color_entry_link = "#9797b7";
set color_entry_link_active = "#9797b7";
set color_entry_link_hover = "#aaa";
set color_entry_link_visited = "#9797b7";
set color_entry_text = "#aaa";
set color_entry_title = "#aaa";
set color_entry_title_background = "#525064";
set color_comment_title = "#aaa";
##===============================
## Module Colors
##===============================
set color_module_background = "#212128";
set color_module_border = "#525064";
set color_module_link = "#9797b7";
set color_module_link_active = "#9797b7";
set color_module_link_hover = "#aaa";
set color_module_link_visited = "#9797b7";
set color_module_title = "#aaa";
set color_module_title_background = "#525064";
set color_calendar_background = "#2b2b32";
set color_calendar_text = "#aaa";
##===============================
## Fonts
##===============================
set font_base = "Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial";
set font_fallback = "sans-serif";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
.ContextualPopup {
border: 1px solid $*color_entry_title_background !important;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/battleraven
layerinfo type = "theme";
layerinfo name = "Battle Raven";
layerinfo redist_uniq = "crisped/battleraven";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#000";
set color_page_link = "#357381";
set color_page_link_hover = "#1a3440";
set color_page_link_visited = "#488191";
set color_page_text = "#d3e3e2";
set color_page_title = "#488191";
set color_header_background = "#16161A";
set color_footer_background = "#16161A";
set color_footer_link = "#357381";
set color_footer_link_hover = "#1a3440";
set color_footer_link_visited = "#488191";
set control_strip_bgcolor = "#0d0c14";
set control_strip_bordercolor = "#07202b";
set control_strip_linkcolor = "#357381";
set control_strip_fgcolor = "#d3e3e2";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#488191";
set color_entry_background = "#0d0c14";
set color_entry_border = "#07202b";
set color_entry_interaction_links = "#488191";
set color_entry_link = "#357381";
set color_entry_link_hover = "#1a3440";
set color_entry_link_visited = "#488191";
set color_entry_text = "#d3e3e2";
set color_entry_title = "#488191";
##===============================
## Module Colors
##===============================
set color_module_background = "#0d0c14";
set color_module_border = "#07202b";
set color_module_link = "#357381";
set color_module_link_hover = "#1a3440";
set color_module_link_visited = "#488191";
set color_module_text = "#d3e3e2";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
#NEWLAYER: crisped/battleravenii
layerinfo type = "theme";
layerinfo name = "Battle Raven II";
layerinfo redist_uniq = "crisped/battleravenii";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#000";
set color_page_link = "#357381";
set color_page_link_hover = "#532d62";
set color_page_link_visited = "#488191";
set color_page_text = "#d3e3e2";
set color_page_title = "#488191";
set color_footer_background = "#16161A";
set color_footer_link = "#357381";
set color_footer_link_hover = "#532d62";
set color_footer_link_visited = "#488191";
set color_calendar_background = "#16161a";
set color_calendar_link = "#357381";
set color_calendar_link_hover = "#532d62";
set color_calendar_link_visited = "#488191";
set color_calendar_text = "#d3e3e2";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#0d0c14";
set color_entry_border = "#07202b";
set color_entry_interaction_links = "#488191";
set color_entry_link = "#357381";
set color_entry_link_hover = "#532d62";
set color_entry_link_visited = "#488191";
set color_entry_text = "#d3e3e2";
set color_entry_title = "#488191";
set color_entry_title_background = "#07202b";
set color_comment_title = "#488191";
set color_comment_title_background = "#07202b";
##===============================
## Module Colors
##===============================
set color_module_background = "#0d0c14";
set color_module_border = "#07202b";
set color_module_link = "#357381";
set color_module_link_hover = "#532d62";
set color_module_link_visited = "#488191";
set color_module_text = "#d3e3e2";
set color_module_title = "#488191";
set color_module_title_background = "#07202b";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "commons/battleraven.png";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/bluebird
layerinfo type = "theme";
layerinfo name = "Bluebird";
layerinfo redist_uniq = "crisped/bluebird";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#364461";
set color_page_link = "#8bee94";
set color_page_link_active = "#8bee94";
set color_page_link_hover = "#90d9f8";
set color_page_link_visited = "#fbcd55";
set color_page_subtitle = "#eed9bf";
set color_page_text = "#eed9bf";
set color_page_title = "#eed1a8";
set color_header_background = "#4c6089";
set color_footer_background = "#415275";
set color_footer_link = "#8bee94";
set color_footer_link_active = "#8bee94";
set color_footer_link_hover = "#90d9f8";
set color_footer_link_visited = "#fbcd55";
layerinfo name = "Bluebird";
set control_strip_bgcolor = "#415275";
set control_strip_bordercolor = "#4c6089";
set control_strip_linkcolor = "#8bee94";
set control_strip_fgcolor = "#eed9bf";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#415275";
set color_entry_border = "#4c6089";
set color_entry_interaction_links = "#90d9f8";
set color_entry_link = "#8bee94";
set color_entry_link_active = "#8bee94";
set color_entry_link_hover = "#90d9f8";
set color_entry_link_visited = "#fbcd55";
set color_entry_text = "#eed9bf";
set color_entry_title = "#eed1a8";
set color_entry_title_background = "#4c6089";
set color_comment_title = "#eed1a8";
set color_comment_title_background = "#4c6089";
##===============================
## Module Colors
##===============================
set color_module_background = "#415275";
set color_module_border = "#4c6089";
set color_module_link = "#8bee94";
set color_module_link_active = "#8bee94";
set color_module_link_hover = "#90d9f8";
set color_module_link_visited = "#fbcd55";
set color_module_text = "#eed9bf";
set color_module_title = "#eed1a8";
set color_module_title_background = "#4c6089";
set color_calendar_background = "#4c6089";
set color_calendar_link = "#8bee94";
set color_calendar_link_active = "#8bee94";
set color_calendar_link_hover = "#90d9f8";
set color_calendar_link_visited = "#fbcd55";
set color_calendar_text = "#eed9bf";
#NEWLAYER: crisped/bluelights
layerinfo type = "theme";
layerinfo name = "Blue Lights";
layerinfo redist_uniq = "crisped/bluelights";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#1a1a1a";
set color_page_border = "#242424";
set color_page_link = "#4dbce9";
set color_page_link_active = "#4dbce9";
set color_page_link_hover = "#54cffd";
set color_page_link_visited = "#3f9bbe";
set color_page_subtitle = "#fdfdfd";
set color_page_text = "#fdfdfd";
set color_page_title = "#fdfdfd";
set color_header_background = "#292929";
set color_footer_background = "#242424";
set color_footer_link = "#4dbce9";
set color_footer_link_active = "#4dbce9";
set color_footer_link_hover = "#54cffd";
set color_footer_link_visited = "#3f9bbe";
set control_strip_bgcolor = "#242424";
set control_strip_bordercolor = "#292929";
set control_strip_linkcolor = "#4dbce9";
set control_strip_fgcolor = "#fdfdfd";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#242424";
set color_entry_border = "#292929";
set color_entry_interaction_links = "#54cffd";
set color_entry_link = "#4dbce9";
set color_entry_link_active = "#4dbce9";
set color_entry_link_hover = "#54cffd";
set color_entry_link_visited = "#3f9bbe";
set color_entry_text = "#fdfdfd";
set color_entry_title = "#fdfdfd";
set color_entry_title_background = "#292929";
set color_comment_title = "#fdfdfd";
set color_comment_title_background = "#292929";
##===============================
## Module Colors
##===============================
set color_module_background = "#242424";
set color_module_border = "#292929";
set color_module_link = "#4dbce9";
set color_module_link_active = "#4dbce9";
set color_module_link_hover = "#54cffd";
set color_module_link_visited = "#3f9bbe";
set color_module_text = "#fdfdfd";
set color_module_title = "#fdfdfd";
set color_module_title_background = "#292929";
set color_calendar_background = "#292929";
set color_calendar_link = "#4dbce9";
set color_calendar_link_active = "#4dbce9";
set color_calendar_link_hover = "#54cffd";
set color_calendar_link_visited = "#3f9bbe";
set color_calendar_text = "#fdfdfd";
#NEWLAYER: crisped/cloudsounds
layerinfo type = "theme";
layerinfo name = "Cloud Sounds";
layerinfo redist_uniq = "crisped/cloudsounds";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#7c9a87";
set color_page_border = "#7c9a87";
set color_page_link = "#0b9e79";
set color_page_link_active = "#0b9e79";
set color_page_link_hover = "#0b539e";
set color_page_link_visited = "#0e6ed0";
set color_page_subtitle = "#303129";
set color_page_text = "#060606";
set color_page_title = "#303129";
set color_header_background = "#b4c5a1";
set color_footer_background = "#a9cfb7";
set color_footer_link = "#0b9e79";
set color_footer_link_active = "#0b9e79";
set color_footer_link_hover = "#0b539e";
set color_footer_link_visited = "#0e6ed0";
set control_strip_bgcolor = "#a9cfb7";
set control_strip_bordercolor = "#bdcfa9";
set control_strip_linkcolor = "#0b9e79";
set control_strip_fgcolor = "#060606";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#a9cfb7";
set color_entry_border = "#bdcfa9";
set color_entry_interaction_links = "#0e6ed0";
set color_entry_link = "#0b9e79";
set color_entry_link_active = "#0b9e79";
set color_entry_link_hover = "#0b539e";
set color_entry_link_visited = "#0e6ed0";
set color_entry_text = "#060606";
set color_entry_title = "#303129";
set color_entry_title_background = "#bdcfa9";
set color_comment_title = "#303129";
set color_comment_title_background = "#bdcfa9";
##===============================
## Module Colors
##===============================
set color_module_background = "#a9cfb7";
set color_module_border = "#bdcfa9";
set color_module_link = "#0b9e79";
set color_module_link_active = "#0b9e79";
set color_module_link_hover = "#0b539e";
set color_module_link_visited = "#0e6ed0";
set color_module_text = "#060606";
set color_module_title = "#303129";
set color_module_title_background = "#bdcfa9";
set color_calendar_background = "#bdcfa9";
set color_calendar_link = "#0b9e79";
set color_calendar_link_active = "#0b9e79";
set color_calendar_link_hover = "#0b539e";
set color_calendar_link_visited = "#0e6ed0";
set color_calendar_text = "#060606";
#NEWLAYER: crisped/coastal
layerinfo type = "theme";
layerinfo name = "Coastal";
layerinfo redist_uniq = "crisped/coastal";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#a0b072";
set color_page_border = "#b6c48e";
set color_page_link = "#236853";
set color_page_link_active = "#236853";
set color_page_link_hover = "#800f2b";
set color_page_link_visited = "#183351";
set color_page_subtitle = "#1c1c1c";
set color_page_text = "#080808";
set color_page_title = "#1c1c1c";
set color_header_background = "#abba80";
set color_footer_background = "#abba80";
set color_footer_link = "#236853";
set color_footer_link_active = "#236853";
set color_footer_link_hover = "#800f2b";
set color_footer_link_visited = "#183351";
set control_strip_bgcolor = "#abba80";
set control_strip_bordercolor = "#b6c48e";
set control_strip_linkcolor = "#236853";
set control_strip_fgcolor = "#080808";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#abba80";
set color_entry_border = "#b6c48e";
set color_entry_interaction_links = "#800f2b";
set color_entry_link = "#236853";
set color_entry_link_active = "#236853";
set color_entry_link_hover = "#800f2b";
set color_entry_link_visited = "#183351";
set color_entry_text = "#080808";
set color_entry_title = "#1c1c1c";
set color_entry_title_background = "#b6c48e";
set color_comment_title = "#1c1c1c";
set color_comment_title_background = "#b6c48e";
##===============================
## Module Colors
##===============================
set color_module_background = "#abba80";
set color_module_border = "#b6c48e";
set color_module_link = "#236853";
set color_module_link_active = "#236853";
set color_module_link_hover = "#800f2b";
set color_module_link_visited = "#183351";
set color_module_text = "#080808";
set color_module_title = "#1c1c1c";
set color_module_title_background = "#b6c48e";
set color_calendar_background = "#b6c48e";
set color_calendar_link = "#236853";
set color_calendar_link_active = "#236853";
set color_calendar_link_hover = "#800f2b";
set color_calendar_link_visited = "#183351";
set color_calendar_text = "#1c1c1c";
#NEWLAYER: crisped/colouredglass
layerinfo type = "theme";
layerinfo name = "Coloured Glass";
layerinfo redist_uniq = "crisped/colouredglass";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#1f0e27";
set color_page_border = "#1f0e27";
set color_page_link = "#d9712d";
set color_page_link_active = "#d9712d";
set color_page_link_hover = "#f5b232";
set color_page_link_visited = "#c2441e";
set color_page_subtitle = "#98d2ce";
set color_page_text = "#d1c8b0";
set color_page_title = "#66d2c9";
set color_header_background = "#281231";
set color_footer_background = "#281231";
set color_footer_link = "#d9712d";
set color_footer_link_active = "#d9712d";
set color_footer_link_hover = "#f5b232";
set color_footer_link_visited = "#c2441e";
set control_strip_bgcolor = "#281231";
set control_strip_bordercolor = "#331640";
set control_strip_linkcolor = "#d9712d";
set control_strip_fgcolor = "#d1c8b0";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#281231";
set color_entry_border = "#331640";
set color_entry_interaction_links = "#f5b232";
set color_entry_link = "#d9712d";
set color_entry_link_active = "#d9712d";
set color_entry_link_hover = "#f5b232";
set color_entry_link_visited = "#c2441e";
set color_entry_text = "#d1c8b0";
set color_entry_title = "#98d2ce";
set color_entry_title_background = "#331640";
set color_comment_title = "#98d2ce";
set color_comment_title_background = "#331640";
##===============================
## Module Colors
##===============================
set color_module_background = "#281231";
set color_module_border = "#331640";
set color_module_link = "#d9712d";
set color_module_link_active = "#d9712d";
set color_module_link_hover = "#f5b232";
set color_module_link_visited = "#c2441e";
set color_module_text = "#d1c8b0";
set color_module_title = "#98d2ce";
set color_module_title_background = "#331640";
set color_calendar_background = "#331640";
set color_calendar_link = "#d9712d";
set color_calendar_link_active = "#d9712d";
set color_calendar_link_hover = "#f5b232";
set color_calendar_link_visited = "#c2441e";
set color_calendar_text = "#98d2ce";
#NEWLAYER: crisped/coolgradients
layerinfo type = "theme";
layerinfo name = "Cool Gradients";
layerinfo redist_uniq = "crisped/coolgradients";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#d0d4d6";
set color_page_link = "#6170aa";
set color_page_link_active = "#6170aa";
set color_page_link_hover = "#727475";
set color_page_link_visited = "#6170aa";
set color_page_text = "#5f6161";
set color_page_title = "#6170aa";
set color_page_subtitle = "#727475";
set control_strip_bgcolor = "#dee3e4";
set control_strip_bordercolor = "#727475";
set control_strip_linkcolor = "#6170aa";
set control_strip_fgcolor = "#5f6161";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#dee3e4";
set color_entry_border = "#727475";
set color_entry_link = "#6170aa";
set color_entry_link_active = "#6170aa";
set color_entry_link_hover = "#727475";
set color_entry_link_visited = "#6170aa";
set color_entry_text = "#5f6161";
set color_entry_title = "#727475";
set color_entry_title_background = "#c1c6c7";
set color_entry_interaction_links = "#6170aa";
set color_comment_title = "#727475";
##===============================
## Module Colors
##===============================
set color_module_background = "#dee3e4";
set color_module_border = "#c1c6c7";
set color_module_link = "#6170aa";
set color_module_link_active = "#6170aa";
set color_module_link_hover = "#727475";
set color_module_link_visited = "#6170aa";
set color_module_title = "#727475";
set color_module_title_background = "#c1c6c7";
set color_calendar_background = "#d0d4d6";
set color_calendar_text = "#727475";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_module_title;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
.ContextualPopup {
border: 1px solid $*color_entry_title_background !important;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/coraled
layerinfo type = "theme";
layerinfo name = "Coraled";
layerinfo redist_uniq = "crisped/coraled";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#ffedb8";
set color_page_link = "#c90227";
set color_page_link_hover = "#ff5c5c";
set color_page_subtitle = "#1a2708";
set color_page_text = "#1a2708";
set color_page_title = "#c90227";
set control_strip_bgcolor = "#fff";
set control_strip_bordercolor = "#ffab87";
set control_strip_linkcolor = "#c90227";
set control_strip_fgcolor = "#1a2708";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fff";
set color_entry_border = "#ffab87";
set color_entry_interaction_links = "#1a2708";
set color_entry_link = "#c90227";
set color_entry_link_hover = "#ff5c5c";
set color_entry_text = "#1a2708";
set color_entry_title = "#1a2708";
set color_entry_title_background = "#ffab87";
set color_comment_title = "#1a2708";
set color_comment_title_background = "#ffab87";
##===============================
## Module Colors
##===============================
set color_module_background = "#fff";
set color_module_border = "#ffab87";
set color_module_link = "#c90227";
set color_module_link_hover = "#ff5c5c";
set color_module_text = "#1a2708";
set color_module_title = "#1a2708";
set color_module_title_background = "#ffab87";
set color_calendar_background = "#ffedb8";
set color_calendar_link = "#c90227";
set color_calendar_link_hover = "#ff5c5c";
set color_calendar_text = "#1a2708";
#NEWLAYER: crisped/cosmos
layerinfo type = "theme";
layerinfo name = "Cosmos";
layerinfo redist_uniq = "crisped/cosmos";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#17013f";
set color_page_link = "#ffcaae";
set color_page_link_visited = "#b2889c";
set color_page_text = "#deccd5";
set color_page_title = "#b2889c";
set color_header_background = "#12041f";
set color_footer_background = "#400f68";
set color_footer_link = "#ffcaae";
set color_footer_link_visited = "#b2889c";
set control_strip_bgcolor = "#400f68";
set control_strip_bordercolor = "#400f68";
set control_strip_linkcolor = "#ffcaae";
set control_strip_fgcolor = "#deccd5";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#400f68";
set color_entry_border = "#400f68";
set color_entry_link = "#ffcaae";
set color_entry_link_visited = "#b2889c";
set color_entry_text = "#deccd5";
set color_entry_title = "#ffcaae";
##===============================
## Module Colors
##===============================
set color_module_background = "#663974";
set color_module_border = "#400f68";
set color_module_link = "#ffcaae";
set color_module_link_visited = "#b2889c";
set color_module_text = "#deccd5";
set color_module_title = "#ffcaae";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
#NEWLAYER: crisped/cremeviolette
layerinfo type = "theme";
layerinfo name = "Creme Violette";
layerinfo redist_uniq = "crisped/cremeviolette";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#f3def0";
set color_page_border= "#f3def0";
set color_page_link = "#cd4c44";
set color_page_link_hover = "#a397d5";
set color_page_subtitle = "#352123";
set color_page_text = "#352123";
set color_page_title = "#cd4c44";
set color_footer_background = "#f9f2f7";
set control_strip_bgcolor = "#f9f2f7";
set control_strip_bordercolor = "#ddc3d2";
set control_strip_linkcolor = "#cd4c44";
set control_strip_fgcolor = "#352123";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f9f2f7";
set color_entry_border = "#ddc3d2";
set color_entry_interaction_links = "#352123";
set color_entry_link = "#cd4c44";
set color_entry_link_hover = "#a397d5";
set color_entry_text = "#352123";
set color_entry_title = "#352123";
set color_entry_title_background = "#ddc3d2";
set color_comment_title = "#352123";
set color_comment_title_background = "#ddc3d2";
##===============================
## Module Colors
##===============================
set color_module_background = "#f9f2f7";
set color_module_border = "#ddc3d2";
set color_module_title = "#352123";
set color_module_title_background = "#ddc3d2";
set color_calendar_background = "#ddc3d2";
#NEWLAYER: crisped/crispcircus
layerinfo type = "theme";
layerinfo name = "Crisp Circus";
layerinfo redist_uniq = "crisped/crispcircus";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#a14016";
set color_page_border = "#ab4a24";
set color_page_link = "#322938";
set color_page_link_active = "#322938";
set color_page_link_hover = "#2e3829";
set color_page_link_visited = "#243835";
set color_page_subtitle = "#240c03";
set color_page_text = "#240c03";
set color_page_title = "#240c03";
set color_header_background = "#b55635";
set color_footer_background = "#b55635";
set color_footer_link = "#382a42";
set color_footer_link_active = "#382a42";
set color_footer_link_hover = "#314228";
set color_footer_link_visited = "#243835";
set control_strip_bgcolor = "#b55635";
set control_strip_bordercolor = "#ab4a24";
set control_strip_linkcolor = "#382a42";
set control_strip_fgcolor = "#240c03";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#b55635";
set color_entry_border = "#ab4a24";
set color_entry_interaction_links = "#314228";
set color_entry_link = "#382a42";
set color_entry_link_active = "#382a42";
set color_entry_link_hover = "#314228";
set color_entry_link_visited = "#243835";
set color_entry_text = "#240c03";
set color_entry_title = "#240c03";
set color_entry_title_background = "#ab4a24";
set color_comment_title = "#240c03";
set color_comment_title_background = "#ab4a24";
##===============================
## Module Colors
##===============================
set color_module_background = "#b55635";
set color_module_border = "#ab4a24";
set color_module_link = "#382a42";
set color_module_link_active = "#382a42";
set color_module_link_hover = "#314228";
set color_module_link_visited = "#243835";
set color_module_text = "#240c03";
set color_module_title = "#240c03";
set color_module_title_background = "#ab4a24";
set color_calendar_background = "#ab4a24";
set color_calendar_link = "#382a42";
set color_calendar_link_active = "#382a42";
set color_calendar_link_hover = "#314228";
set color_calendar_link_visited = "#243835";
set color_calendar_text = "#240c03";
#NEWLAYER: crisped/darkcyaniad
layerinfo type = "theme";
layerinfo name = "Dark Cyaniad";
layerinfo redist_uniq = "crisped/darkcyaniad";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#0c3437";
set color_page_link = "#c58d89";
set color_page_link_active = "#c57973";
set color_page_link_hover = "#64a4aa";
set color_page_link_visited = "#8c723e";
set color_page_subtitle = "#d6c6a6";
set color_page_text = "#d6c6a6";
set color_page_title = "#c5aa73";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#265155";
set color_entry_border = "#695a3d";
set color_entry_interaction_links = "#64a4aa";
set color_entry_link = "#64a4aa";
set color_entry_link_active = "#c57973";
set color_entry_link_hover = "#c5aa73";
set color_entry_link_visited = "#c57973";
set color_entry_text = "#d6c6a6";
set color_entry_title = "#64a4aa";
set color_entry_title_background = "#8c723e";
set color_comment_title = "#64a4aa";
##===============================
## Module Colors
##===============================
set color_module_background = "#265155";
set color_module_border = "#8c723e";
set color_module_link = "#64a4aa";
set color_module_link_active = "#c57973";
set color_module_link_hover = "#c5aa73";
set color_module_link_visited = "#c57973";
set color_module_title = "#c5aa73";
set color_module_title_background = "#8c723e";
set color_calendar_background = "#0c3437";
set color_calendar_text = "#d6c6a6";
##===============================
## Fonts
##===============================
set font_base = "Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial";
set font_fallback = "sans-serif";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/decadence
layerinfo type = "theme";
layerinfo name = "Decadence";
layerinfo redist_uniq = "crisped/decadence";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#291418";
set color_page_link = "#b35f77";
set color_page_link_hover = "#cf0030";
set color_page_link_visited = "#ee7298";
set color_page_text = "#fff";
set color_page_title = "#ee7298";
set color_header_background = "#6b0d2b";
set color_footer_background = "#6b0d2b";
set color_footer_link = "#b35f77";
set color_footer_link_hover = "#cf0030";
set color_footer_link_visited = "#ee7298";
set control_strip_bgcolor = "#401e26";
set control_strip_bordercolor = "#801835";
set control_strip_linkcolor = "#b35f77";
set control_strip_fgcolor = "#fff";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#401e26";
set color_entry_border = "#801835";
set color_entry_link = "#b35f77";
set color_entry_link_hover = "#cf0030";
set color_entry_link_visited = "#ee7298";
set color_entry_text = "#fff";
set color_entry_title = "#ee7298";
##===============================
## Module Colors
##===============================
set color_module_background = "#401e26";
set color_module_border = "#801835";
set color_module_link = "#b35f77";
set color_module_link_hover = "#cf0030";
set color_module_link_visited = "#ee7298";
set color_module_text = "#fff";
#NEWLAYER: crisped/desertion
layerinfo type = "theme";
layerinfo name = "Desertion";
layerinfo redist_uniq = "crisped/desertion";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#ffedb8";
set color_page_border = "#ffedb8";
set color_page_link = "#07807b";
set color_page_link_active = "#07807b";
set color_page_link_hover = "#9f7f57";
set color_page_link_visited = "#07807b";
set color_page_subtitle = "#7e6345";
set color_page_text = "#7e6345";
set color_page_title = "#07807b";
set color_header_background = "#ffedb8";
set color_footer_background = "#ffedb8";
set color_footer_link = "#07807b";
set color_footer_link_hover = "9f7f57";
set control_strip_bgcolor = "#f2dc99";
set control_strip_bordercolor = "#d3c189";
set control_strip_linkcolor = "#07807b";
set control_strip_fgcolor = "#7e6345";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f2dc99";
set color_entry_border = "#d3c189";
set color_entry_interaction_links = "#613511";
set color_entry_link = "#07807b";
set color_entry_link_hover = "9f7f57";
set color_entry_text = "#7e6345";
set color_entry_title = "#613511";
set color_entry_title_background = "#d3c189";
set color_comment_title = "#613511";
set color_comment_title_background = "#d3c189";
##===============================
## Module Colors
##===============================
set color_module_background = "#f2dc99";
set color_module_border = "#d3c189";
set color_module_link = "#07807b";
set color_module_link_hover = "9f7f57";
set color_module_text = "#7e6345";
set color_module_title = "#613511";
set color_module_title_background = "#d3c189";
set color_calendar_background = "#ffedb8";
set color_calendar_text = "#7e6345";
#NEWLAYER: crisped/deepforest
layerinfo type = "theme";
layerinfo name = "Deep Forest";
layerinfo redist_uniq = "crisped/deepforest";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#000";
set color_page_link = "#3d8944";
set color_page_text = "#a0a0a0";
set color_page_title = "#388943";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#021406";
set color_entry_border = "#021C08";
set color_entry_interaction_links = "#3d8944";
set color_entry_link = "#3d8944";
set color_entry_link_hover = "#54be5c";
set color_entry_link_visited = "#3d8944";
set color_entry_text = "#a0a0a0";
set color_entry_title = "#3d8944";
set color_entry_title_background = "#022409";
set color_comment_title = "#3d8944";
set color_comment_title_background = "#093514";
##===============================
## Module Colors
##===============================
set color_module_background = "#021406";
set color_module_border = "#021C08";
set color_module_link = "#3d8944";
set color_module_link_hover = "#54be5c";
set color_module_link_visited = "#3d8944";
set color_module_title = "#3d8944";
set color_module_title_background = "#022409";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/dusk
layerinfo type = "theme";
layerinfo name = "Dusk";
layerinfo redist_uniq = "crisped/dusk";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#28286b";
set color_page_link = "#76a4bf";
set color_page_link_hover = "#afc1d8";
set color_page_link_visited = "#6378a9";
set color_page_text = "#d2e2ef";
set color_page_title = "#afc1d8";
set color_header_background = "#202163";
set color_footer_background = "#202163";
set color_footer_link = "#76a4bf";
set color_footer_link_hover = "#afc1d8";
set color_footer_link_visited = "#6378a9";
set control_strip_bgcolor = "#394174";
set control_strip_bordercolor = "#485487";
set control_strip_linkcolor = "#76a4bf";
set control_strip_fgcolor = "#d2e2ef";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#394174";
set color_entry_border = "#485487";
set color_entry_link = "#76a4bf";
set color_entry_link_hover = "#afc1d8";
set color_entry_link_visited = "#6378a9";
set color_entry_text = "#d2e2ef";
set color_entry_title = "#6378a9";
##===============================
## Module Colors
##===============================
set color_module_background = "#394174";
set color_module_border = "#485487";
set color_module_link = "#76a4bf";
set color_module_link_hover = "#afc1d8";
set color_module_link_visited = "#6378a9";
set color_module_text = "#d2e2ef";
set color_module_title = "#6378a9";
#NEWLAYER: crisped/elegantbrown
layerinfo type = "theme";
layerinfo name = "Elegant Brown";
layerinfo redist_uniq = "crisped/elegantbrown";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#5b4d3c";
set color_page_border = "#655643";
set color_page_link = "#e6ac27";
set color_page_link_active = "#e6ac27";
set color_page_link_hover = "#96dcbd";
set color_page_link_visited = "#80bca3";
set color_page_subtitle = "#faca6f";
set color_page_text = "#f6f7e8";
set color_page_title = "#fac452";
set color_header_background = "#655643";
set color_footer_background = "#655643";
set color_footer_link = "#e6ac27";
set color_footer_link_active = "#e6ac27";
set color_footer_link_hover = "#96dcbd";
set color_footer_link_visited = "#80bca3";
set control_strip_bgcolor = "#655643";
set control_strip_bordercolor = "#6f5c49";
set control_strip_linkcolor = "#e6ac27";
set control_strip_fgcolor = "#f6f7e8";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#655643";
set color_entry_border = "#6f5c49";
set color_entry_interaction_links = "#96dcbd";
set color_entry_link = "#e6ac27";
set color_entry_link_active = "#e6ac27";
set color_entry_link_hover = "#96dcbd";
set color_entry_link_visited = "#80bca3";
set color_entry_text = "#f6f7e8";
set color_entry_title = "#fac452";
set color_entry_title_background = "#6f5c49";
set color_comment_title = "#fac452";
set color_comment_title_background = "#796650";
##===============================
## Modules Colors
##===============================
set color_module_background = "#655643";
set color_module_border = "#6f5c49";
set color_module_link = "#e6ac27";
set color_module_link_active = "#e6ac27";
set color_module_link_hover = "#96dcbd";
set color_module_link_visited = "#80bca3";
set color_module_text = "#f6f7e8";
set color_module_title = "#fac452";
set color_module_title_background = "#6f5c49";
set color_calendar_background = "#796650";
set color_calendar_link = "#e6ac27";
set color_calendar_link_active = "#e6ac27";
set color_calendar_link_hover = "#96dcbd";
set color_calendar_link_visited = "#80bca3";
set color_calendar_text = "#f6f7e8";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "commons/elegantbrown.png";
#NEWLAYER: crisped/eggplanted
layerinfo type = "theme";
layerinfo name = "Eggplanted";
layerinfo redist_uniq = "crisped/eggplanted";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#d1b879";
set color_page_link = "#612040";
set color_page_link_hover = "#917742";
set color_page_subtitle = "#6d5832";
set color_page_text = "#3b2f1a";
set color_page_title = "#612040";
set color_footer_background = "#e5d59c";
set color_footer_link = "#612040";
set color_footer_link_hover = "#917742";
set control_strip_bgcolor = "#e5d59c";
set control_strip_bordercolor = "#a8894c";
set control_strip_linkcolor = "#612040";
set control_strip_fgcolor = "#3b2f1a";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#e5d59c";
set color_entry_border = "#a8894c";
set color_entry_interaction_links = "#6d5832";
set color_entry_link = "#612040";
set color_entry_link_hover = "#917742";
set color_entry_text = "#3b2f1a";
set color_entry_title = "#d1b879";
set color_entry_title_background = "#63324b";
set color_comment_title = "#d1b879";
set color_comment_title_background = "#63324b";
##===============================
## Module Colors
##===============================
set color_module_background = "#e5d59c";
set color_module_border = "#a8894c";
set color_module_link = "#612040";
set color_module_link_hover = "#917742";
set color_module_text = "#3b2f1a";
set color_module_title = "#d1b879";
set color_module_title_background = "#63324b";
function Page::print_theme_stylesheet () {
"""
.entry .datetime,
.entry .datetime a {
color: $*color_entry_title;
}
.comment .header .datetime,
.comment .header .datetime a {
color: $*color_comment_title;
}
""";
}
#NEWLAYER: crisped/enchantedforest
layerinfo type = "theme";
layerinfo name = "Enchanted Forest";
layerinfo redist_uniq = "crisped/enchantedforest";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#033f3f";
set color_page_link = "#469e2c";
set color_page_link_hover = "#58aa19";
set color_page_link_visited = "#62902d";
set color_page_text = "#b7d698";
set color_page_title = "#62902d";
set color_header_link_visited = "#62902d";
set color_footer_background = "#063435";
set color_footer_link = "#469e2c";
set color_footer_link_hover = "#58aa19";
set color_footer_link_visited = "#62902d";
set color_header_background = "#063435";
set color_header_link = "#469e2c";
set color_header_link_hover = "#58aa19";
set control_strip_bgcolor = "#005049";
set control_strip_bordercolor = "#007250";
set control_strip_linkcolor = "#469e2c";
set control_strip_fgcolor = "#b7d698";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#005049";
set color_entry_border = "#007250";
set color_entry_link = "#469e2c";
set color_entry_link_hover = "#58aa19";
set color_entry_link_visited = "#62902d";
set color_entry_text = "#b7d698";
set color_entry_title = "#62902d";
##===============================
## Module Colors
##===============================
set color_module_background = "#005049";
set color_module_border = "#007250";
set color_module_link = "#469e2c";
set color_module_link_hover = "#58aa19";
set color_module_link_visited = "#62902d";
set color_module_text = "#b7d698";
set color_module_title = "#62902d";
#NEWLAYER: crisped/enjoythelove
layerinfo type = "theme";
layerinfo name = "Enjoy the Love";
layerinfo redist_uniq = "crisped/enjoythelove";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by *Darinka and OldeAuntieRae", "url" => "http://www.colourlovers.com/pattern/2453398/Enjoy_the_love*" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#fad6c1";
set color_page_link = "#7a5046";
set color_page_link_visited = "#cc7677";
set color_page_subtitle = "#000";
set color_page_text = "#000";
set color_page_title = "#000";
set color_header_background = "#f4bfae";
set color_footer_background = "#f4bfae";
set color_footer_link = "#7a5046";
set color_footer_link_visited = "#cc7677";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fff";
set color_entry_interaction_links = "#7a5046";
set color_entry_link = "#7a5046";
set color_entry_link_visited = "#cc7677";
set color_entry_text = "#000";
set color_entry_title = "#fff";
set color_entry_title_background = "#f4bfae";
##===============================
## Module Colors
##===============================
set color_module_background = "#f4bfae";
set color_module_link = "#7a5046";
set color_module_link_visited = "#cc7677";
set color_module_text = "#000";
set color_module_title = "#000";
set color_module_title_background = "#f4bfae";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/enjoythelove.png";
#NEWLAYER: crisped/fadingmesa
layerinfo type = "theme";
layerinfo name = "Fading Mesa";
layerinfo redist_uniq = "crisped/fadingmesa";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#2e2423";
set color_page_link = "#90997f";
set color_page_link_active = "#9b7c7b";
set color_page_link_hover = "#9b7c7b";
set color_page_link_visited = "#494e3f";
set color_page_subtitle = "#999";
set color_page_text = "#999";
set color_page_title = "#5f7676";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#312020";
set color_entry_border = "#171d1d";
set color_entry_interaction_links = "#90997f";
set color_entry_link = "#90997f";
set color_entry_link_active = "#9b7c7b";
set color_entry_link_hover = "#9b7c7b";
set color_entry_link_visited = "#494e3f";
set color_entry_text = "#999";
set color_entry_title = "#5f7676";
set color_entry_title_background = "#2e2423";
set color_comment_title = "#5f7676";
##===============================
## Module Colors
##===============================
set color_module_background = "#312020";
set color_module_border = "#2e2423";
set color_module_link = "#90997f";
set color_module_link_active = "#9b7c7b";
set color_module_link_hover = "#9b7c7b";
set color_module_link_visited = "#494e3f";
set color_module_title = "#5f7676";
set color_module_title_background = "#2e2423";
set color_calendar_background = "#2e2423";
set color_calendar_text = "#999";
##===============================
## Fonts
##===============================
set font_base = "Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial";
set font_fallback = "sans-serif";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/fallingflames
layerinfo type = "theme";
layerinfo name = "Falling Flames";
layerinfo redist_uniq = "crisped/fallingflames";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly and thirdbreakfast", "url" => "http://www.colourlovers.com/pattern/3712583/Falling_Flames" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#520202";
set color_page_border = "#a30404";
set color_page_link = "#c70000";
set color_page_link_visited = "#f4f106";
set color_page_subtitle = "#c70000";
set color_page_text = "#f29613";
set color_page_title = "#ec8958";
set color_header_background = "#520202";
set color_footer_background = "#520202";
set color_footer_link = "#c70000";
set color_footer_link_visited = "#f4f106";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#520202";
set color_entry_border = "#a30404";
set color_entry_interaction_links = "#c70000";
set color_entry_link = "#c70000";
set color_entry_link_visited = "#f4f106";
set color_entry_text = "#ec8958";
set color_entry_title = "#ec5825";
set color_entry_title = "#ec8958";
set color_entry_title_background = "#520202";
set color_entry_title_background = "#520202";
set color_comment_title = "#ec8958";
set color_comment_title_background = "#af0404";
##===============================
## Module Colors
##===============================
set color_module_background = "#520202";
set color_module_border = "#a30404";
set color_module_link = "#c70000";
set color_module_link_visited = "#f4f106";
set color_module_text = "#ec8958";
set color_module_title = "#ec8958";
set color_module_title_background = "#520202";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/fallingflames.png";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet() { """
/* REMOVING ALL THE UPPERCASE */
h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/fallingleaves
layerinfo type = "theme";
layerinfo name = "Falling Leaves";
layerinfo redist_uniq = "crisped/fallingleaves";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly and thirdbreakfast", "url" => "http://www.colourlovers.com/pattern/3729978/Falling_Leaves" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#001c0a";
set color_page_border = "#001c0a";
set color_page_link = "#85a286";
set color_page_link_visited = "#85a286";
set color_page_subtitle = "#d3ebcf";
set color_page_text = "#d3ebcf";
set color_page_title = "#d3ebcf";
set color_header_background = "#001c0a";
set color_footer_background = "#001c0a";
set color_footer_link = "#85a286";
set color_footer_link_visited = "#85a286";
set color_calendar_background = "#001c0a";
set color_calendar_link = "#85a286";
set color_calendar_link_visited = "#85a286";
set color_calendar_text = "#d3ebcf";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#001c0a";
set color_entry_border = "#094600";
set color_entry_interaction_links = "#85a286";
set color_entry_link = "#85a286";
set color_entry_link_visited = "#85a286";
set color_entry_text = "#d3ebcf";
set color_entry_title = "#d3ebcf";
set color_entry_title_background = "#001c0a";
set color_comment_title = "#d3ebcf";
set color_comment_title_background = "#001c0a";
##===============================
## Module Colors
##===============================
set color_module_background = "#001c0a";
set color_module_border = "#001c0a";
set color_module_link = "#85a286";
set color_module_link_visited = "#85a286";
set color_module_text = "#d3ebcf";
set color_module_title = "#d3ebcf";
set color_module_title_background = "#001C0A";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/fallingleaves.png";
#NEWLAYER: crisped/fatigued
layerinfo type = "theme";
layerinfo name = "Fatigued";
layerinfo redist_uniq = "crisped/fatigued";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#2c2f26";
set color_page_link = "#9ca38b";
set color_page_link_active = "#aaa";
set color_page_link_hover = "#9d8395";
set color_page_link_visited = "#727d55";
set color_page_subtitle = "#aaa";
set color_page_text = "#aaa";
set color_page_title = "#4d4c3d";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#333329";
set color_entry_border = "#231f26";
set color_entry_interaction_links = "#aaa";
set color_entry_link = "#9ca38b";
set color_entry_link_active = "#aaa";
set color_entry_link_hover = "#9d8395";
set color_entry_link_visited = "#727d55";
set color_entry_text = "#aaa";
set color_entry_title = "#aaa";
set color_entry_title_background = "#4E4B3F";
set color_comment_title = "#aaa";
##===============================
## Module Colors
##===============================
set color_module_background = "#333329";
set color_module_border = "#4E4B3F";
set color_module_link = "#9ca38b";
set color_module_link_active = "#aaa";
set color_module_link_hover = "#9d8395";
set color_module_link_visited = "#727d55";
set color_module_title = "#aaa";
set color_module_title_background = "#4E4B3F";
set color_calendar_background = "#2c2f26";
set color_calendar_text = "#aaa";
##===============================
## Fonts
##===============================
set font_base = "Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial";
set font_fallback = "sans-serif";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/favoritesweater
layerinfo type = "theme";
layerinfo name = "Favorite Sweater";
layerinfo redist_uniq = "crisped/favoritesweater";
layerinfo author_name = "yaysunshine";
set theme_authors = [ { "name" => "yaysunshine", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#eef9ce";
set color_calendar_link = "#d24b6b";
set color_calendar_link_active = "#d24b6b";
set color_calendar_link_hover = "#cad471";
set color_calendar_link_visited = "#d24b6b";
set color_calendar_text = "#212236";
set color_footer_background = "#212236";
set color_footer_link = "#d24b6b";
set color_footer_link_active = "#d24b6b";
set color_footer_link_hover = "#cad471";
set color_footer_link_visited = "#d24b6b";
set color_header_background = "#212236";
set color_page_background = "#212236";
set color_page_link = "#d24b6b";
set color_page_link_active = "#d24b6b";
set color_page_link_hover = "#cad471";
set color_page_link_visited = "#d24b6b";
set color_page_subtitle = "#eef9ce";
set color_page_text = "#cad471";
set color_page_title = "#cad471";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#eef9ce";
set color_comment_title_background = "#0ac49f";
set color_entry_background = "#eef9ce";
set color_entry_border = "#0ac49f";
set color_entry_interaction_links = "#d24b6b";
set color_entry_link = "#d24b6b";
set color_entry_link_active = "#d24b6b";
set color_entry_link_hover = "#cad471";
set color_entry_link_visited = "#d24b6b";
set color_entry_text = "#212236";
set color_entry_title = "#eef9ce";
set color_entry_title_background = "#0ac49f";
##===============================
## Module Colors
##===============================
set color_module_background = "#eef9ce";
set color_module_border = "#0ac49f";
set color_module_link = "#d24b6b";
set color_module_link_active = "#d24b6b";
set color_module_link_hover = "#cad471";
set color_module_link_visited = "#d24b6b";
set color_module_text = "#212236";
set color_module_title = "#eef9ce";
set color_module_title_background = "#0ac49f";
#NEWLAYER: crisped/floralpastels
layerinfo type = "theme";
layerinfo name = "Floral Pastels";
layerinfo redist_uniq = "crisped/floralpastels";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#e7eae1";
set color_page_link = "#af859d";
set color_page_link_active = "#77ad75";
set color_page_link_hover = "#77ad75";
set color_page_link_visited = "#8d82a0";
set color_page_text = "#726c5b";
set color_page_title = "#869170";
set color_page_subtitle = "#726c5b";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fffefc";
set color_entry_border = "#869170";
set color_entry_link = "#af859d";
set color_entry_link_active = "#77ad75";
set color_entry_link_hover = "#77ad75";
set color_entry_link_visited = "#8d82a0";
set color_entry_text = "#726c5b";
set color_entry_title = "#869170";
set color_entry_title_background = "#fcf5e2";
set color_entry_interaction_links = "#af859d";
set color_comment_title = "#869170";
##===============================
## Module Colors
##===============================
set color_module_background = "#fffefc";
set color_module_border = "#fcf5e2";
set color_module_link = "#af859d";
set color_module_link_active = "#77ad75";
set color_module_link_hover = "#77ad75";
set color_module_link_visited = "#8d82a0";
set color_module_title = "#869170";
set color_module_title_background = "#f7efdc";
set color_calendar_background = "#f7efdc";
set color_calendar_text = "#726c5b";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_module_title;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/flowersandcurls
layerinfo type = "theme";
layerinfo name = "Flowers and Curls";
layerinfo redist_uniq = "crisped/flowersandcurls";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by DarkBlueMe4Ever & dazzlement", "url" => "http://www.colourlovers.com/pattern/3982064/Parchment_Flower" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#f6f4e7";
set color_page_border = "#dadea7";
set color_page_link = "#909b35";
set color_page_link_visited = "#bebe36";
set color_page_subtitle = "#76ab38";
set color_page_text = "#608c2e";
set color_page_title = "#608c2e";
set color_header_background = "#f6f4e7";
set color_footer_background = "#f6f4e7";
set color_footer_link = "#909b35";
set color_footer_link_visited = "#bebe36";
set color_calendar_background = "#f6f4e7";
set color_calendar_link = "#909b35";
set color_calendar_link_visited = "#bebe36";
set color_calendar_text = "#608c2e";
set control_strip_bgcolor = "#f6f4e7";
set control_strip_bordercolor = "#dadea7";
set control_strip_fgcolor = "#608c2e";
set control_strip_linkcolor = "#909b35";
set custom_control_strip_colors = "on_gradient";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f6f4e7";
set color_entry_border = "#dadea7";
set color_entry_interaction_links = "#909b35";
set color_entry_interaction_links_visited = "#bebe36";
set color_entry_link = "#909b35";
set color_entry_link_visited = "#bebe36";
set color_entry_text = "#608c2e";
set color_entry_title = "#608c2e";
set color_entry_title_background = "#e1e6b7";
set color_comment_title = "#608c2e";
set color_comment_title_background = "#e1e6b7";
##===============================
## Module Colors
##===============================
set color_module_background = "#f6f4e7";
set color_module_border = "#dadea7";
set color_module_link = "#909b35";
set color_module_link_visited = "#bebe36";
set color_module_text = "#608c2e";
set color_module_title = "#608c2e";
set color_module_title_background = "#e1e6b7";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/flowersandcurls.png";
function Page::print_theme_stylesheet() { """
/* Flowers and Curls
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/frenchgradients
layerinfo type = "theme";
layerinfo name = "French Gradients";
layerinfo redist_uniq = "crisped/frenchgradients";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#d6d4d0";
set color_page_link = "#aa7061";
set color_page_link_active = "#aa7061";
set color_page_link_hover = "#757472";
set color_page_link_visited = "#aa7061";
set color_page_text = "#61615f";
set color_page_title = "#aa7061";
set color_page_subtitle = "#757472";
set control_strip_bgcolor = "#e4e3de";
set control_strip_bordercolor = "#757472";
set control_strip_linkcolor = "#aa7061";
set control_strip_fgcolor = "#61615f";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#e4e3de";
set color_entry_border = "#757472";
set color_entry_link = "#aa7061";
set color_entry_link_active = "#aa7061";
set color_entry_link_hover = "#757472";
set color_entry_link_visited = "#aa7061";
set color_entry_text = "#61615f";
set color_entry_title = "#757472";
set color_entry_title_background = "#c7c6c1";
set color_entry_interaction_links = "#757472";
set color_comment_title = "#757472";
##===============================
## Module Colors
##===============================
set color_module_background = "#e4e3de";
set color_module_border = "#c7c6c1";
set color_module_link = "#aa7061";
set color_module_link_active = "#aa7061";
set color_module_link_hover = "#757472";
set color_module_link_visited = "#aa7061";
set color_module_title = "#757472";
set color_module_title_background = "#c7c6c1";
set color_calendar_background = "#d6d4d0";
set color_calendar_text = "#757472";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_module_title;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
.ContextualPopup {
border: 1px solid $*color_entry_title_background !important;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/freshair
layerinfo type = "theme";
layerinfo name = "Fresh Air";
layerinfo redist_uniq = "crisped/freshair";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#D4F3CD";
set color_calendar_link = "#73B192";
set color_calendar_link_hover = "#5DA377";
set color_calendar_link_visited = "#559E84";
set color_calendar_text = "#294D40";
set color_footer_link = "#73B192";
set color_footer_link_hover = "#5DA377";
set color_footer_link_visited = "#559E84";
set color_page_background = "#D4F3CD";
set color_page_link = "#73B192";
set color_page_link_hover = "#5DA377";
set color_page_link_visited = "#559E84";
set color_page_subtitle = "#73B192";
set color_page_text = "#294D40";
set color_page_title = "#559E84";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#559E84";
set color_comment_title_background = "#C9EBDA";
set color_entry_background = "#E9FDCF";
set color_entry_border = "#C9FDB5";
set color_entry_interaction_links = "#73B192";
set color_entry_link = "#73B192";
set color_entry_link_hover = "#5DA377";
set color_entry_link_visited = "#559E84";
set color_entry_text = "#294D40";
set color_entry_title = "#559E84";
set color_entry_title_background = "#C9EBDA";
##===============================
## Module Colors
##===============================
set color_module_background = "#E9FDCF";
set color_module_border = "#C9FDB5";
set color_module_link = "#73B192";
set color_module_link_hover = "#5DA377";
set color_module_link_visited = "#559E84";
set color_module_text = "#294D40";
set color_module_title = "#559E84";
set color_module_title_background = "#C9EBDA";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
function Page::print_theme_stylesheet() {
"""
/* Fresh Air
/* by Nornoriel
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/freshcotton
layerinfo type = "theme";
layerinfo name = "Fresh Cotton";
layerinfo redist_uniq = "crisped/freshcotton";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#ededed";
set color_page_link = "#7B98C1";
set color_page_link_active = "#7B98C1";
set color_page_link_hover = "#757575";
set color_page_link_visited = "#7B98C1";
set color_page_text = "#5f5f5f";
set color_page_title = "#7B98C1";
set color_page_subtitle = "#757575";
set control_strip_bgcolor = "#fff";
set control_strip_bordercolor = "#dcdcdc";
set control_strip_linkcolor = "#7B98C1";
set control_strip_fgcolor = "#5f5f5f";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fff";
set color_entry_border = "#dcdcdc";
set color_entry_link = "#7B98C1";
set color_entry_link_active = "#7B98C1";
set color_entry_link_hover = "#757575";
set color_entry_link_visited = "#7B98C1";
set color_entry_text = "#5f5f5f";
set color_entry_title = "#757575";
set color_entry_title_background = "#dcdcdc";
set color_entry_interaction_links = "#757575";
set color_comment_title = "#757575";
set color_comment_title_background = "#dcdcdc";
##===============================
## Module Colors
##===============================
set color_module_background = "#fff";
set color_module_border = "#dcdcdc";
set color_module_link = "#7B98C1";
set color_module_link_active = "#7B98C1";
set color_module_link_hover = "#757575";
set color_module_link_visited = "#7B98C1";
set color_module_title = "#757575";
set color_module_title_background = "#dcdcdc";
set color_calendar_background = "#ededed";
set color_calendar_text = "#757575";
#NEWLAYER: crisped/feyfrolic
layerinfo type = "theme";
layerinfo name = "Fey Frolic";
layerinfo redist_uniq = "crisped/feyfrolic";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#915c57";
set color_page_link = "#c9c97e";
set color_page_link_hover = "#f4c56b";
set color_page_link_visited = "#52542e";
set color_page_text = "#2d261c";
set color_page_title = "#D3BD74";
set color_header_background = "#6d7041";
set color_footer_background = "#6d7041";
set color_footer_link = "#c9c97e";
set color_footer_link_hover = "#f4c56b";
set color_footer_link_visited = "#d3bd74";
set control_strip_bgcolor = "#968164";
set control_strip_bordercolor = "#b1af76";
set control_strip_linkcolor = "#c9c97e";
set control_strip_fgcolor = "#2d261c";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#968164";
set color_entry_border = "#b1af76";
set color_entry_link = "#c9c97e";
set color_entry_link_hover = "#f4c56b";
set color_entry_link_visited = "#52542e";
set color_entry_text = "#2d261c";
##===============================
## Module Colors
##===============================
set color_module_background = "#968164";
set color_module_border = "#b1af76";
set color_module_link = "#c9c97e";
set color_module_link_hover = "#f4c56b";
set color_module_link_visited = "#52542e";
set color_module_text = "#2d261c";
set color_module_title = "#b1af76";
#NEWLAYER: crisped/gentility
layerinfo type = "theme";
layerinfo name = "Gentility";
layerinfo redist_uniq = "crisped/gentility";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#ffd5b3";
set color_page_border = "ffd5b3";
set color_page_link = "#bd5858";
set color_page_link_active = "#bd5858";
set color_page_link_hover = "#7f4538";
set color_page_link_visited = "#bd5858";
set color_page_subtitle = "#624c32";
set color_page_text = "#624c32";
set color_page_title = "#bd5858";
set color_header_background = "ffd5b3";
set color_footer_background = "ffd5b3";
set color_footer_link = "#bd5858";
set color_footer_link_active = "bd5858";
set color_footer_link_hover = "7f4538";
set color_footer_link_visited = "bd5858";
set control_strip_bgcolor = "#ffdeaa";
set control_strip_bordercolor = "#e8b778";
set control_strip_linkcolor = "#bd5858";
set control_strip_fgcolor = "#624c32";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#ffdeaa";
set color_entry_border = "#e8b778";
set color_entry_interaction_links = "#7f4538";
set color_entry_link = "#bd5858";
set color_entry_link_active = "#bd5858";
set color_entry_link_hover = "#7f4538";
set color_entry_link_visited = "#bd5858";
set color_entry_text = "#624c32";
set color_entry_title = "#7f4538";
set color_entry_title_background = "#e8b778";
set color_comment_title = "#7f4538";
set color_comment_title_background = "#e8b778";
##===============================
## Module Colors
##===============================
set color_module_background = "#ffdeaa";
set color_module_border = "#e8b778";
set color_module_link = "#bd5858";
set color_module_link_active = "#bd5858";
set color_module_link_hover = "#7f4538";
set color_module_link_visited = "#bd5858";
set color_module_text = "624c32";
set color_module_title = "#7f4538";
set color_module_title_background = "#e8b778";
set color_calendar_background = "#ffd5b3";
set color_calendar_link = "bd5858";
set color_calendar_link_active = "bd5858";
set color_calendar_link_hover = "7f4538";
set color_calendar_link_visited = "bd5858";
set color_calendar_text = "#7f4538";
#NEWLAYER: crisped/gentlebreeze
layerinfo type = "theme";
layerinfo name = "Gentle Breeze";
layerinfo redist_uniq = "crisped/gentlebreeze";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#ffd483";
set color_page_link = "#4f967c";
set color_page_link_active = "#4f967c";
set color_page_link_hover = "#67aa93";
set color_page_link_visited = "#808c3f";
set color_page_subtitle = "#191919";
set color_page_text = "#191919";
set color_page_title = "#191919";
set color_header_background = "#ffd997";
set color_footer_background = "#ffd997";
set color_footer_link = "#4f967c";
set color_footer_link_active = "#4f967c";
set color_footer_link_hover = "#67aa93";
set color_footer_link_visited = "#808c3f";
set control_strip_bgcolor = "#ffd997";
set control_strip_bordercolor = "#ffdeab";
set control_strip_linkcolor = "#4f967c";
set control_strip_fgcolor = "#191919";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#ffd997";
set color_entry_border = "#ffdeab";
set color_entry_interaction_links = "#92A048";
set color_entry_link = "#4f967c";
set color_entry_link_active = "#4f967c";
set color_entry_link_hover = "#67aa93";
set color_entry_link_visited = "#808c3f";
set color_entry_text = "#191919";
set color_entry_title = "#191919";
set color_entry_title_background = "#ffdeab";
set color_comment_title = "#191919";
set color_comment_title_background = "#ffdeab";
##===============================
## Module Colors
##===============================
set color_module_background = "#ffd997";
set color_module_border = "#ffdeab";
set color_module_link = "#4f967c";
set color_module_link_active = "#4f967c";
set color_module_link_hover = "#67aa93";
set color_module_link_visited = "#808c3f";
set color_module_text = "#191919";
set color_module_title = "#191919";
set color_module_title_background = "#ffdeab";
set color_calendar_background = "#ffdeab";
set color_calendar_link = "#4f967c";
set color_calendar_link_active = "#4f967c";
set color_calendar_link_hover = "#67aa93";
set color_calendar_link_visited = "#808c3f";
set color_calendar_text = "#191919";
#NEWLAYER: crisped/icechic
layerinfo type = "theme";
layerinfo name = "Ice Chic";
layerinfo redist_uniq = "crisped/icechic";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#f3fae7";
set color_page_link = "#48b170";
set color_page_link_active = "#48b170";
set color_page_link_hover = "#dc5a04";
set color_page_link_visited = "#3d7b55";
set color_page_subtitle = "#0b0b0b";
set color_page_text = "#0b0b0b";
set color_page_title = "#0b0b0b";
set color_header_background = "#eef5e2";
set color_footer_background = "#eef5e2";
set color_footer_link = "#48b170";
set color_footer_link_active = "#48b170";
set color_footer_link_hover = "#dc5a04";
set color_footer_link_visited = "#3d7b55";
set control_strip_bgcolor = "#eef5e2";
set control_strip_bordercolor = "#e9f0de";
set control_strip_linkcolor = "#48b170";
set control_strip_fgcolor = "#0b0b0b";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#eef5e2";
set color_entry_border = "#e9f0de";
set color_entry_interaction_links = "#48b170";
set color_entry_link = "#48b170";
set color_entry_link_active = "#48b170";
set color_entry_link_hover = "#dc5a04";
set color_entry_link_visited = "#3d7b55";
set color_entry_text = "#0b0b0b";
set color_entry_title = "#0b0b0b";
set color_entry_title_background = "#e9f0de";
set color_comment_title = "#0b0b0b";
set color_comment_title_background = "#e9f0de";
##===============================
## Module Colors
##===============================
set color_module_background = "#eef5e2";
set color_module_border = "#e9f0de";
set color_module_link = "#48b170";
set color_module_link_active = "#48b170";
set color_module_link_hover = "#dc5a04";
set color_module_link_visited = "#3d7b55";
set color_module_text = "#0b0b0b";
set color_module_title = "#0b0b0b";
set color_module_title_background = "#e9f0de";
set color_calendar_background = "#e9f0de";
set color_calendar_link = "#48b170";
set color_calendar_link_active = "#48b170";
set color_calendar_link_hover = "#dc5a04";
set color_calendar_link_visited = "#3d7b55";
set color_calendar_text = "#0b0b0b";
#NEWLAYER: crisped/igetmisty
layerinfo type = "theme";
layerinfo name = "I Get Misty...";
layerinfo redist_uniq = "crisped/igetmisty";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by ScienceFair & ArrayOfLilly", "url" => "http://www.colourlovers.com/pattern/4299136/I_get_misty..." } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#4A635E";
set color_page_border = "#fff";
set color_page_link = "#91aeba";
set color_page_link_visited = "#91baaf";
set color_page_subtitle = "#91aeba";
set color_page_text = "#4A635E";
set color_page_title = "#fff";
set color_header_background = "#cfe5e7";
set color_footer_background = "#4A635E";
set color_footer_link = "#cfe5e7";
set color_footer_link_visited = "#91baaf";
set color_calendar_background = "#cfe5e7";
set color_calendar_link = "#91aeba";
set color_calendar_link_visited = "#91baaf";
set color_calendar_text = "#fff";
set control_strip_bgcolor = "#cfe5e7";
set control_strip_bordercolor = "#91aeba";
set control_strip_fgcolor = "#4A635E";
set control_strip_linkcolor = "#91aeba";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#cfe5e7";
set color_entry_border = "#91aeba";
set color_entry_interaction_links = "#91aeba";
set color_entry_interaction_links_visited = "#91baaf";
set color_entry_link = "#91aeba";
set color_entry_link_visited = "#91baaf";
set color_entry_text = "#4A635E";
set color_entry_title = "#fff";
set color_entry_title_background = "#91aeba";
set color_comment_title = "#4A635E";
set color_comment_title_background = "#91aeba";
##===============================
## Module Colors
##===============================
set color_module_background = "#cfe5e7";
set color_module_border = "#91aeba";
set color_module_link = "#91aeba";
set color_module_link_visited = "#91baaf";
set color_module_text = "#4A635E";
set color_module_title = "#fff";
set color_module_title_background = "#91aeba";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/igetmisty.png";
function Page::print_theme_stylesheet() {
"""
/* I Get Misty
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* REMOVING ALL THE UPPERCASE */ h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/inspring
layerinfo type = "theme";
layerinfo name = "In Spring";
layerinfo redist_uniq = "crisped/inspring";
layerinfo author_name = "timeasmymeasure";
set theme_authors = [ { "name" => "timeasmymeasure", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#f8f8f8";
set color_page_link = "#0090d8";
set color_page_link_hover = "#00a8d8";
set color_page_subtitle = "#0090d8";
set color_page_text = "#00040d";
set color_page_title = "#c0d830";
set color_footer_background = "#f0f0f0";
set color_footer_link = "#0090d8";
set color_footer_link_hover = "#00a8d8";
set control_strip_bgcolor = "#f0f0f0";
set control_strip_bordercolor = "#E4E4E4";
set control_strip_linkcolor = "#0090d8";
set control_strip_fgcolor = "#00040d";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f0f0f0";
set color_entry_border = "#E4E4E4";
set color_entry_interaction_links = "#00040d";
set color_entry_link = "#0090d8";
set color_entry_link_hover = "#00a8d8";
set color_entry_text = "#00040d";
set color_entry_title = "#00040d";
set color_entry_title_background = "#c0d830";
set color_comment_title = "#00040d";
set color_comment_title_background = "#c0d830";
##===============================
## Module Colors
##===============================
set color_module_background = "#f0f0f0";
set color_module_border = "#E4E4E4";
set color_module_link = "#0090d8";
set color_module_link_hover = "#00a8d8";
set color_module_text = "#00040d";
set color_module_title = "#00040d";
set color_module_title_background = "#c0d830";
set color_calendar_text = "#00040d";
#NEWLAYER: crisped/joy
layerinfo type = "theme";
layerinfo name = "Joy";
layerinfo redist_uniq = "crisped/joy";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#F7E4C5";
set color_page_link = "#CE4B08";
set color_page_link_hover = "#EB6A2A";
set color_page_subtitle = "#ce4b08";
set color_page_text = "#773D04";
set color_page_title = "#770444";
set color_footer_background = "#fff";
set color_footer_link = "#CE4B08";
set color_footer_link_hover = "#EB6A2A";
set control_strip_bgcolor = "#fff";
set control_strip_bordercolor = "#e2560f";
set control_strip_linkcolor = "#CE4B08";
set control_strip_fgcolor = "#773D04";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fff";
set color_entry_border = "#e2560f";
set color_entry_interaction_links = "#770444";
set color_entry_link = "#CE4B08";
set color_entry_link_hover = "#EB6A2A";
set color_entry_text = "#773D04";
set color_entry_title = "#F7E4C5";
set color_entry_title_background = "#770444";
set color_comment_title = "#F7E4C5";
set color_comment_title_background = "#770444";
##===============================
## Module Colors
##===============================
set color_module_background = "#fff";
set color_module_border = "#e2560f";
set color_module_link = "#CE4B08";
set color_module_link_hover = "#EB6A2A";
set color_module_text = "#773D04";
set color_module_title = "#F7E4C5";
set color_module_title_background = "#770444";
function Page::print_theme_stylesheet () {
"""
.entry .datetime,
.entry .datetime a {
color: $*color_entry_title;
}
.comment .header .datetime,
.comment .header .datetime a {
color: $*color_comment_title;
}
""";
}
#NEWLAYER: crisped/juno
layerinfo type = "theme";
layerinfo name = "Juno";
layerinfo redist_uniq = "crisped/juno";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#095169";
set color_page_link = "#46c68f";
set color_page_link_hover = "#799a0f";
set color_page_link_visited = "#46c68f";
set color_page_text = "#46c68f";
set color_page_title = "#46c68f";
set color_header_background = "#005049";
set color_footer_background = "#005049";
set color_footer_link = "#9fd86b";
set color_footer_link_hover = "#037c76";
set color_footer_link_visited = "#007250";
set control_strip_bgcolor = "#067e7a";
set control_strip_bordercolor = "#007250";
set control_strip_linkcolor = "#53ba83";
set control_strip_fgcolor = "#0c0636";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#067e7a";
set color_entry_border = "#007250";
set color_entry_link = "#53ba83";
set color_entry_link_hover = "#9fd86b";
set color_entry_link_visited = "#96EAD1";
set color_entry_text = "#0c0636";
set color_entry_title = "#96EAD1";
##===============================
## Module Colors
##===============================
set color_module_background = "#067e7a";
set color_module_border = "#007250";
set color_module_link = "#53ba83";
set color_module_link_hover = "#9fd86b";
set color_module_link_visited = "#96EAD1";
set color_module_text = "#0c0636";
set color_module_title = "#96EAD1";
#NEWLAYER: crisped/junoii
layerinfo type = "theme";
layerinfo name = "Juno II";
layerinfo redist_uniq = "crisped/junoii";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_footer_background = "#005049";
set color_footer_link = "#9fd86b";
set color_footer_link_hover = "#037c76";
set color_footer_link_visited = "#007250";
set color_page_background = "#095169";
set color_page_link = "#46c68f";
set color_page_link_hover = "#799a0f";
set color_page_link_visited = "#46c68f";
set color_page_subtitle = "#96ead1";
set color_page_text = "#46c68f";
set color_page_title = "#46c68f";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#46c68f";
set color_comment_title_background = "#005049";
set color_entry_background = "#067e7a";
set color_entry_border = "#007250";
set color_entry_link = "#53ba83";
set color_entry_link_hover = "#9fd86b";
set color_entry_link_visited = "#96ead1";
set color_entry_text = "#0c0636";
set color_entry_title = "#96ead1";
set color_entry_title_background = "#005049";
##===============================
## Module Colors
##===============================
set color_module_background = "#067e7a";
set color_module_border = "#007250";
set color_module_link = "#53ba83";
set color_module_link_hover = "#9fd86b";
set color_module_link_visited = "#96ead1";
set color_module_text = "#0c0636";
set color_module_title = "#96ead1";
set color_module_title_background = "#005049";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
function Page::print_theme_stylesheet() {
"""
/* Juno II
/* by Nornoriel
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/keepfalling
layerinfo type = "theme";
layerinfo name = "Keep Falling";
layerinfo redist_uniq = "crisped/keepfalling";
layerinfo author_name = "timeasmymeasure";
set theme_authors = [ { "name" => "timeasmymeasure", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#81290b";
set color_page_link = "#f04d14";
set color_page_link_hover = "#ea8713";
set color_page_subtitle = "EA8713";
set color_page_text = "#f0a914";
set color_page_title = "#F55822";
set color_footer_background = "#641908";
set color_footer_link = "#f04d14";
set control_strip_bgcolor = "#641908";
set control_strip_bordercolor = "#5b1a06";
set control_strip_linkcolor = "#f04d14";
set control_strip_fgcolor = "#f0a914";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#f0a914";
set color_comment_title_background = "#4b1605";
set color_entry_background = "#641908";
set color_entry_border = "#5b1a06";
set color_entry_link = "#f04d14";
set color_entry_link_hover = "#ea8713";
set color_entry_text = "#f0a914";
set color_entry_title = "#f0a914";
set color_entry_title_background = "#4b1605";
##===============================
## Module Colors
##===============================
set color_module_background = "#641908";
set color_module_border = "#5b1a06";
set color_module_link = "#f04d14";
set color_module_link_hover = "#ea8713";
set color_module_text = "#f0a914";
set color_module_title = "#f0a914";
set color_module_title_background = "#4b1605";
set color_calendar_background = "#4b1605";
set color_calendar_link = "#f04d14";
set color_calendar_link_hover = "#ea8713";
set color_calendar_text = "#f0a914";
#NEWLAYER: crisped/kyler
layerinfo type = "theme";
layerinfo name = "Kyler";
layerinfo redist_uniq = "crisped/kyler";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by medeakay & thirdbreakfast", "url" => "http://www.colourlovers.com/pattern/4189592/Kyler" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#670f5f";
set color_page_border = "#c01bb1";
set color_page_link = "#87fe2f";
set color_page_link_visited = "#8daf24";
set color_page_subtitle = "#afda2d";
set color_page_text = "#f1fec8";
set color_page_title = "#ccfe30";
set icons_page_sort = "keyword";
set color_header_background = "#670f5f";
set color_footer_background = "#670f5f";
set color_footer_link = "#87fe2f";
set color_footer_link_visited = "#8daf24";
set color_calendar_background = "#670f5f";
set color_calendar_link = "#87fe2f";
set color_calendar_link_visited = "#8daf24";
set color_calendar_text = "#ccfe30";
set comment_date_format = "med";
set control_strip_bgcolor = "#670F5F";
set control_strip_bordercolor = "#6B851C";
set control_strip_fgcolor = "#f1fec8";
set control_strip_linkcolor = "#87fe2f";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#670f5f";
set color_entry_interaction_links = "#87fe2f";
set color_entry_interaction_links_visited = "#8daf24";
set color_entry_link = "#87fe2f";
set color_entry_link_visited = "#8daf24";
set color_entry_text = "#f1fec8";
set color_entry_title = "#f1fec8";
set color_entry_title_background = "#e5fe95";
set color_comment_title = "#ccfe30";
set color_comment_title_background = "#670f5f";
##===============================
## Module Colors
##===============================
set color_module_background = "#670f5f";
set color_module_link = "#87fe2f";
set color_module_link_visited = "#cee685";
set color_module_text = "#f1fec8";
set color_module_title = "#cee685";
set color_module_title_background = "#e5fe95";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/kyler.png";
function Page::print_theme_stylesheet() { """
/* Kyler
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
"""; }
#NEWLAYER: crisped/lawlessspeckles
layerinfo type = "theme";
layerinfo name = "Lawless Speckles";
layerinfo redist_uniq = "crisped/lawlessspeckles";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly and thirdbreakfast", "url" => "http://www.colourlovers.com/pattern/4259186/Lawless_Speckless" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#25064a";
set color_page_border = "#3B3865";
set color_page_link = "#eaadde";
set color_page_link_visited = "#b9f1ff";
set color_page_subtitle = "#ddb8e2";
set color_page_text = "#d2c5e2";
set color_page_title = "#d2c5e2";
set color_header_background = "#25064a";
set color_footer_background = "#25064a";
set color_footer_link = "#eaadde";
set color_footer_link_visited = "#b9f1ff";
set color_calendar_background = "#25064a";
set color_calendar_link = "#eaadde";
set color_calendar_link_visited = "#b9f1ff";
set color_calendar_text = "#d2c5e2";
set control_strip_bgcolor = "#25064a";
set control_strip_bordercolor = "#3B3865";
set control_strip_fgcolor = "#d2c5e2";
set control_strip_linkcolor = "#eaadde";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#25064a";
set color_entry_border = "#3B3865";
set color_entry_interaction_links = "#eaadde";
set color_entry_interaction_links_visited = "#b9f1ff";
set color_entry_link = "#eaadde";
set color_entry_link_visited = "#b9f1ff";
set color_entry_text = "#d2c5e2";
set color_entry_title = "#d2c5e2";
set color_entry_title_background = "#3B3865";
set color_comment_title = "#d2c5e2";
set color_comment_title_background = "#3B3865";
##===============================
## Module Colors
##===============================
set color_module_background = "#25064a";
set color_module_border = "#3B3865";
set color_module_link = "#eaadde";
set color_module_link_visited = "#b9f1ff";
set color_module_text = "#d2c5e2";
set color_module_title = "#d2c5e2";
set color_module_title_background = "#3B3865";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/lawlessspeckles.png";
function Page::print_theme_stylesheet() {
"""
/* Lawless Speckles
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* REMOVING ALL THE UPPERCASE */ h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/lemarin
layerinfo type = "theme";
layerinfo name = "Le Marin";
layerinfo redist_uniq = "crisped/lemarin";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#e8e0d5";
set color_page_border = "#e8e0d5";
set color_page_link = "#de482f";
set color_page_link_active = "#de482f";
set color_page_link_hover = "#2b5178";
set color_page_link_visited = "#273456";
set color_page_subtitle = "#212121";
set color_page_text = "#050505";
set color_page_title = "#212121";
set color_header_background = "#e3d8c3";
set color_footer_background = "#edebe8";
set color_footer_link = "#de482f";
set color_footer_link_active = "#de482f";
set color_footer_link_hover = "#2b5178";
set color_footer_link_visited = "#273456";
set control_strip_bgcolor = "#edebe8";
set control_strip_bordercolor = "#e3d8c3";
set control_strip_linkcolor = "#de482f";
set control_strip_fgcolor = "#050505";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#edebe8";
set color_entry_border = "#e3d8c3";
set color_entry_interaction_links = "#e85a42";
set color_entry_link = "#de482f";
set color_entry_link_active = "#de482f";
set color_entry_link_hover = "#2b5178";
set color_entry_link_visited = "#273456";
set color_entry_text = "#050505";
set color_entry_title = "#212121";
set color_entry_title_background = "#e3d8c3";
set color_comment_title = "#212121";
set color_comment_title_background = "#e3d8c3";
##===============================
## Module Colors
##===============================
set color_module_background = "#edebe8";
set color_module_border = "#e3d8c3";
set color_module_link = "#de482f";
set color_module_link_active = "#de482f";
set color_module_link_hover = "#2b5178";
set color_module_link_visited = "#273456";
set color_module_text = "#050505";
set color_module_title = "#212121";
set color_module_title_background = "#e3d8c3";
set color_calendar_background = "#e3d8c3";
set color_calendar_link = "#de482f";
set color_calendar_link_active = "#de482f";
set color_calendar_link_hover = "#2b5178";
set color_calendar_link_visited = "#273456";
set color_calendar_text = "#050505";
#NEWLAYER: crisped/loveless
layerinfo type = "theme";
layerinfo name = "Loveless";
layerinfo redist_uniq = "crisped/loveless";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#450247";
set color_page_link = "#e73155";
set color_page_link_hover = "#c72559";
set color_page_link_visited = "#ff476c";
set color_page_text = "#efcadc";
set color_page_title = "#ff8d91";
set color_header_background = "#990a45";
set color_footer_background = "#670067";
set color_footer_link = "#e73155";
set color_footer_link_hover = "#c72559";
set color_footer_link_visited = "#ff476c";
set control_strip_bgcolor = "#670067";
set control_strip_bordercolor = "#860c62";
set control_strip_linkcolor = "#e73155";
set control_strip_fgcolor = "#efcadc";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#670067";
set color_entry_border = "#860c62";
set color_entry_link = "#e73155";
set color_entry_link_hover = "#c72559";
set color_entry_link_visited = "#ff476c";
set color_entry_text = "#efcadc";
##===============================
## Module Colors
##===============================
set color_module_background = "#670067";
set color_module_border = "#860c62";
set color_module_link = "#e73155";
set color_module_link_hover = "#c72559";
set color_module_link_visited = "#ff476c";
set color_module_text = "#efcadc";
set color_module_title = "#ff476c";
#NEWLAYER: crisped/lovelessii
layerinfo type = "theme";
layerinfo name = "Loveless II";
layerinfo redist_uniq = "crisped/lovelessii";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#450247";
set color_page_link = "#e73155";
set color_page_link_hover = "#c72559";
set color_page_link_visited = "#ff476c";
set color_page_subtitle = "#990a45";
set color_page_text = "#efcadc";
set color_page_title = "#e73155";
set color_footer_background = "#670067";
set color_footer_link = "#e73155";
set color_footer_link_hover = "#c72559";
set color_footer_link_visited = "#ff476c";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#670067";
set color_entry_border = "#860c62";
set color_entry_link = "#e73155";
set color_entry_link_hover = "#c72559";
set color_entry_link_visited = "#ff476c";
set color_entry_text = "#efcadc";
set color_entry_title_background = "#990a45";
set color_comment_title_background = "#990a45";
##===============================
## Module Colors
##===============================
set color_module_background = "#670067";
set color_module_border = "#860c62";
set color_module_link = "#e73155";
set color_module_link_hover = "#c72559";
set color_module_link_visited = "#ff476c";
set color_module_text = "#efcadc";
set color_module_title = "#ff476c";
set color_module_title_background = "#990a45";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/lovelyflowersbloom
layerinfo type = "theme";
layerinfo name = "Lovely Flowers Bloom";
layerinfo redist_uniq = "crisped/lovelyflowersbloom";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by KiMiNiToDoKe98 and OldeAuntieRae", "url" => "http://www.colourlovers.com/pattern/2476135/Lovely_Flowers_Bloom" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#310d0d";
set color_page_border = "#a05a75";
set color_page_link = "#ECC5C5";
set color_page_link = "#d4b1b1";
set color_page_link_visited = "#e1a8a6";
set color_page_subtitle = "#f19f9f";
set color_page_text = "#e1a8a6";
set color_page_title = "#e1a8a6";
set icons_page_sort = "keyword";
set color_header_background = "#310d0d";
set color_footer_background = "#310d0d";
set color_footer_link = "#e1a8a6";
set color_footer_link_visited = "#a05a75";
set color_calendar_background = "#310d0d";
set color_calendar_link = "#d4b1b1";
set color_calendar_link_visited = "#e1a8a6";
set color_calendar_text = "#e1a8a6";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#310d0d";
set color_entry_border = "#a05a75";
set color_entry_interaction_links = "#d4b1b1";
set color_entry_interaction_links_visited = "#e1a8a6";
set color_entry_link = "#d4b1b1";
set color_entry_link_visited = "#e1a8a6";
set color_entry_text = "#e1a8a6";
set color_entry_title = "#e1a8a6";
set color_entry_title_background = "#310d0d";
set color_comment_title = "#e1a8a6";
set color_comment_title_background = "#310d0d";
##===============================
## Module Colors
##===============================
set color_module_background = "#310d0d";
set color_module_border = "#a05a75";
set color_module_link = "#d4b1b1";
set color_module_link_visited = "#e1a8a6";
set color_module_text = "#e1a8a6";
set color_module_title = "#e1a8a6";
set color_module_title_background = "#310d0d";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/lovelyflowersbloom.png";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet() { """
/* REMOVING ALL THE UPPERCASE */
h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/lowfrequency
layerinfo type = "theme";
layerinfo name = "Low Frequency";
layerinfo redist_uniq = "crisped/lowfrequency";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#564F4A";
set color_page_border = "#564F4A";
set color_page_link = "#B8FAFF";
set color_page_link_hover = "#afe0d0";
set color_page_text = "#FFFFF9";
set color_page_title = "#b8faff";
set color_page_subtitle = "#ffe29b";
set color_footer_background = "#6E655F";
set color_footer_link = "#b8faff";
set color_footer_link_hover = "#afe0d0";
set control_strip_bgcolor = "#6E655F";
set control_strip_bordercolor = "#443E39";
set control_strip_linkcolor = "#b8faff";
set control_strip_fgcolor = "#FFFFF9";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#6E655F";
set color_entry_border = "#443E39";
set color_entry_interaction_links = "#ffe29b";
set color_entry_link = "#b8faff";
set color_entry_link_hover = "#afe0d0";
set color_entry_text = "#FFFFF9";
set color_entry_title = "#FFE29B";
set color_entry_title_background = "#443E39";
set color_comment_title = "#FFE29B";
set color_comment_title_background = "#443E39";
##===============================
## Module Colors
##===============================
set color_module_background = "#6E655F";
set color_module_border = "#443E39";
set color_module_link = "#b8faff";
set color_module_link_hover = "#afe0d0";
set color_module_text = "#FFFFF9";
set color_module_title = "#FFE29B";
set color_module_title_background = "#443E39";
set color_calendar_text = "#FFFFF9";
#NEWLAYER: crisped/luka
layerinfo type = "theme";
layerinfo name = "Luka";
layerinfo redist_uniq = "crisped/luka";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly & dazzlement", "url" => "http://www.colourlovers.com/pattern/4181611/Luka" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#e3edf3";
set color_page_link = "#8788a7";
set color_page_link_hover = "#7f92a3";
set color_page_link_visited = "#686988";
set color_page_subtitle = "#686988";
set color_page_text = "#4e5568";
set color_page_title = "#8788a7";
set color_footer_background = "#eff1f3";
set color_footer_link = "#4e5568";
set color_footer_link_hover = "#8788a7";
set color_footer_link_visited = "#686988";
set color_calendar_background = "#fdfdfd";
set color_calendar_link = "#8599ab";
set color_calendar_link_hover = "#afaab1";
set color_calendar_link_visited = "#889";
set color_calendar_text = "#4e5568";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#eff1f3";
set color_entry_background = "#eff1f3";
set color_entry_background = "#fdfdfd";
set color_entry_border = "#dadbf5";
set color_entry_border = "#dadbf5";
set color_entry_border = "#f7d9f4";
set color_entry_interaction_links = "#8599ab";
set color_entry_link = "#8599ab";
set color_entry_link_hover = "#afaab1";
set color_entry_link_visited = "#889";
set color_entry_text = "#4e5568";
set color_entry_title = "#4b4f5c";
set color_entry_title_background = "#dadbf5";
set color_entry_title_background = "#dadbf5";
set color_entry_title_background = "#e3f7f8";
set color_comment_title = "#8599ab";
set color_comment_title_background = "#dadbf5";
set color_comment_title_background = "#dadbf5";
##===============================
## Module Colors
##===============================
set color_module_background = "#eff1f3";
set color_module_background = "#eff1f3";
set color_module_background = "#fdfdfd";
set color_module_border = "#d4ebfb";
set color_module_link = "#8599ab";
set color_module_link_hover = "#afaab1";
set color_module_link_visited = "#889";
set color_module_text = "#4e5568";
set color_module_title = "#4b4f5c";
set color_module_title_background = "#dadbf5";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/luka.png";
function Page::print_theme_stylesheet() { """
/* Luka
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* REMOVING ALL THE UPPERCASE */ h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/moonstone
layerinfo type = "theme";
layerinfo name = "Moonstone";
layerinfo redist_uniq = "crisped/moonstone";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#fdfdfd";
set color_calendar_link = "#8599ab";
set color_calendar_link_hover = "#afaab1";
set color_calendar_link_visited = "#888899";
set color_calendar_text = "#4e5568";
set color_footer_link = "#4e5568";
set color_footer_link_hover = "#8788a7";
set color_footer_link_visited = "#686988";
set color_page_background = "#e3edf3";
set color_page_link = "#8788a7";
set color_page_link_hover = "#7f92a3";
set color_page_link_visited = "#686988";
set color_page_subtitle = "#686988";
set color_page_text = "#4e5568";
set color_page_title = "#8788a7";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#8599ab";
set color_comment_title_background = "#d4ebfb";
set color_entry_background = "#fdfdfd";
set color_entry_border = "#f7d9f4";
set color_entry_interaction_links = "#8599ab";
set color_entry_link = "#8599ab";
set color_entry_link_hover = "#afaab1";
set color_entry_link_visited = "#888899";
set color_entry_text = "#4e5568";
set color_entry_title = "#4b4f5c";
set color_entry_title_background = "#e3f7f8";
##===============================
## Module Colors
##===============================
set color_module_background = "#fdfdfd";
set color_module_border = "#d4ebfb";
set color_module_link = "#8599ab";
set color_module_link_hover = "#afaab1";
set color_module_link_visited = "#888899";
set color_module_text = "#4e5568";
set color_module_title = "#4b4f5c";
set color_module_title_background = "#dadbf5";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
function Page::print_theme_stylesheet() {
"""
/* Moonstone
/* by Nornoriel
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/memories
layerinfo type = "theme";
layerinfo name = "Memories";
layerinfo redist_uniq = "crisped/memories";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#9cd6a2";
set color_page_border = "#9cd6a2";
set color_page_link = "#007b62";
set color_page_link_active = "#007b62";
set color_page_link_hover = "#471e4c";
set color_page_link_visited = "#00503e";
set color_page_subtitle = "#191919";
set color_page_text = "#191919";
set color_page_title = "#191919";
set color_header_background = "#a4e0ab";
set color_footer_background = "#a4e0ab";
set color_footer_link = "#007b62";
set color_footer_link_active = "#007b62";
set color_footer_link_hover = "#471e4c";
set color_footer_link_visited = "#00503e";
set control_strip_bgcolor = "#a4e0ab";
set control_strip_bordercolor = "#bdeac1";
set control_strip_linkcolor = "#007b62";
set control_strip_fgcolor = "#191919";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#a4e0ab";
set color_entry_border = "#bdeac1";
set color_entry_interaction_links = "#471e4c";
set color_entry_link = "#007b62";
set color_entry_link_active = "#007b62";
set color_entry_link_hover = "#471e4c";
set color_entry_link_visited = "#00503e";
set color_entry_text = "#191919";
set color_entry_title = "#191919";
set color_entry_title_background = "#bdeac1";
set color_comment_title = "#191919";
set color_comment_title_background = "#bdeac1";
##===============================
## Module Colors
##===============================
set color_module_background = "#a4e0ab";
set color_module_border = "#bdeac1";
set color_module_link = "#007b62";
set color_module_link_active = "#007b62";
set color_module_link_hover = "#471e4c";
set color_module_link_visited = "#00503e";
set color_module_text = "#191919";
set color_module_title = "#191919";
set color_module_title_background = "#bdeac1";
set color_calendar_background = "#bdeac1";
set color_calendar_link = "#007b62";
set color_calendar_link_active = "#007b62";
set color_calendar_link_hover = "#cb3d5e";
set color_calendar_link_visited = "#00503e";
set color_calendar_text = "#191919";
#NEWLAYER: crisped/midnighthour
layerinfo type = "theme";
layerinfo name = "Midnight Hour";
layerinfo redist_uniq = "crisped/midnighthour";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#06161f";
set color_page_link = "#B3F2F1";
set color_page_link_hover = "#0d8185";
set color_page_link_visited = "#B7E6F4";
set color_page_text = "#deeef2";
set color_page_title = "#0d8185";
set color_header_background = "#0c2430";
set color_footer_background = "#0c2430";
set color_footer_link = "#B3F2F1";
set color_footer_link_hover = "#0d8185";
set color_footer_link_visited = "#B7E6F4";
set control_strip_bgcolor = "#063942";
set control_strip_bordercolor = "#0c2430";
set control_strip_linkcolor = "#B3F2F1";
set control_strip_fgcolor = "#deeef2";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#deeef2";
set color_entry_background = "#063942";
set color_entry_border = "#0c2430";
set color_entry_interaction_links = "#deeef2";
set color_entry_link = "#B3F2F1";
set color_entry_link_hover = "#0d8185";
set color_entry_link_visited = "#B7E6F4";
set color_entry_text = "#deeef2";
set color_entry_title = "#deeef2";
##===============================
## Module Colors
##===============================
set color_module_background = "#1a525c";
set color_module_border = "#0c2430";
set color_module_link = "#B3F2F1";
set color_module_link_hover = "#0d8185";
set color_module_link_visited = "#B7E6F4";
set color_module_text = "#deeef2";
set color_module_title = "#deeef2";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
#NEWLAYER: crisped/midnightpeacock
layerinfo type = "theme";
layerinfo name = "Midnight Peacock";
layerinfo redist_uniq = "crisped/midnightpeacock";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#000";
set color_page_link = "#007a64";
set color_page_link_hover = "#095169";
set color_page_link_visited = "#096d65";
set color_page_subtitle = "#095169";
set color_page_text = "#79aba7";
set color_page_title = "#007a64";
set color_footer_link = "#007a64";
set color_footer_link_hover = "#095169";
set color_footer_link_visited = "#096d65";
set color_calendar_background = "#0c0636";
set color_calendar_link = "#007a64";
set color_calendar_link_hover = "#095169";
set color_calendar_link_visited = "#096d65";
set color_calendar_text = "#79aba7";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#04090d";
set color_entry_border = "#072d18";
set color_entry_interaction_links = "#007a64";
set color_entry_link = "#007a64";
set color_entry_link_hover = "#095169";
set color_entry_link_visited = "#096d65";
set color_entry_text = "#79aba7";
set color_entry_title = "#007a64";
set color_entry_title_background = "#0c0636";
set color_comment_title = "#007a64";
set color_comment_title_background = "#0c0636";
##===============================
## Module Colors
##===============================
set color_module_background = "#04090d";
set color_module_border = "#072d18";
set color_module_link = "#007a64";
set color_module_link_hover = "#095169";
set color_module_link_visited = "#096d65";
set color_module_text = "#79aba7";
set color_module_title = "#007a64";
set color_module_title_background = "#0c0636";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/mire
layerinfo type = "theme";
layerinfo name = "Mírë";
layerinfo redist_uniq = "crisped/mire";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#6b0938";
set color_page_link = "#ec6eba";
set color_page_link_hover = "#6ed1ec";
set color_page_link_visited = "#e5549f";
set color_page_subtitle = "#6ed1ec";
set color_page_text = "#13010a";
set color_page_title = "#ec6eba";
set color_footer_link = "#ec6eba";
set color_footer_link_hover = "#6ed1ec";
set color_footer_link_visited = "#e5549f";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#8e607d";
set color_entry_border = "#941954";
set color_entry_interaction_links = "#941954";
set color_entry_link = "#244246";
set color_entry_link_hover = "#80EBF8";
set color_entry_link_visited = "#941954";
set color_entry_text = "#13010a";
set color_entry_title = "#941954";
set color_entry_title_background = "#758e9e";
set color_comment_title = "#941954";
set color_comment_title_background = "#758e9e";
##===============================
## Module Colors
##===============================
set color_module_background = "#8e607d";
set color_module_border = "#941954";
set color_module_link = "#244246";
set color_module_link_hover = "#80EBF8";
set color_module_link_visited = "#941954";
set color_module_text = "#13010a";
set color_module_title = "#941954";
set color_module_title_background = "#758e9e";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/mistywood
layerinfo type = "theme";
layerinfo name = "Misty Wood";
layerinfo redist_uniq = "crisped/mistywood";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#a6a68c";
set color_page_link = "#595877";
set color_page_link_hover = "#898351";
set color_page_link_visited = "#6f7188";
set color_page_text = "#000";
set color_page_title = "#996";
set color_header_background = "#bfbfd9";
set color_footer_background = "#bfbfd9";
set color_footer_link = "#996";
set color_footer_link_hover = "#b3b3b3";
set color_footer_link_visited = "#828162";
set control_strip_bgcolor = "#b3b3b3";
set control_strip_bordercolor = "#996";
set control_strip_linkcolor = "#595877";
set control_strip_fgcolor = "#3c3d32";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#b3b3b3";
set color_entry_border = "#996";
set color_entry_link = "#595877";
set color_entry_link_hover = "#898351";
set color_entry_link_visited = "#6f7188";
set color_entry_text = "#3c3d32";
set color_entry_title = "#6f7188";
##===============================
## Module Colors
##===============================
set color_module_background = "#b3b3b3";
set color_module_border = "#996";
set color_module_link = "#595877";
set color_module_link_hover = "#898351";
set color_module_link_visited = "#6f7188";
set color_module_text = "#3c3d32";
#NEWLAYER: crisped/moonflower
layerinfo type = "theme";
layerinfo name = "Moonflower";
layerinfo redist_uniq = "crisped/moonflower";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#0a040f";
set color_page_link = "#5c65c0";
set color_page_link_hover = "#6f95ff";
set color_page_link_visited = "#486ebf";
set color_page_subtitle = "#6f95ff";
set color_page_text = "#a2bbff";
set color_page_title = "#5c65c0";
set color_footer_link = "#5c65c0";
set color_footer_link_hover = "#6f95ff";
set color_footer_link_visited = "#486ebf";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#1c0b2b";
set color_entry_border = "#130a20";
set color_entry_interaction_links = "#5c65c0";
set color_entry_link = "#5c65c0";
set color_entry_link_hover = "#6f95ff";
set color_entry_link_visited = "#486ebf";
set color_entry_text = "#a2bbff";
set color_entry_title = "#5c65c0";
set color_entry_title_background = "#301c41";
set color_comment_title = "#5c65c0";
set color_comment_title_background = "#301c41";
##===============================
## Module Colors
##===============================
set color_module_background = "#1c0b2b";
set color_module_border = "#130a20";
set color_module_link = "#5c65c0";
set color_module_link_hover = "#6f95ff";
set color_module_link_visited = "#486ebf";
set color_module_text = "#a2bbff";
set color_module_title = "#5c65c0";
set color_module_title_background = "#301c41";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/nenuvar
layerinfo type = "theme";
layerinfo name = "Nénuvar";
layerinfo redist_uniq = "crisped/nenuvar";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#b6d8c0";
set color_page_link = "#539b7d";
set color_page_link_hover = "#42846f";
set color_page_link_visited = "#3b7266";
set color_page_subtitle = "#3b7266";
set color_page_text = "#57675b";
set color_page_title = "#539b7d";
set color_header_background = "#b6d8c0";
set color_footer_background = "#b6d8c0";
set color_footer_link = "#539b7d";
set color_footer_link_hover = "#42846f";
set color_footer_link_visited = "#3b7266";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#c8d9bf";
set color_entry_border = "#ecdbbc";
set color_entry_interaction_links = "#3b7266";
set color_entry_link = "#539b7d";
set color_entry_link_hover = "#42846f";
set color_entry_link_visited = "#3b7266";
set color_entry_text = "#57675b";
set color_entry_title = "#3b7266";
set color_entry_title_background = "#dadabd";
set color_comment_title = "#3b7266";
set color_comment_title_background = "#dadabd";
##===============================
## Module Colors
##===============================
set color_module_background = "#c8d9bf";
set color_module_border = "#ecdbbc";
set color_module_link = "#539b7d";
set color_module_link_hover = "#42846f";
set color_module_link_visited = "#3b7266";
set color_module_text = "#57675b";
set color_module_title_background = "#dadabd";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/nightflowers
layerinfo type = "theme";
layerinfo name = "Night Flowers";
layerinfo redist_uniq = "crisped/nightflowers";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly & OldeAuntieRae", "url" => "http://www.colourlovers.com/pattern/3540461/Night_Flowers" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#1c002f";
set color_page_border = "#bac4e1";
set color_page_link = "#d7c1ff";
set color_page_link_visited = "#FFD1F0";
set color_page_subtitle = "#bac4e1";
set color_page_text = "#bac4e1";
set color_page_title = "#bac4e1";
set color_header_background = "#1c002f";
set color_footer_background = "#1c002f";
set color_footer_link = "#d7c1ff";
set color_footer_link_visited = "#FFD1F0";
set color_calendar_background = "#1c002f";
set color_calendar_link = "#d7c1ff";
set color_calendar_link_visited = "#FFD1F0";
set color_calendar_text = "#bac4e1";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#1c002f";
set color_entry_border = "#bac4e1";
set color_entry_interaction_links = "#d7c1ff";
set color_entry_interaction_links_visited = "#FFD1F0";
set color_entry_link = "#d7c1ff";
set color_entry_link_visited = "#FFD1F0";
set color_entry_text = "#bac4e1";
set color_entry_title = "#bac4e1";
set color_entry_title_background = "#1c002f";
set color_comment_title = "#bac4e1";
set color_comment_title_background = "#1c002f";
##===============================
## Module Colors
##===============================
set color_module_background = "#1c002f";
set color_module_border = "#bac4e1";
set color_module_link = "#d7c1ff";
set color_module_link_visited = "#FFD1F0";
set color_module_text = "#bac4e1";
set color_module_title = "#bac4e1";
set color_module_title_background = "#1c002f";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/nightflowers.png";
#NEWLAYER: crisped/ohwinter
layerinfo type = "theme";
layerinfo name = "Oh Winter";
layerinfo redist_uniq = "crisped/ohwinter";
layerinfo author_name = "timeasmymeasure";
set theme_authors = [ { "name" => "timeasmymeasure", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#e3d2dc";
set color_page_link = "#8983a4";
set color_page_link_hover = "#a198c7";
set color_page_subtitle = "#a198c7";
set color_page_text = "#554244";
set color_page_title = "#554244";
set color_footer_background = "#efdde8";
set color_footer_link = "#8983a4";
set control_strip_bgcolor = "#efdde8";
set control_strip_bordercolor = "#cfbfc9";
set control_strip_linkcolor = "#8983a4";
set control_strip_fgcolor = "#554244";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#554244";
set color_comment_title_background = "#eec5c4";
set color_entry_background = "#efdde8";
set color_entry_border = "#cfbfc9";
set color_entry_interaction_links = "#554244";
set color_entry_link = "#8983a4";
set color_entry_link_hover = "#a198c7";
set color_entry_text = "#554244";
set color_entry_title = "#554244";
set color_entry_title_background = "#eec5c4";
##===============================
## Module Colors
##===============================
set color_module_background = "#efdde8";
set color_module_border = "#cfbfc9";
set color_module_link = "#8983a4";
set color_module_link_hover = "#a198c7";
set color_module_text = "#554244";
set color_module_title = "#554244";
set color_module_title_background = "#eec5c4";
set color_calendar_background = "#cfbfc9";
set color_calendar_link = "#8983a4";
set color_calendar_text = "#554244";
#NEWLAYER: crisped/oloriel
layerinfo type = "theme";
layerinfo name = "Oloriel";
layerinfo redist_uniq = "crisped/oloriel";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#9da8d5";
set color_page_link = "#6672a5";
set color_page_link_hover = "#7f7bc4";
set color_page_link_visited = "#787bba";
set color_page_subtitle = "#ddd7d3";
set color_page_text = "#4d4d53";
set color_page_title = "#f2e7d2";
set color_footer_link = "#6672a5";
set color_footer_link_hover = "#7f7bc4";
set color_footer_link_visited = "#787bba";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#c7c7d3";
set color_entry_border = "#f2e7d2";
set color_entry_interaction_links = "#787bba";
set color_entry_link = "#6672a5";
set color_entry_link_hover = "#f2e7d2";
set color_entry_link_visited = "#787bba";
set color_entry_text = "#4d4d53";
set color_entry_title = "#787bba";
set color_entry_title_background = "#b2b8d4";
set color_comment_title = "#787bba";
set color_comment_title_background = "#b2b8d4";
##===============================
## Module Colors
##===============================
set color_module_background = "#c7c7d3";
set color_module_border = "#f2e7d2";
set color_module_link = "#6672a5";
set color_module_link_hover = "#f2e7d2";
set color_module_link_visited = "#787bba";
set color_module_text = "#4d4d53";
set color_module_title = "#787bba";
set color_module_title_background = "#b2b8d4";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/ombre
layerinfo type = "theme";
layerinfo name = "Ombre";
layerinfo redist_uniq = "crisped/ombre";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#b5e1d9";
set color_page_border = "#B1DCD3";
set color_page_link = "#b4603f";
set color_page_link_active = "#b4603f";
set color_page_link_hover = "#a43d3d";
set color_page_link_visited = "#784242";
set color_page_subtitle = "#333";
set color_page_text = "#111";
set color_page_title = "#333";
set color_header_background = "#ede9b0";
set color_footer_link = "#de794e";
set color_footer_link_active = "#de794e";
set color_footer_link_hover = "#a43d3d";
set color_footer_link_visited = "#784242";
set control_strip_bgcolor = "#f7f5f3";
set control_strip_bordercolor = "#ede7a7";
set control_strip_linkcolor = "#de794e";
set control_strip_fgcolor = "#111";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f7f5f3";
set color_entry_border = "#ede7a7";
set color_entry_interaction_links = "#a43d3d";
set color_entry_link = "#de794e";
set color_entry_link_active = "#de794e";
set color_entry_link_hover = "#a43d3d";
set color_entry_link_visited = "#784242";
set color_entry_text = "#111";
set color_entry_title = "#333";
set color_entry_title_background = "#f7f5cb";
set color_comment_title = "#333";
set color_comment_title_background = "#f7f5cb";
##===============================
## Module Colors
##===============================
set color_module_background = "#f7f5f3";
set color_module_border = "#ede7a7";
set color_module_link = "#de794e";
set color_module_link_active = "#de794e";
set color_module_link_hover = "#a43d3d";
set color_module_link_visited = "#784242";
set color_module_text = "#111";
set color_module_title = "#333";
set color_module_title_background = "#f7f5cb";
set color_calendar_background = "#f7f5cb";
set color_calendar_link = "#de794e";
set color_calendar_link_active = "#de794e";
set color_calendar_link_hover = "#a43d3d";
set color_calendar_link_visited = "#784242";
set color_calendar_text = "#111";
set color_footer_background = "#f7f5f3";
#NEWLAYER: crisped/orangelights
layerinfo type = "theme";
layerinfo name = "Orange Lights";
layerinfo redist_uniq = "crisped/orangelights";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#1a1a1a";
set color_page_border = "#242424";
set color_page_link = "#ffb44c";
set color_page_link_active = "#ffb44c";
set color_page_link_hover = "#ff9400";
set color_page_link_visited = "#EB8E17";
set color_page_subtitle = "#fdfdfd";
set color_page_text = "#fdfdfd";
set color_page_title = "#fdfdfd";
set color_header_background = "#242424";
set color_footer_background = "#242424";
set color_footer_link = "#ffb44c";
set color_footer_link_active = "#ffb44c";
set color_footer_link_hover = "#ff9400";
set color_footer_link_visited = "#EB8E17";
set control_strip_bgcolor = "#242424";
set control_strip_bordercolor = "#292929";
set control_strip_linkcolor = "#ffb44c";
set control_strip_fgcolor = "#fdfdfd";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#242424";
set color_entry_border = "#292929";
set color_entry_interaction_links = "#ff9400";
set color_entry_link = "#ffb44c";
set color_entry_link_active = "#ffb44c";
set color_entry_link_hover = "#ff9400";
set color_entry_link_visited = "#EB8E17";
set color_entry_text = "#fdfdfd";
set color_entry_title = "#fdfdfd";
set color_entry_title_background = "#292929";
set color_comment_title = "#fdfdfd";
set color_comment_title_background = "#292929";
##===============================
## Module Colors
##===============================
set color_module_background = "#242424";
set color_module_border = "#292929";
set color_module_link = "#ffb44c";
set color_module_link_active = "#ffb44c";
set color_module_link_hover = "#ff9400";
set color_module_link_visited = "#EB8E17";
set color_module_text = "#fdfdfd";
set color_module_title = "#fdfdfd";
set color_module_title_background = "#292929";
set color_calendar_background = "#292929";
set color_calendar_link = "#ffb44c";
set color_calendar_link_active = "#ffb44c";
set color_calendar_link_hover = "#ff9400";
set color_calendar_link_visited = "#EB8E17";
set color_calendar_text = "#fdfdfd";
#NEWLAYER: crisped/owlish
layerinfo type = "theme";
layerinfo name = "Owlish";
layerinfo redist_uniq = "crisped/owlish";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#5e460e";
set color_page_link = "#ecd0dc";
set color_page_link_hover = "#a9d4a3";
set color_page_link_visited = "#e7c07d";
set color_page_text = "#fbfae8";
set color_page_title = "#fbfae8";
set color_header_background = "#53460e";
set color_footer_background = "#53460e";
set color_footer_link = "#fbfae8";
set color_footer_link_hover = "#a9d4a3";
set color_footer_link_visited = "#e7c07d";
set control_strip_bgcolor = "#7a5c14";
set control_strip_bordercolor = "#53460e";
set control_strip_linkcolor = "#ecd0dc";
set control_strip_fgcolor = "#fbfae8";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#7a5c14";
set color_entry_border = "#53460e";
set color_entry_link = "#ecd0dc";
set color_entry_link_hover = "#a9d4a3";
set color_entry_link_visited = "#e7c07d";
set color_entry_text = "#fbfae8";
##===============================
## Module Colors
##===============================
set color_module_background = "#73490e";
set color_module_border = "#53460e";
set color_module_link = "#ecd0dc";
set color_module_link_hover = "#a9d4a3";
set color_module_link_visited = "#e7c07d";
set color_module_text = "#fbfae8";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
#NEWLAYER: crisped/pastelflowersonplum
layerinfo type = "theme";
layerinfo name = "Pastel Flowers on Plum";
layerinfo redist_uniq = "crisped/pastelflowersonplum";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly and thirdbreakfast", "url" => "http://www.colourlovers.com/pattern/3729836/Pastel_on_Plum" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#1e0026";
set color_page_border = "#1e0026";
set color_page_link = "#d9d4ff";
set color_page_link_visited = "#c7ffe6";
set color_page_subtitle = "#ffd4e7";
set color_page_text = "#ffd4e7";
set color_page_title = "#ffd4e7";
set color_header_background = "#1e0026";
set color_footer_background = "#1e0026";
set color_footer_link = "#d9d4ff";
set color_footer_link_visited = "#c7ffe6";
set color_calendar_background = "#1e0026";
set color_calendar_link = "#d9d4ff";
set color_calendar_text = "#ffd4e7";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#1e0026";
set color_entry_border = "#1e0026";
set color_entry_interaction_links = "#d9d4ff";
set color_entry_link = "#d9d4ff";
set color_entry_link_visited = "#c7ffe6";
set color_entry_text = "#ffd4e7";
set color_entry_title = "#ffd4e7";
set color_entry_title_background = "#1e0026";
set color_comment_title = "#ffd4e7";
set color_comment_title_background = "#1e0026";
##===============================
## Module Colors
##===============================
set color_module_background = "#1e0026";
set color_module_border = "#1e0026";
set color_module_link = "#d9d4ff";
set color_module_link_visited = "#c7ffe6";
set color_module_text = "#ffd4e7";
set color_module_title = "#d9d4ff";
set color_module_title_background = "#1e0026";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/pastelonplum.png";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet() { """
/* REMOVING ALL THE UPPERCASE */
h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/peekaboo
layerinfo type = "theme";
layerinfo name = "Peekaboo";
layerinfo redist_uniq = "crisped/peekaboo";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#4F364C";
set color_calendar_link = "#CB7BCD";
set color_calendar_link_hover = "#B1CF72";
set color_calendar_link_visited = "#BF7FC0";
set color_calendar_text = "#B9A1B9";
set color_footer_link = "#CB7BCD";
set color_footer_link_hover = "#B1CF72";
set color_footer_link_visited = "#BF7FC0";
set color_page_background = "#4F364C";
set color_page_link = "#CB7BCD";
set color_page_link_hover = "#B1CF72";
set color_page_link_visited = "#BF7FC0";
set color_page_subtitle = "#B1CF72";
set color_page_text = "#B9A1B9";
set color_page_title = "#CB7BCD";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#B1CF72";
set color_comment_title_background = "#6B6B6B";
set color_entry_background = "#5E405F";
set color_entry_border = "#8F9E6F";
set color_entry_link = "#CB7BCD";
set color_entry_link_hover = "#B1CF72";
set color_entry_link_visited = "#BF7FC0";
set color_entry_text = "#B9A1B9";
set color_entry_title = "#B1CF72";
set color_entry_title_background = "#6B6B6B";
##===============================
## Module Colors
##===============================
set color_module_background = "#5E405F";
set color_module_border = "#8F9E6F";
set color_module_link = "#CB7BCD";
set color_module_link_hover = "#B1CF72";
set color_module_link_visited = "#BF7FC0";
set color_module_text = "#B9A1B9";
set color_module_title = "#B1CF72";
set color_module_title_background = "#6B6B6B";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
function Page::print_theme_stylesheet() {
"""
/* Peekaboo
/* by Nornoriel
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/persephone
layerinfo type = "theme";
layerinfo name = "Persephone";
layerinfo redist_uniq = "crisped/persephone";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#0A0002";
set color_page_link = "#cf133f";
set color_page_link_hover = "#bd424a";
set color_page_link_visited = "#b00c40";
set color_page_subtitle = "#83001f";
set color_page_text = "#bd7e82";
set color_page_title = "#a80027";
set color_footer_link = "#cf133f";
set color_footer_link_hover = "#bd424a";
set color_footer_link_visited = "#b00c40";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#26030b";
set color_entry_border = "#83001f";
set color_entry_interaction_links = "#cf133f";
set color_entry_link = "#cf133f";
set color_entry_link_hover = "#bd424a";
set color_entry_link_visited = "#b00c40";
set color_entry_text = "#bd7e82";
set color_entry_title = "#cf133f";
set color_entry_title_background = "#38020c";
set color_comment_title = "#cf133f";
set color_comment_title_background = "#38020c";
##===============================
## Module Colors
##===============================
set color_module_background = "#410010";
set color_module_border = "#83001f";
set color_module_link = "#cf133f";
set color_module_link_hover = "#bd424a";
set color_module_link_visited = "#b00c40";
set color_module_text = "#bd7e82";
set color_module_title = "#cf133f";
set color_module_title_background = "#38020c";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/poppyfields
layerinfo type = "theme";
layerinfo name = "Poppy Fields";
layerinfo redist_uniq = "crisped/poppyfields";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#fdfbee";
set color_page_border = "#fdfbee";
set color_page_link = "#D62300";
set color_page_link_hover = "#ED4624";
set color_page_subtitle = "#301818";
set color_page_text = "#301818";
set color_page_title = "#D62300";
set color_footer_background = "#f7f7de";
set control_strip_bgcolor = "#f7f7de";
set control_strip_bordercolor = "#d8d8a8";
set control_strip_linkcolor = "#D62300";
set control_strip_fgcolor = "#301818";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f7f7de";
set color_entry_border = "#d8d8a8";
set color_entry_interaction_links = "#301818";
set color_entry_link = "#D62300";
set color_entry_link_hover = "#ED4624";
set color_entry_text = "#301818";
set color_entry_title = "#301818";
set color_entry_title_background = "#d8d8a8";
set color_comment_title = "#301818";
set color_comment_title_background = "#d8d8a8";
##===============================
## Module Colors
##===============================
set color_module_background = "#f7f7de";
set color_module_border = "#d8d8a8";
set color_module_title = "#301818";
set color_module_title_background = "#d8d8a8";
set color_calendar_background = "#d8d8a8";
#NEWLAYER: crisped/prized
layerinfo type = "theme";
layerinfo name = "Prized";
layerinfo redist_uniq = "crisped/prized";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#919191";
set color_page_border = "#d9d9d9";
set color_page_link = "#a60000";
set color_page_link_active = "#a60000";
set color_page_link_hover = "#5b1a81";
set color_page_link_visited = "#481463";
set color_page_subtitle = "#000";
set color_page_text = "#000";
set color_page_title = "#000";
set color_header_background = "#b4b4b4";
set color_footer_background = "#b4b4b4";
set color_footer_link = "#ed0b00";
set color_footer_link_active = "#ed0b00";
set color_footer_link_hover = "#5b1a81";
set color_footer_link_visited = "#481463";
set control_strip_bgcolor = "#fff";
set control_strip_bordercolor = "#b4b4b4";
set control_strip_linkcolor = "#ed0b00";
set control_strip_fgcolor = "#000";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fff";
set color_entry_border = "#b4b4b4";
set color_entry_interaction_links = "#7522aa";
set color_entry_link = "#ed0b00";
set color_entry_link_active = "#ed0b00";
set color_entry_link_hover = "#5b1a81";
set color_entry_link_visited = "#481463";
set color_entry_text = "#000";
set color_entry_title = "#000";
set color_entry_title_background = "#d7d7d7";
set color_comment_title = "#000";
set color_comment_title_background = "#d7d7d7";
##===============================
## Module Colors
##===============================
set color_module_background = "#fff";
set color_module_border = "#b4b4b4";
set color_module_link = "#ed0b00";
set color_module_link_active = "#ed0b00";
set color_module_link_hover = "#5b1a81";
set color_module_link_visited = "#481463";
set color_module_text = "#000";
set color_module_title = "#000";
set color_module_title_background = "#d7d7d7";
set color_calendar_background = "#d7d7d7";
set color_calendar_link = "#ed0b00";
set color_calendar_link_active = "#ed0b00";
set color_calendar_link_hover = "#5b1a81";
set color_calendar_link_visited = "#481463";
set color_calendar_text = "#000";
#NEWLAYER: crisped/purplesandgolds
layerinfo type = "theme";
layerinfo name = "Purples and Golds";
layerinfo redist_uniq = "crisped/purplesandgolds";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly & dazzlement", "url" => "http://www.colourlovers.com/pattern/4261922/Purples_and_Golds" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#740049";
set color_page_border = "#400f2d";
set color_page_link = "#da008a";
set color_page_link_visited = "#e6b700";
set color_page_subtitle = "#da008a";
set color_page_text = "#f0ed0d";
set color_page_title = "#f0ed0d";
set icons_page_sort = "keyword";
set color_header_background = "#740049";
set color_footer_background = "#740049";
set color_footer_link = "#f0ed0d";
set color_footer_link_visited = "#e6b700";
set color_calendar_background = "#740049";
set color_calendar_link = "#e6b700";
set color_calendar_link_visited = "#e6b700";
set color_calendar_text = "#f0ed0d";
set control_strip_bgcolor = "#740049";
set control_strip_bordercolor = "#400f2d";
set control_strip_fgcolor = "#f0ed0d";
set control_strip_linkcolor = "#da008a";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#740049";
set color_entry_border = "#400f2d";
set color_entry_interaction_links = "#da008a";
set color_entry_interaction_links_visited = "#e6b700";
set color_entry_link = "#da008a";
set color_entry_link_visited = "#e6b700";
set color_entry_text = "#f0ed0d";
set color_entry_title = "#f0ed0d";
set color_entry_title_background = "#400f2d";
set color_comment_title = "#da008a";
##===============================
## Module Colors
##===============================
set color_module_background = "#740049";
set color_module_border = "#400f2d";
set color_module_link = "#da008a";
set color_module_link_visited = "#e6b700";
set color_module_text = "#f0ed0d";
set color_module_title = "#e6b700";
set color_module_title_background = "#400f2d";
##===============================
## Images
##===============================
set image_background_entry_position = "top left";
set image_background_entry_repeat = "repeat";
set image_background_header_position = "top left";
set image_background_header_repeat = "repeat";
set image_background_module_position = "top left";
set image_background_module_repeat = "repeat";
set image_background_page_url = "crisped/purplesandgolds.png";
function Page::print_theme_stylesheet() { """
/* Purples and Golds
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* REMOVING ALL THE UPPERCASE */ h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }";
"""; }
#NEWLAYER: crisped/queries
layerinfo type = "theme";
layerinfo name = "Queries";
layerinfo redist_uniq = "crisped/queries";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#ebefda";
set color_page_link = "#8b6633";
set color_page_link_hover = "#eeb658";
set color_page_subtitle = "#392c20";
set color_page_text = "#392c20";
set color_page_title = "#705129";
set color_footer_background = "#fefee9";
set color_footer_link = "#8b6633";
set color_footer_link_hover = "#eeb658";
set control_strip_bgcolor = "#fefee9";
set control_strip_bordercolor = "#eeb658";
set control_strip_linkcolor = "#8b6633";
set control_strip_fgcolor = "#392c20";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fefee9";
set color_entry_border = "#eeb658";
set color_entry_interaction_links = "#705129";
set color_entry_link = "#8b6633";
set color_entry_link_hover = "#eeb658";
set color_entry_text = "#392c20";
set color_entry_title = "#705129";
set color_entry_title_background = "#e6dc9b";
set color_comment_title = "#705129";
set color_comment_title_background = "#e6dc9b";
##===============================
## Module Colors
##===============================
set color_module_background = "#fefee9";
set color_module_border = "#eeb658";
set color_module_link = "#8b6633";
set color_module_link_hover = "#eeb658";
set color_module_text = "#392c20";
set color_module_title = "#705129";
set color_module_title_background = "#e6dc9b";
set color_calendar_background = "#e6dc9b";
#NEWLAYER: crisped/rainyday
layerinfo type = "theme";
layerinfo name = "Rainy Day";
layerinfo redist_uniq = "crisped/rainyday";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#dead1c";
set color_page_border = "#dead1c";
set color_page_link = "#135c4f";
set color_page_link_active = "#135c4f";
set color_page_link_hover = "#3b8c53";
set color_page_link_visited = "#123e4a";
set color_page_subtitle = "#000";
set color_page_text = "#282828";
set color_page_title = "#000";
set color_header_background = "#e8bc53";
set color_footer_background = "#e8bc53";
set color_footer_link = "#135c4f";
set color_footer_link_active = "#135c4f";
set color_footer_link_hover = "#3b8c53";
set color_footer_link_visited = "#123e4a";
set control_strip_bgcolor = "#e8cb8d";
set control_strip_bordercolor = "#e8bc53";
set control_strip_linkcolor = "#135c4f";
set control_strip_fgcolor = "#282828";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#e8cb8d";
set color_entry_border = "#e8bc53";
set color_entry_interaction_links = "#656f17";
set color_entry_link = "#135c4f";
set color_entry_link_active = "#135c4f";
set color_entry_link_hover = "#3b8c53";
set color_entry_link_visited = "#123e4a";
set color_entry_text = "#282828";
set color_entry_title = "#000";
set color_entry_title_background = "#e8bc53";
set color_comment_title = "#000";
set color_comment_title_background = "#e8bc53";
##===============================
## Module Colors
##===============================
set color_module_background = "#e8cb8d";
set color_module_border = "#e8bc53";
set color_module_link = "#135c4f";
set color_module_link_active = "#135c4f";
set color_module_link_hover = "#3b8c53";
set color_module_link_visited = "#123e4a";
set color_module_text = "#282828";
set color_module_title = "#000";
set color_module_title_background = "#e8bc53";
set color_calendar_background = "#e8bc53";
set color_calendar_link = "#135c4f";
set color_calendar_link_active = "#135c4f";
set color_calendar_link_hover = "#3b8c53";
set color_calendar_link_visited = "#123e4a";
set color_calendar_text = "#282828";
#NEWLAYER: crisped/raspberrykiss
layerinfo type = "theme";
layerinfo name = "Raspberry Kiss";
layerinfo redist_uniq = "crisped/raspberrykiss";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#fdb7b8";
set color_page_link = "#d03f43";
set color_page_link_active = "#d03f43";
set color_page_link_hover = "#d0060b";
set color_page_link_visited = "#5A4D99";
set color_page_subtitle = "#060606";
set color_page_text = "#060606";
set color_page_title = "#060606";
set color_header_background = "#fddadb";
set color_footer_background = "#fddadb";
set color_footer_link = "#d03f43";
set color_footer_link_active = "#d03f43";
set color_footer_link_hover = "#d0060b";
set color_footer_link_visited = "#5A4D99";
set control_strip_bgcolor = "#fddadb";
set control_strip_bordercolor = "#fdc1c2";
set control_strip_linkcolor = "#d03f43";
set control_strip_fgcolor = "#060606";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fddadb";
set color_entry_border = "#fdc1c2";
set color_entry_interaction_links = "#d0060b";
set color_entry_link = "#d03f43";
set color_entry_link_active = "#d03f43";
set color_entry_link_hover = "#d0060b";
set color_entry_link_visited = "#5A4D99";
set color_entry_text = "#060606";
set color_entry_title = "#060606";
set color_entry_title_background = "#fdc1c2";
set color_comment_title = "#060606";
set color_comment_title_background = "#fdc1c2";
##===============================
## Module Colors
##===============================
set color_module_background = "#fddadb";
set color_module_border = "#fdc1c2";
set color_module_link = "#d03f43";
set color_module_link_active = "#d03f43";
set color_module_link_hover = "#d0060b";
set color_module_link_visited = "#5A4D99";
set color_module_text = "#060606";
set color_module_title = "#060606";
set color_module_title_background = "#fdc1c2";
set color_calendar_background = "#fdc1c2";
set color_calendar_link = "#d03f43";
set color_calendar_link_active = "#d03f43";
set color_calendar_link_hover = "#d0060b";
set color_calendar_link_visited = "#5A4D99";
set color_calendar_text = "#060606";
#NEWLAYER: crisped/realization
layerinfo type = "theme";
layerinfo name = "Realization";
layerinfo redist_uniq = "crisped/realization";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#FAFAC2";
set color_page_border = "#FAFAC2";
set color_page_link = "#AA0400";
set color_page_link_hover = "#89896B";
set color_page_subtitle = "#301818";
set color_page_text = "#301818";
set color_page_title = "#AA0400";
set color_footer_background = "#FFFFE2";
set control_strip_bgcolor = "#FFFFE2";
set control_strip_bordercolor = "#D8D8A8";
set control_strip_linkcolor = "#AA0400";
set control_strip_fgcolor = "#301818";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#FFFFE2";
set color_entry_border = "#D8D8A8";
set color_entry_interaction_links = "#301818";
set color_entry_link = "#AA0400";
set color_entry_link_hover = "#89896B";
set color_entry_text = "#301818";
set color_entry_title = "#301818";
set color_entry_title_background = "#D8D8A8";
set color_comment_title = "#301818";
set color_comment_title_background = "#D8D8A8";
##===============================
## Module Colors
##===============================
set color_module_background = "#FFFFE2";
set color_module_border = "#D8D8A8";
set color_module_title = "#301818";
set color_module_title_background = "#D8D8A8";
set color_calendar_background = "#D8D8A8";
#NEWLAYER: crisped/rosewood
layerinfo type = "theme";
layerinfo name = "Rosewood";
layerinfo redist_uniq = "crisped/rosewood";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by KittnChopz and huege", "url" => "http://www.colourlovers.com/pattern/2329014/rosewood" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#ce8080";
set color_page_border = "#DEA1A1";
set color_page_link = "#facfce";
set color_page_link_visited = "#a397d5";
set color_page_title = "#facfce";
set color_header_background = "#ce8080";
set color_footer_background = "#ce8080";
set color_footer_link = "#facfce";
set color_footer_link_visited = "#a397d5";
set color_calendar_background = "#ce8080";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#ce8080";
set color_entry_border = "#DEA1A1";
set color_entry_link = "#facfce";
set color_entry_link_visited = "#a397d5";
set color_entry_title_background = "#ce8080";
set color_comment_title_background = "#ce8080";
##===============================
## Module Colors
##===============================
set color_module_background = "#ce8080";
set color_module_border = "#DEA1A1";
set color_module_link = "#facfce";
set color_module_link_visited = "#a397d5";
set color_module_text = "#352123";
set color_module_title_background = "#ce8080";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/rosewood.png";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet() { """
/* REMOVING ALL THE UPPERCASE */
h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/sejour
layerinfo type = "theme";
layerinfo name = "Séjour";
layerinfo redist_uniq = "crisped/sejour";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#c8d5a7";
set color_page_border = "#c8d5a7";
set color_page_link = "#556342";
set color_page_link_active = "#556342";
set color_page_link_hover = "#425163";
set color_page_link_visited = "#504263";
set color_page_subtitle = "#161616";
set color_page_text = "#161616";
set color_page_title = "#161616";
set color_header_background = "#e4f0c5";
set color_footer_background = "#f6f9ef";
set color_footer_link = "#556342";
set color_footer_link_active = "#556342";
set color_footer_link_hover = "#425163";
set color_footer_link_visited = "#504263";
set control_strip_bgcolor = "#f6f9ef";
set control_strip_bordercolor = "#d1dfae";
set control_strip_linkcolor = "#556342";
set control_strip_fgcolor = "#161616";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f6f9ef";
set color_entry_border = "#d1dfae";
set color_entry_interaction_links = "#425163";
set color_entry_link = "#556342";
set color_entry_link_active = "#556342";
set color_entry_link_hover = "#425163";
set color_entry_link_visited = "#504263";
set color_entry_text = "#161616";
set color_entry_title = "#161616";
set color_entry_title_background = "#e4f0c5";
set color_comment_title = "#161616";
set color_comment_title_background = "#e4f0c5";
##===============================
## Module Colors
##===============================
set color_module_background = "#f6f9ef";
set color_module_border = "#d1dfae";
set color_module_link = "#556342";
set color_module_link_active = "#556342";
set color_module_link_hover = "#425163";
set color_module_link_visited = "#504263";
set color_module_text = "#161616";
set color_module_title = "#161616";
set color_module_title_background = "#e4f0c5";
set color_calendar_background = "#d1dfae";
set color_calendar_link = "#556342";
set color_calendar_link_active = "#556342";
set color_calendar_link_hover = "#425163";
set color_calendar_link_visited = "#504263";
set color_calendar_text = "#161616";
#NEWLAYER: crisped/sagittaluminis
layerinfo type = "theme";
layerinfo name = "Sagitta Luminis";
layerinfo redist_uniq = "crisped/sagittaluminis";
layerinfo author_name = "yaysunshine";
set theme_authors = [ { "name" => "yaysunshine", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#fdbdd5";
set color_calendar_link = "#f286a6";
set color_calendar_link_active = "#f286a6";
set color_calendar_link_hover = "#6b1b38";
set color_calendar_link_visited = "#f286a6";
set color_calendar_text = "#4F464B";
set color_footer_background = "#fceed3";
set color_footer_link = "#f286a6";
set color_footer_link_active = "#f286a6";
set color_footer_link_hover = "#6b1b38";
set color_footer_link_visited = "#f286a6";
set color_header_background = "#fceed3";
set color_page_background = "#fceed3";
set color_page_link = "#f286a6";
set color_page_link_active = "#f286a6";
set color_page_link_hover = "#6b1b38";
set color_page_link_visited = "#f286a6";
set color_page_subtitle = "#f9a7e1";
set color_page_text = "#4F464B";
set color_page_title = "#4F464B";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#4F464B";
set color_comment_title_background = "#fdbdd5";
set color_entry_background = "#ffd7ec";
set color_entry_border = "#fdbdd5";
set color_entry_interaction_links = "#f286a6";
set color_entry_link = "#f286a6";
set color_entry_link_active = "#f286a6";
set color_entry_link_hover = "#6b1b38";
set color_entry_link_visited = "#f286a6";
set color_entry_text = "#4F464B";
set color_entry_title = "#4F464B";
set color_entry_title_background = "#fdbdd5";
##===============================
## Module Colors
##===============================
set color_module_background = "#ffd7ec";
set color_module_border = "#fdbdd5";
set color_module_link = "#f286a6";
set color_module_link_active = "#f286a6";
set color_module_link_hover = "#6b1b38";
set color_module_link_visited = "#f286a6";
set color_module_text = "#4F464B";
set color_module_title = "#4F464B";
set color_module_title_background = "#fdbdd5";
#NEWLAYER: crisped/sanddunes
layerinfo type = "theme";
layerinfo name = "Sand Dunes";
layerinfo redist_uniq = "crisped/sanddunes";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#ebd7af";
set color_page_link = "#716793";
set color_page_link_active = "#333";
set color_page_link_hover = "#333";
set color_page_link_visited = "#577f81";
set color_page_text = "#555";
set color_page_title = "#577f81";
set color_page_subtitle = "#555";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fdefd1";
set color_entry_border = "#716793";
set color_entry_link = "#716793";
set color_entry_link_active = "#333";
set color_entry_link_hover = "#333";
set color_entry_link_visited = "#577f81";
set color_entry_text = "#555";
set color_entry_title = "#555";
set color_entry_title_background = "#ebd7af";
set color_entry_interaction_links = "#716793";
set color_comment_title = "#555";
##===============================
## Module Colors
##===============================
set color_module_background = "#fdefd1";
set color_module_border = "#ebd7af";
set color_module_link = "#716793";
set color_module_link_active = "#333";
set color_module_link_hover = "#333";
set color_module_link_visited = "#577f81";
set color_module_title = "#716793";
set color_module_title_background = "#ebd7af";
set color_calendar_background = "#d5be90";
set color_calendar_text = "#555";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_module_title;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/seatheflowers
layerinfo type = "theme";
layerinfo name = "Sea the Flowers";
layerinfo redist_uniq = "crisped/seatheflowers";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly & OldeAuntieRae", "url" => "http://www.colourlovers.com/pattern/4348429/Sea_the_Flowers" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#e9fffc";
set color_page_border = "#9dbfbb";
set color_page_link = "#61948e";
set color_page_link_visited = "#9dbfbb";
set color_page_subtitle = "#9dbfbb";
set color_page_text = "#385753";
set color_page_title = "#385753";
set color_header_background = "#e9fffc";
set color_footer_background = "#e9fffc";
set color_footer_link = "#61948e";
set color_footer_link_visited = "#9dbfbb";
set color_calendar_background = "#e9fffc";
set color_calendar_link = "#61948e";
set color_calendar_link_visited = "#9dbfbb";
set color_calendar_text = "#385753";
set control_strip_bgcolor = "#E9FFFC";
set control_strip_bordercolor = "#91aeba";
set control_strip_fgcolor = "#385753";
set control_strip_linkcolor = "#61948e";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#e9fffc";
set color_entry_border = "#9dbfbb";
set color_entry_interaction_links = "#61948e";
set color_entry_interaction_links_visited = "#9dbfbb";
set color_entry_link = "#61948e";
set color_entry_link_visited = "#9dbfbb";
set color_entry_text = "#385753";
set color_entry_title = "#385753";
set color_entry_title_background = "#61948e";
set color_comment_title = "#385753";
set color_comment_title_background = "#e9fffc";
##===============================
## Module Colors
##===============================
set color_module_background = "#e9fffc";
set color_module_border = "#9dbfbb";
set color_module_link = "#61948e";
set color_module_link_visited = "#9dbfbb";
set color_module_text = "#385753";
set color_module_title = "#385753";
set color_module_title_background = "#61948e";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/seatheflowers.png";
function Page::print_theme_stylesheet() {
"""
/* Sea the Flowers
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* REMOVING ALL THE UPPERCASE */ h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }";
"""; }
#NEWLAYER: crisped/silentnight
layerinfo type = "theme";
layerinfo name = "Silent Night";
layerinfo redist_uniq = "crisped/silentnight";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#070719";
set color_page_link = "#a29bff";
set color_page_link_hover = "#7785ea";
set color_page_link_visited = "#8c89f4";
set color_page_subtitle = "#8c89f4";
set color_page_text = "#dde2fc";
set color_page_title = "#a29bff";
set color_footer_link = "#a29bff";
set color_footer_link_hover = "#7785ea";
set color_footer_link_visited = "#8c89f4";
set color_calendar_background = "#0a0c28";
set color_calendar_link = "#a29bff";
set color_calendar_link_hover = "#7785ea";
set color_calendar_link_visited = "#8c89f4";
set color_calendar_text = "#dde2fc";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#0e0e2f";
set color_entry_border = "#2d0f49";
set color_entry_interaction_links = "#a29bff";
set color_entry_link = "#a29bff";
set color_entry_link_hover = "#7785ea";
set color_entry_link_visited = "#8c89f4";
set color_entry_text = "#dde2fc";
set color_entry_title = "#a29bff";
set color_entry_title_background = "#2d0f49";
set color_comment_title = "#8c89f4";
set color_comment_title_background = "#0a0c28";
##===============================
## Module Colors
##===============================
set color_module_background = "#0e0e2f";
set color_module_border = "#2d0f49";
set color_module_link = "#a29bff";
set color_module_link_hover = "#7785ea";
set color_module_link_visited = "#8c89f4";
set color_module_text = "#dde2fc";
set color_module_title = "#8c89f4";
set color_module_title_background = "#2d0f49";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
function Page::print_theme_stylesheet() {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/simpleterminal
layerinfo type = "theme";
layerinfo name = "Simple Terminal";
layerinfo redist_uniq = "crisped/simpleterminal";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#1a1a1a";
set color_page_border = "#292929";
set color_page_link = "#09ff15";
set color_page_link_active = "#09ff15";
set color_page_link_hover = "#ffcf69";
set color_page_link_visited = "#ffbf27";
set color_page_subtitle = "#fdfdfd";
set color_page_text = "#fdfdfd";
set color_page_title = "#fdfdfd";
set color_header_background = "#292929";
set color_footer_background = "#242424";
set color_footer_link = "#09ff15";
set color_footer_link_active = "#09ff15";
set color_footer_link_hover = "#ffcf69";
set color_footer_link_visited = "#ffbf27";
set control_strip_bgcolor = "#242424";
set control_strip_bordercolor = "#292929";
set control_strip_linkcolor = "#09ff15";
set control_strip_fgcolor = "#fdfdfd";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#242424";
set color_entry_border = "#292929";
set color_entry_interaction_links = "#ffcf69";
set color_entry_link = "#09ff15";
set color_entry_link_active = "#09ff15";
set color_entry_link_hover = "#ffcf69";
set color_entry_link_visited = "#ffbf27";
set color_entry_text = "#fdfdfd";
set color_entry_title = "#fdfdfd";
set color_entry_title_background = "#292929";
set color_comment_title = "#fdfdfd";
set color_comment_title_background = "#292929";
##===============================
## Module Colors
##===============================
set color_module_background = "#242424";
set color_module_border = "#292929";
set color_module_link = "#09ff15";
set color_module_link_active = "#09ff15";
set color_module_link_hover = "#ffcf69";
set color_module_link_visited = "#ffbf27";
set color_module_text = "#fdfdfd";
set color_module_title = "#fdfdfd";
set color_module_title_background = "#292929";
set color_calendar_background = "#292929";
set color_calendar_link = "#09ff15";
set color_calendar_link_active = "#09ff15";
set color_calendar_link_hover = "#ffcf69";
set color_calendar_link_visited = "#ffbf27";
set color_calendar_text = "#fdfdfd";
##===============================
## Fonts
##===============================
set font_base = "'Courier New'";
set font_comment_title = "'Courier New'";
set font_comment_title_units = "em";
set font_entry_title = "'Courier New'";
set font_journal_subtitle = "'Courier New'";
set font_journal_subtitle_size = "1.5";
set font_journal_title = "'Courier New'";
set font_journal_title_size = "2";
set font_module_heading = "'Courier New'";
set font_module_text = "'Courier New'";
set font_module_text_units = "em";
#NEWLAYER: crisped/skygarden
layerinfo type = "theme";
layerinfo name = "Sky Garden";
layerinfo redist_uniq = "crisped/skygarden";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by ereseigh and OldeAuntieRae", "url" => "http://www.colourlovers.com/pattern/2474878/Petunia_Garden" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#3a3150";
set color_page_link = "#b9c8b9";
set color_page_link_visited = "#788994";
set color_page_subtitle = "#f3e9c5";
set color_page_text = "#f3e9c5";
set color_page_title = "#f3e9c5";
set color_header_background = "#3a3150";
set color_footer_link = "#f3e9c5";
set color_footer_link_visited = "#788994";
set color_calendar_background = "#3a3150";
set color_calendar_link = "#b9c8b9";
set color_calendar_link_visited = "#788994";
set color_calendar_text = "#f3e9c5";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#3a3150";
set color_entry_border = "#504963";
set color_entry_interaction_links = "#b9c8b9";
set color_entry_link = "#b9c8b9";
set color_entry_link_visited = "#788994";
set color_entry_text = "#f3e9c5";
set color_entry_title = "#f3e9c5";
set color_entry_title_background = "#3a3150";
set color_comment_title = "#f3e9c5";
set color_comment_title_background = "#3a3150";
##===============================
## Module Colors
##===============================
set color_module_background = "#3a3150";
set color_module_border = "#504963";
set color_module_link = "#b9c8b9";
set color_module_link_visited = "#788994";
set color_module_text = "#f3e9c5";
set color_module_title = "#f3e9c5";
set color_module_title_background = "#3a3150";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/skygarden.png";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet() { """
/* REMOVING ALL THE UPPERCASE */
h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/softestflowers
layerinfo type = "theme";
layerinfo name = "Softest Flowers";
layerinfo redist_uniq = "crisped/softestflowers";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly & ArrayOfLily", "url" => "http://www.colourlovers.com/pattern/4329289/Softest_Flowers" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#3e1817";
set color_page_border = "#dee4be";
set color_page_link = "#bab192";
set color_page_link_visited = "#928f5c";
set color_page_subtitle = "#dee4be";
set color_page_text = "#dee4be";
set color_page_title = "#dee4be";
set color_footer_background = "#3e1817";
set color_footer_link = "#bab192";
set color_footer_link_visited = "#928f5c";
set color_calendar_background = "#3e1817";
set color_calendar_link = "#bab192";
set color_calendar_link_visited = "#928f5c";
set color_calendar_text = "#dee4be";
set control_strip_bgcolor = "#3e1817";
set control_strip_bordercolor = "#dee4be";
set control_strip_fgcolor = "#dee4be";
set control_strip_linkcolor = "#bab192";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#3e1817";
set color_entry_border = "#dee4be";
set color_entry_interaction_links = "#bab192";
set color_entry_interaction_links_visited = "#928f5c";
set color_entry_link = "#bab192";
set color_entry_link_visited = "#928f5c";
set color_entry_text = "#dee4be";
set color_entry_title = "#dee4be";
set color_entry_title_background = "#76404e";
set color_comment_title = "#dee4be";
set color_comment_title_background = "#76404e";
##===============================
## Module Colors
##===============================
set color_module_background = "#3e1817";
set color_module_border = "#dee4be";
set color_module_link = "#bab192";
set color_module_link_visited = "#928f5c";
set color_module_text = "#dee4be";
set color_module_title = "#dee4be";
set color_module_title_background = "#76404e";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/softestflowers.png";
function Page::print_theme_stylesheet() {
"""
/* Softest Flowers
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* REMOVING ALL THE UPPERCASE */ h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/softoliveflowers
layerinfo type = "theme";
layerinfo name = "Soft Olive Flowers";
layerinfo redist_uniq = "crisped/softoliveflowers";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by ArrayOfLily", "url" => "http://www.colourlovers.com/pattern/4277265/x" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#23291F";
set color_page_border = "#E3E197";
set color_page_link = "#C3CAA0";
set color_page_link_visited = "#A79F8A";
set color_page_subtitle = "#E3E197";
set color_page_text = "#E3E197";
set color_page_title = "#E3E197";
set color_footer_background = "#23291F";
set color_footer_link = "#C3CAA0";
set color_footer_link_visited = "#A79F8A";
set color_calendar_background = "#23291F";
set color_calendar_link = "#C3CAA0";
set color_calendar_link_visited = "#A79F8A";
set color_calendar_text = "#E3E197";
set control_strip_bgcolor = "#23291F";
set control_strip_bordercolor = "#E3E197";
set control_strip_fgcolor = "#E3E197";
set control_strip_linkcolor = "#C3CAA0";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#23291F";
set color_entry_border = "#A79F8A";
set color_entry_interaction_links = "#C3CAA0";
set color_entry_link = "#C3CAA0";
set color_entry_link_visited = "#A79F8A";
set color_entry_text = "#E3E197";
set color_entry_title = "#E3E197";
set color_entry_title_background = "#E3E197";
set color_comment_title = "#5E635D";
set color_comment_title_background = "#23291F";
##===============================
## Module Colors
##===============================
set color_module_background = "#23291F";
set color_module_border = "#E3E197";
set color_module_link = "#C3CAA0";
set color_module_link_visited = "#A79F8A";
set color_module_text = "#E3E197";
set color_module_title = "#E3E197";
set color_module_title_background = "#E3E197";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/softoliveflowers.png";
function Page::print_theme_stylesheet() {
"""
/* Soft Olive Flowers
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* REMOVING ALL THE UPPERCASE */ h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/solyluna
layerinfo type = "theme";
layerinfo name = "Sol y Luna";
layerinfo redist_uniq = "crisped/solyluna";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#38706e";
set color_page_link = "#ff0";
set color_page_link_active = "#ff0";
set color_page_link_hover = "#fffb91";
set color_page_link_visited = "#CBFF00";
set color_page_subtitle = "#fbfaee";
set color_page_text = "#fbfaee";
set color_page_title = "#fbfaee";
set color_header_background = "#3d7a79";
set color_footer_background = "#3d7a79";
set color_footer_link = "#ff0";
set color_footer_link_active = "#ff0";
set color_footer_link_hover = "#fffb91";
set color_footer_link_visited = "#CBFF00";
set control_strip_bgcolor = "#3d7a79";
set control_strip_bordercolor = "#428481";
set control_strip_linkcolor = "#ff0";
set control_strip_fgcolor = "#fbfaee";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#3d7a79";
set color_entry_border = "#428481";
set color_entry_interaction_links = "#ff0";
set color_entry_link = "#ff0";
set color_entry_link_active = "#ff0";
set color_entry_link_hover = "#fffb91";
set color_entry_link_visited = "#CBFF00";
set color_entry_text = "#fbfaee";
set color_entry_title = "#fbfaee";
set color_entry_title_background = "#428481";
set color_comment_title = "#fbfaee";
set color_comment_title_background = "#428481";
##===============================
## Module Colors
##===============================
set color_module_background = "#3d7a79";
set color_module_border = "#428481";
set color_module_link = "#ff0";
set color_module_link_active = "#ff0";
set color_module_link_hover = "#fffb91";
set color_module_link_visited = "#CBFF00";
set color_module_text = "#fbfaee";
set color_module_title = "#fbfaee";
set color_module_title_background = "#428481";
set color_calendar_background = "#428481";
set color_calendar_link = "#ff0";
set color_calendar_link_active = "#ff0";
set color_calendar_link_hover = "#fffb91";
set color_calendar_link_visited = "#CBFF00";
set color_calendar_text = "#fbfaee";
#NEWLAYER: crisped/speckles
layerinfo type = "theme";
layerinfo name = "Speckles";
layerinfo redist_uniq = "crisped/speckles";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by thirdbreakfast", "url" => "http://www.colourlovers.com/pattern/1359171/Speckles" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#25064a";
set color_page_border = "#eaadde";
set color_page_link = "#eaadde";
set color_page_link_visited = "#31e2ff";
set color_page_subtitle = "#eaadde";
set color_page_text = "#fff167";
set color_page_title = "#fff167";
set color_header_background = "#25064a";
set color_footer_background = "#25064a";
set color_footer_link = "#eaadde";
set color_footer_link_visited = "#31e2ff";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#25064a";
set color_entry_border = "#eaadde";
set color_entry_interaction_links = "#eaadde";
set color_entry_link = "#eaadde";
set color_entry_link_visited = "#31e2ff";
set color_entry_text = "#fff167";
set color_entry_title = "#eaadde";
set color_entry_title_background = "#25064a";
set color_comment_title = "#eaadde";
set color_comment_title_background = "#25064a";
##===============================
## Module Colors
##===============================
set color_module_background = "#25064a";
set color_module_border = "#eaadde";
set color_module_link = "#eaadde";
set color_module_link_visited = "#31e2ff";
set color_module_text = "#fff167";
set color_module_title = "#eaadde";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/speckles.png";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet() { """
/* REMOVING ALL THE UPPERCASE */
h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/springtimeflowers
layerinfo type = "theme";
layerinfo name = "Springtime Flowers";
layerinfo redist_uniq = "crisped/springtimeflowers";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly & OldeAuntieRae", "url" => "http://www.colourlovers.com/pattern/4348415/Springtime_Flowers" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#edf4c3";
set color_page_border = "#000";
set color_page_link = "#909b35";
set color_page_link_visited = "#bebe36";
set color_page_subtitle = "#76ab38";
set color_page_text = "#608c2e";
set color_page_title = "#608c2e";
set color_header_background = "#edf4c3";
set color_footer_background = "#edf4c3";
set color_footer_link = "#909b35";
set color_footer_link_visited = "#bebe36";
set color_calendar_background = "#edf4c3";
set color_calendar_link = "#909b35";
set color_calendar_link_visited = "#bebe36";
set color_calendar_text = "#608c2e";
set control_strip_bgcolor = "#edf4c3";
set control_strip_bordercolor = "#000";
set control_strip_fgcolor = "#608c2e";
set control_strip_linkcolor = "#909b35";
set custom_control_strip_colors = "on_gradient";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#edf4c3";
set color_entry_border = "#000";
set color_entry_interaction_links = "#909b35";
set color_entry_interaction_links_visited = "#bebe36";
set color_entry_link = "#909b35";
set color_entry_link_visited = "#bebe36";
set color_entry_text = "#608c2e";
set color_entry_title = "#608c2e";
set color_entry_title_background = "#c2e09c";
set color_comment_title = "#608c2e";
set color_comment_title_background = "#edf4c3";
##===============================
## Module Colors
##===============================
set color_module_background = "#edf4c3";
set color_module_border = "#608c2e";
set color_module_link = "#909b35";
set color_module_link_visited = "#bebe36";
set color_module_text = "#608c2e";
set color_module_title = "#608c2e";
set color_module_title_background = "#c2e09c";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/springtimeflowers.png";
function Page::print_theme_stylesheet() {
"""
/* Springtime Flowers
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* REMOVING ALL THE UPPERCASE */ h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/summersunset
layerinfo type = "theme";
layerinfo name = "Summer Sunset";
layerinfo redist_uniq = "crisped/summersunset";
layerinfo author_name = "timeasmymeasure";
set theme_authors = [ { "name" => "timeasmymeasure", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#554c5c";
set color_page_link = "#ecbf71";
set color_page_link_hover = "#251344";
set color_page_subtitle = "#ecbf71";
set color_page_text = "#201916";
set color_page_title = "#f7864a";
set color_footer_background = "#ecbf71";
set color_footer_link = "#662f2c";
set color_footer_link_hover = "#251344";
set control_strip_bgcolor = "#ecbf71";
set control_strip_bordercolor = "#72322f";
set control_strip_linkcolor = "#662f2c";
set control_strip_fgcolor = "#201916";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#251344";
set color_comment_title_background = "#d64731";
set color_entry_background = "#ecbf71";
set color_entry_border = "#72322f";
set color_entry_interaction_links = "#251344";
set color_entry_link = "#662f2c";
set color_entry_link_hover = "#251344";
set color_entry_text = "#201916";
set color_entry_title = "#251344";
set color_entry_title_background = "#d64731";
##===============================
## Module Colors
##===============================
set color_module_background = "#ecbf71";
set color_module_border = "#72322f";
set color_module_link = "#662f2c";
set color_module_link_hover = "#251344";
set color_module_text = "#201916";
set color_module_title = "#251344";
set color_module_title_background = "#d64731";
set color_calendar_link = "#251344";
set color_calendar_text = "#201916";
#NEWLAYER: crisped/sunburnt
layerinfo type = "theme";
layerinfo name = "Sunburnt";
layerinfo redist_uniq = "crisped/sunburnt";
layerinfo author_name = "yaysunshine";
set theme_authors = [ { "name" => "yaysunshine", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#d15732";
set color_calendar_link = "#bb003d";
set color_calendar_link_active = "#bb003d";
set color_calendar_link_hover = "#9c0033";
set color_calendar_link_visited = "#bb003d";
set color_calendar_text = "#503f36";
set color_footer_background = "#cab002";
set color_footer_link = "#bb003d";
set color_footer_link_active = "#bb003d";
set color_footer_link_hover = "#9c0033";
set color_footer_link_visited = "#bb003d";
set color_header_background = "#cab002";
set color_page_background = "#cab002";
set color_page_link = "#bb003d";
set color_page_link_active = "#bb003d";
set color_page_link_hover = "#9c0033";
set color_page_link_visited = "#bb003d";
set color_page_subtitle = "#d70046";
set color_page_text = "#503f36";
set color_page_title = "#d15732";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#503f36";
set color_comment_title_background = "#d15732";
set color_entry_background = "#cc8131";
set color_entry_border = "#d15732";
set color_entry_interaction_links = "#bb003d";
set color_entry_link = "#bb003d";
set color_entry_link_active = "#bb003d";
set color_entry_link_hover = "#9c0033";
set color_entry_link_visited = "#bb003d";
set color_entry_text = "#503f36";
set color_entry_title = "#503f36";
set color_entry_title_background = "#d15732";
##===============================
## Module Colors
##===============================
set color_module_background = "#cc8131";
set color_module_border = "#d15732";
set color_module_link = "#bb003d";
set color_module_link_active = "#bb003d";
set color_module_link_hover = "#9c0033";
set color_module_link_visited = "#bb003d";
set color_module_text = "#503f36";
set color_module_title = "#503f36";
set color_module_title_background = "#d15732";
#NEWLAYER: crisped/sweetberrygolds
layerinfo type = "theme";
layerinfo name = "Sweet BerryGolds";
layerinfo redist_uniq = "crisped/sweetberrygolds";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#7D5E61";
set color_page_border = "#7D5E61";
set color_page_link = "#edb818";
set color_page_link_hover = "#FFCB2D";
set color_page_subtitle = "#3b1a2c";
set color_page_text = "#BD989E";
set color_page_title = "#FDC007";
set color_footer_background = "#562a35";
set control_strip_bgcolor = "#562a35";
set control_strip_bordercolor = "#3b1a2c";
set control_strip_linkcolor = "#edb818";
set control_strip_fgcolor = "#BD989E";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#562a35";
set color_entry_border = "#3b1a2c";
set color_entry_interaction_links = "#BD989E";
set color_entry_link = "#edb818";
set color_entry_link_hover = "#FFCB2D";
set color_entry_text = "#BD989E";
set color_entry_title = "#BD989E";
set color_entry_title_background = "#3b1a2c";
set color_comment_title = "#BD989E";
set color_comment_title_background = "#3b1a2c";
##===============================
## Module Colors
##===============================
set color_module_background = "#562a35";
set color_module_border = "#3b1a2c";
set color_module_title = "#BD989E";
set color_module_title_background = "#3b1a2c";
set color_calendar_background = "#3b1a2c";
#NEWLAYER: crisped/timeless
layerinfo type = "theme";
layerinfo name = "Timeless";
layerinfo redist_uniq = "crisped/timeless";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#170d01";
set color_calendar_link = "#82b274";
set color_calendar_link_hover = "#a8eb9d";
set color_calendar_link_visited = "#98c37b";
set color_calendar_text = "#777060";
set color_footer_link = "#82b274";
set color_footer_link_hover = "#a8eb9d";
set color_footer_link_visited = "#98c37b";
set color_page_background = "#170d01";
set color_page_link = "#82b274";
set color_page_link_hover = "#a8eb9d";
set color_page_link_visited = "#98c37b";
set color_page_subtitle = "#5d6153";
set color_page_text = "#777060";
set color_page_title = "#8f2468";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#98c37b";
set color_comment_title_background = "#3b0f2a";
set color_entry_background = "#3f283a";
set color_entry_border = "#5d6153";
set color_entry_interaction_links = "#98c37b";
set color_entry_link = "#82b274";
set color_entry_link_hover = "#a8eb9d";
set color_entry_link_visited = "#98c37b";
set color_entry_text = "#777060";
set color_entry_title = "#98c37b";
set color_entry_title_background = "#3b0f2a";
##===============================
## Module Colors
##===============================
set color_module_background = "#3f283a";
set color_module_border = "#5d6153";
set color_module_link = "#82b274";
set color_module_link_hover = "#a8eb9d";
set color_module_link_visited = "#98c37b";
set color_module_text = "#777060";
set color_module_title = "#98c37b";
set color_module_title_background = "#3b0f2a";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
function Page::print_theme_stylesheet() {
"""
/* Timeless
/* by Nornoriel
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/touch
layerinfo type = "theme";
layerinfo name = "Touch";
layerinfo redist_uniq = "crisped/touch";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#4d4646";
set color_page_link = "#ede6e7";
set color_page_link_hover = "#E0A4A4";
set color_page_link_visited = "#f7e0df";
set color_page_text = "#1e1415";
set color_page_title = "#f7e0df";
set color_header_background = "#786767";
set color_footer_background = "#786767";
set color_footer_link = "#ede6e7";
set color_footer_link_hover = "#E0A4A4";
set color_footer_link_visited = "#f7e0df";
set control_strip_bgcolor = "#967a7a";
set control_strip_bordercolor = "#d1a1a1";
set control_strip_linkcolor = "#ede6e7";
set control_strip_fgcolor = "#1e1415";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#967a7a";
set color_entry_border = "#d1a1a1";
set color_entry_interaction_links = "#f7e0df";
set color_entry_link = "#ede6e7";
set color_entry_link_hover = "#E0A4A4";
set color_entry_link_visited = "#f7e0df";
set color_entry_text = "#1e1415";
set color_entry_title = "#f7e0df";
##===============================
## Module Colors
##===============================
set color_module_background = "#967a7a";
set color_module_border = "#d1a1a1";
set color_module_link = "#ede6e7";
set color_module_link_hover = "#E0A4A4";
set color_module_link_visited = "#f7e0df";
set color_module_text = "#1e1415";
set color_module_title = "#f7e0df";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title = "'Palatino Linotype', Georgia, Palatino";
set font_entry_title = "'Palatino Linotype', Georgia, Palatino";
set font_fallback = "serif";
set font_journal_subtitle = "'Palatino Linotype', Georgia, Palatino";
set font_journal_title = "'Palatino Linotype', Georgia, Palatino";
set font_module_heading = "'Palatino Linotype', Georgia, Palatino";
set font_module_text = "'Palatino Linotype', Georgia, Palatino";
set font_module_text_units = "em";
#NEWLAYER: crisped/tropic
layerinfo type = "theme";
layerinfo name = "Tropic";
layerinfo redist_uniq = "crisped/tropic";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by OldeAuntieRae", "url" => "http://www.colourlovers.com/pattern/2156009/Tropic" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#400f2d";
set color_page_border = "#dd3330";
set color_page_link = "#c8444d";
set color_page_link_visited = "#dd3330";
set color_page_subtitle = "#dd3330";
set color_page_text = "#fce980";
set color_page_title = "#fce980";
set color_header_background = "#400f2d";
set color_footer_background = "#400f2d";
set color_footer_link = "#c8444d";
set color_footer_link_visited = "#dd3330";
set color_calendar_background = "#400f2d";
set color_calendar_link = "#dd3330";
set color_calendar_link_visited = "#dd3330";
set color_calendar_text = "#fff";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#400f2d";
set color_entry_border = "#dd3330";
set color_entry_interaction_links = "#c8444d";
set color_entry_interaction_links_visited = "#dd3330";
set color_entry_link = "#c8444d";
set color_entry_link_visited = "#dd3330";
set color_entry_text = "#fce980";
set color_entry_title = "#fce980";
set color_entry_title_background = "#400f2d";
set color_comment_title = "#fce980";
set color_comment_title_background = "#400f2d";
##===============================
## Module Colors
##===============================
set color_module_background = "#400f2d";
set color_module_border = "#dd3330";
set color_module_link = "#c8444d";
set color_module_link_hover = "#e03848";
set color_module_link_visited = "#dd3330";
set color_module_text = "#fce980";
set color_module_title = "#fce980";
set color_module_title_background = "#400f2d";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/tropic.png";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet() { """
/* REMOVING ALL THE UPPERCASE */
h1#title, h2.module-header, h3.entry-title, div.ContextualPopup, div.ContextualPopup .Relation, div.tag ul, span.metadata-item-location, span.metadata-item-music, span.metadata-item-mood, span.tag-text, table.month th, ul.entry-interaction-links li, .comment .footer, .comment-poster, .datetime, .journal-name, .journal-website-name, .manage-link, .manage-tags-link, .metadata, .module-calendar th, .module-calendar td.empty-day, .module-calendar td.entry-day, .module-navlinks ul.module-list, .month h3, .navigation, .page-icons .icons-container h2, .page-tags .tags-container h2, .tag, #lj_controlstrip, #lj_controlstrip_input, ul.entry-management-links { text-transform: none; }
"""; }
#NEWLAYER: crisped/turtle
layerinfo type = "theme";
layerinfo name = "Turtle";
layerinfo redist_uniq = "crisped/turtle";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#233030";
set color_page_border = "#7d966c";
set color_page_link = "#a7ba86";
set color_page_link_visited = "#7d966c";
set color_page_text = "#d6e5cc";
set color_page_title = "#a7ba86";
set color_header_background = "#212f26";
set color_footer_background = "#3b5244";
set color_footer_link = "#a7ba86";
set color_footer_link_visited = "#7d966c";
set control_strip_bgcolor = "#3b5244";
set control_strip_bordercolor = "#3b5244";
set control_strip_linkcolor = "#a7ba86";
set control_strip_fgcolor = "#d6e5cc";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#3b5244";
set color_entry_border = "#3b5244";
set color_entry_link = "#a7ba86";
set color_entry_link_visited = "#7d966c";
set color_entry_text = "#d6e5cc";
set color_entry_title = "#a7ba86";
##===============================
## Module Colors
##===============================
set color_module_background = "#597554";
set color_module_border = "#7d966c";
set color_module_link = "#a7ba86";
set color_module_link_visited = "#c7eeab";
set color_module_text = "#d6e5cc";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title = "'Palatino Linotype', Georgia, Palatino";
set font_entry_title = "'Palatino Linotype', Georgia, Palatino";
set font_fallback = "serif";
set font_journal_subtitle = "'Palatino Linotype', Georgia, Palatino";
set font_journal_title = "'Palatino Linotype', Georgia, Palatino";
set font_module_heading = "'Palatino Linotype', Georgia, Palatino";
set font_module_text = "'Palatino Linotype', Georgia, Palatino";
#NEWLAYER: crisped/valkyrie
layerinfo type = "theme";
layerinfo name = "Valkyrie";
layerinfo redist_uniq = "crisped/valkyrie";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#D8E3D1";
set color_page_link = "#609eb5";
set color_page_link_active = "#609eb5";
set color_page_link_hover = "#4b9884";
set color_page_link_visited = "#8d5b50";
set color_page_subtitle = "#413f3f";
set color_page_text = "#2d2b2b";
set color_page_title = "#413f3f";
set color_header_background = "#f8ffe6";
set color_footer_background = "#f8ffe6";
set color_footer_link = "#609eb5";
set color_footer_link_active = "#609eb5";
set color_footer_link_hover = "#4b9884";
set color_footer_link_visited = "#8d5b50";
set control_strip_bgcolor = "#f8ffe6";
set control_strip_bordercolor = "#effad2";
set control_strip_linkcolor = "#609eb5";
set control_strip_fgcolor = "#2d2b2b";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f8ffe6";
set color_entry_border = "#effad2";
set color_entry_interaction_links = "#4b9884";
set color_entry_link = "#609eb5";
set color_entry_link_active = "#609eb5";
set color_entry_link_hover = "#4b9884";
set color_entry_link_visited = "#8d5b50";
set color_entry_text = "#2d2b2b";
set color_entry_title = "#413f3f";
set color_entry_title_background = "#effad2";
set color_comment_title = "#413f3f";
set color_comment_title_background = "#effad2";
##===============================
## Module Colors
##===============================
set color_module_background = "#f8ffe6";
set color_module_border = "#effad2";
set color_module_link = "#609eb5";
set color_module_link_active = "#609eb5";
set color_module_link_hover = "#4b9884";
set color_module_link_visited = "#8d5b50";
set color_module_text = "#2d2b2b";
set color_module_title = "#413f3f";
set color_module_title_background = "#effad2";
set color_calendar_background = "#effad2";
set color_calendar_link = "#609eb5";
set color_calendar_link_active = "#609eb5";
set color_calendar_link_hover = "#4b9884";
set color_calendar_link_visited = "#8d5b50";
set color_calendar_text = "#2d2b2b";
#NEWLAYER: crisped/velvetsteel
layerinfo type = "theme";
layerinfo name = "Velvet Steel";
layerinfo redist_uniq = "crisped/velvetsteel";
layerinfo author_name = "timeasmymeasure";
##===============================
## Page Colors
##===============================
set color_page_background = "#a7a7a7";
set color_page_border = "#a7a7a7";
set color_page_link = "#97457E";
set color_page_link_hover = "#603048";
set color_page_subtitle = "#404040";
set color_page_text = "#404040";
set color_page_title = "#783060";
set color_footer_background = "#ededed";
set control_strip_bgcolor = "#ededed";
set control_strip_bordercolor = "#404040";
set control_strip_linkcolor = "#97457E";
set control_strip_fgcolor = "#404040";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#ededed";
set color_entry_border = "#404040";
set color_entry_interaction_links = "#404040";
set color_entry_link = "#97457E";
set color_entry_link_hover = "#603048";
set color_entry_text = "#404040";
set color_entry_title = "#a7a7a7";
set color_entry_title_background = "#404040";
set color_comment_title = "#a7a7a7";
set color_comment_title_background = "#404040";
##===============================
## Module Colors
##===============================
set color_module_background = "#ededed";
set color_module_border = "#404040";
set color_module_title = "#a7a7a7";
set color_module_title_background = "#404040";
set color_calendar_background = "#a7a7a7";
#NEWLAYER: crisped/verdena
layerinfo type = "theme";
layerinfo name = "Verdena";
layerinfo redist_uniq = "crisped/verdena";
layerinfo author_name = "forests_of_fire";
set theme_authors = [ { "name" => "forests_of_fire", "type" => "user" } ];
set layout_resources = [ { "name" => "ColourLovers pattern by amethystfirefly & OldeAuntieRae", "url" => "http://www.colourlovers.com/pattern/3820114/verdena" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#C7E371";
set color_page_border = "#fff";
set color_page_link = "#E4F3B6";
set color_page_link_visited = "#000e06";
set color_page_subtitle = "#000";
set color_page_text = "#000";
set color_page_title = "#000";
set color_header_background = "#C7E371";
set color_footer_background = "#C7E371";
set color_footer_link = "#477745";
set color_footer_link_visited = "#000e06";
set color_calendar_background = "#C7E371";
set color_calendar_link = "#477745";
set color_calendar_link_visited = "#000e06";
set color_calendar_text = "#000";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#C7E371";
set color_entry_border = "#fff";
set color_entry_interaction_links = "#477745";
set color_entry_interaction_links_visited = "#000e06";
set color_entry_link = "#477745";
set color_entry_link_visited = "#000e06";
set color_entry_text = "#000";
set color_entry_title = "#000";
set color_entry_title_background = "#98BE21";
set color_comment_title_background = "#C7E371";
##===============================
## Module Colors
##===============================
set color_module_background = "#C7E371";
set color_module_border = "#fff";
set color_module_link = "#477745";
set color_module_link_visited = "#000e06";
set color_module_text = "#000";
set color_module_title = "#477745";
set color_module_title_background = "#98BE21";
##===============================
## Images
##===============================
set image_background_page_position = "top left";
set image_background_page_repeat = "repeat";
set image_background_page_url = "crisped/verdena.png";
function Page::print_theme_stylesheet() { """
/* Verdena
/* by forests_of_fire
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
"""; }
#NEWLAYER: crisped/walnut
layerinfo type = "theme";
layerinfo name = "Walnut";
layerinfo redist_uniq = "crisped/walnut";
layerinfo author_name = "flatlanders";
layerinfo author_email = "flatlanders@zensenbutai.com";
set theme_authors = [ { "name" => "flatlanders", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#18100a";
set color_page_link = "#72c8bb";
set color_page_link_active = "#dd2324";
set color_page_link_hover = "#dd2324";
set color_page_link_visited = "#727272";
set color_page_subtitle = "#dcd6c8";
set color_page_text = "#dcd6c8";
set color_page_title = "#72c8bb";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#0f0a06";
set color_entry_border = "#0f0a06";
set color_entry_interaction_links = "#72c8bb";
set color_entry_link = "#72c8bb";
set color_entry_link_active = "#dd2324";
set color_entry_link_hover = "#dd2324";
set color_entry_link_visited = "#727272";
set color_entry_text = "#dcd6c8";
set color_entry_title = "#72c8bb";
set color_entry_title_background = "#312318";
set color_comment_title = "#dcd6c8";
##===============================
## Module Colors
##===============================
set color_module_background = "#0f0a06";
set color_module_border = "#312318";
set color_module_link = "#72c8bb";
set color_module_link_active = "#dd2324";
set color_module_link_hover = "#dd2324";
set color_module_link_visited = "#727272";
set color_module_title = "#72c8bb";
set color_module_title_background = "#312318";
set color_calendar_background = "#312318";
set color_calendar_text = "#dcd6c8";
##===============================
## Fonts
##===============================
set font_base = "Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial";
set font_fallback = "sans-serif";
##===============================
## Stylesheet
##===============================
function Page::print_theme_stylesheet () {
"""
.module {
border-right: 1px solid $*color_module_border;
border-bottom: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day, .month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th, .module-calendar .entry-day, .month th, .month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks, .module-time, .module-powered, .module-header {
background: -moz-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_module_title_background), color-stop(30px,
$*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top,
$*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient
(GradientType=0,startColorstr='$*color_module_title_background',
endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background,
$*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0,
$*color_module_background 30px); /* Opera 11.10+ */
}
.entry {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic, .comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img, .comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title, .entry .header .entry-title a {
background-color: transparent;
}
#comments .comment, .bottomcomment {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.month {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-tags .tags-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.page-icons .icons-container {
border-right: 1px solid $*color_entry_title_background;
border-bottom: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom,
color-stop(0, $*color_entry_title_background), color-stop(30px,
$*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,
startColorstr='$*color_entry_title_background',
endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background,
$*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0,
$*color_entry_background 30px); /* Opera 11.10+ */
}
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
div.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/whisper
layerinfo type = "theme";
layerinfo name = "Whisper";
layerinfo redist_uniq = "crisped/whisper";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#A399B3";
set color_calendar_link = "#5B4C63";
set color_calendar_link_hover = "#AB3679";
set color_calendar_link_visited = "#972993";
set color_calendar_text = "#080609";
set color_footer_link = "#5B4C63";
set color_footer_link_hover = "#AB3679";
set color_footer_link_visited = "#972993";
set color_page_background = "#A399B3";
set color_page_link = "#5B4C63";
set color_page_link_hover = "#AB3679";
set color_page_link_visited = "#972993";
set color_page_subtitle = "#AB3679";
set color_page_text = "#080609";
set color_page_title = "#972993";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#972993";
set color_comment_title_background = "#ED99EA";
set color_entry_background = "#B89AC8";
set color_entry_border = "#FD9AD3";
set color_entry_interaction_links = "#972993";
set color_entry_link = "#5B4C63";
set color_entry_link_hover = "#AB3679";
set color_entry_link_visited = "#972993";
set color_entry_text = "#080609";
set color_entry_title = "#972993";
set color_entry_title_background = "#ED99EA";
##===============================
## Module Colors
##===============================
set color_module_background = "#CDA4DB";
set color_module_border = "#FD9AD3";
set color_module_link = "#5B4C63";
set color_module_link_hover = "#AB3679";
set color_module_link_visited = "#972993";
set color_module_title = "#972993";
set color_module_title_background = "#ED99EA";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
function Page::print_theme_stylesheet() {
"""
/* Whisper
/* by Nornoriel
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/wintercourt
layerinfo type = "theme";
layerinfo name = "Winter Court";
layerinfo redist_uniq = "crisped/wintercourt";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#d0d2e3";
set color_page_link = "#33385d";
set color_page_link_hover = "#A4ABC4";
set color_page_link_visited = "#47456b";
set color_page_text = "#3a4445";
set color_page_title = "#47456b";
set color_header_background = "#dde2fc";
set color_footer_background = "#dde2fc";
set color_footer_link = "#33385d";
set color_footer_link_hover = "#A4ABC4";
set color_footer_link_visited = "#47456b";
set control_strip_bgcolor = "#d1d3dc";
set control_strip_bordercolor = "#e5eef9";
set control_strip_linkcolor = "#33385d";
set control_strip_fgcolor = "#3a4445";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#d1d3dc";
set color_entry_border = "#e5eef9";
set color_entry_link = "#33385d";
set color_entry_link_hover = "#A4ABC4";
set color_entry_link_visited = "#47456b";
set color_entry_text = "#3a4445";
set color_entry_title = "#47456b";
##===============================
## Module Colors
##===============================
set color_module_background = "#d1d3dc";
set color_module_border = "#e5eef9";
set color_module_link = "#33385d";
set color_module_link_hover = "#A4ABC4";
set color_module_link_visited = "#47456b";
set color_module_text = "#3a4445";
set color_module_title = "#47456b";
#NEWLAYER: crisped/wish
layerinfo type = "theme";
layerinfo name = "Wish";
layerinfo redist_uniq = "crisped/wish";
layerinfo author_name = "nornoriel";
set theme_authors = [ { "name" => "nornoriel", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_calendar_background = "#f8dafb";
set color_calendar_link = "#ba58c3";
set color_calendar_link_hover = "#4e5ba3";
set color_calendar_link_visited = "#a759cc";
set color_calendar_text = "#090d21";
set color_footer_background = "#f8dafb";
set color_footer_link = "#ba58c3";
set color_footer_link_hover = "#9f58c3";
set color_header_background = "#f8dafb";
set color_page_background = "#f8dafb";
set color_page_link = "#ba58c3";
set color_page_link_hover = "#9f58c3";
set color_page_link_visited = "#a759cc";
set color_page_subtitle = "#a759cc";
set color_page_title = "#4b54ab";
##===============================
## Entry Colors
##===============================
set color_comment_title = "#4e5ba3";
set color_comment_title_background = "#dafbf8";
set color_entry_background = "#daddfb";
set color_entry_border = "#DAFBF8";
set color_entry_interaction_links = "#4e5ba3";
set color_entry_link = "#4b54ab";
set color_entry_link_hover = "#4f4e93";
set color_entry_link_visited = "#4e5ba3";
set color_entry_text = "#090d21";
set color_entry_title = "#4e5ba3";
set color_entry_title_background = "#dafbf8";
##===============================
## Module Colors
##===============================
set color_module_background = "#daedfb";
set color_module_border = "#e8dafb";
set color_module_link = "#4f96c9";
set color_module_link_hover = "#4343d8";
set color_module_link_visited = "#3b54ce";
set color_module_text = "#090d21";
set color_module_title = "#3b54ce";
set color_module_title_background = "#e8dafb";
##===============================
## Fonts
##===============================
set font_base = "'Palatino Linotype', Georgia, Palatino";
set font_comment_title_units = "em";
set font_module_text_units = "em";
function Page::print_theme_stylesheet() {
"""
/* Wish
/* by Nornoriel
******************************/
/* Entries with gradients
******************************/
.entry {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic,
.comment .userpic {
box-shadow: 1px 2px 3px $*color_entry_border;
}
.entry .userpic img,
.comment .userpic img {
background-color: $*color_entry_title_background;
}
.entry-interaction-links a:hover {
color: $*color_entry_link_hover;
}
.entry .header .entry-title,
.entry .header .entry-title a {
background-color: transparent;
}
#comments .comment,
.bottomcomment {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Modules with gradients
******************************/
.module {
border-bottom: 1px solid $*color_module_border;
border-right: 1px solid $*color_module_border;
box-shadow: 1px 2px 3px $*color_entry_border;
}
.module-content .userpic img {
background-color: $*color_module_border !important;
box-shadow: 1px 2px 3px $*color_module_border;
}
.module-calendar .empty-day,
.month .day {
background-color: $*color_module_background;
border: 1px solid $*color_module_border;
}
.module-calendar th,
.module-calendar .entry-day,
.month th,
.month .day-has-entries {
background-color: $*color_page_background;
border: 1px solid $*color_module_border;
}
.module-navlinks,
.module-time,
.module-powered,
.module-header {
background: -moz-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_module_title_background), color-stop(30px, $*color_module_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px);
filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0,startColorstr='$*color_module_title_background', endColorstr='$*color_module_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_module_title_background',endColorstr='$*color_module_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_module_title_background, $*color_module_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus, .module-navlinks, .module-time, .module-powered, .module-header {
background: -o-linear-gradient(top, $*color_module_title_background 0, $*color_module_background 30px); /* Opera 11.10+ */
}
/* Archive with gradients
******************************/
.month {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
}
.month-wrapper {
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Tags page with gradients
******************************/
.page-tags .tags-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* Custom icons page with gradients
******************************/
.page-icons .icons-container {
border-bottom: 1px solid $*color_entry_title_background;
border-right: 1px solid $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
/* General page gradients
******************************/
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: $*color_entry_background;
background: -moz-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Firefox */
background: -webkit-linear-gradient(linear, left top, left bottom, color-stop(0, $*color_entry_title_background), color-stop(30px, $*color_entry_background)); /* Safari 4+, Chrome 2+ */
background: -webkit-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Safari 5/1+, Chrome 10+ */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='$*color_entry_title_background', endColorstr='$*color_entry_background'); /* IE6 + IE 7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='$*color_entry_title_background',endColorstr='$*color_entry_background')"; /* IE 8+ */
background: -ms-linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* IE 10 */
background: linear-gradient(top, $*color_entry_title_background, $*color_entry_background 30px); /* Standard Syntax */
}
noindex:-o-prefocus,
.entry .header,
#comments .comment,
.bottomcomment,
.month,
.tags-container h2,
.icons-container h2 {
background: -o-linear-gradient(top, $*color_entry_title_background 0, $*color_entry_background 30px); /* Opera 11.10+ */
}
/* Navigation strip
******************************/
#lj_controlstrip {
box-shadow: 0px 1px 2px $*color_entry_border;
}
#lj_controlstrip div {
border: 1px solid $*color_entry_title_background;
}
.logged-out #lj_controlstrip_login td {
border: none;
}
/* Contextual hover
******************************/
.ContextualPopup .Inner {
border: 1px solid $*color_entry_title_background;
}
.ContextualPopup .Userpic {
background-color: $*color_entry_title_background;
box-shadow: 1px 2px 3px $*color_entry_border;
}
""";
}
#NEWLAYER: crisped/wonderland
layerinfo type = "theme";
layerinfo name = "Wonderland";
layerinfo redist_uniq = "crisped/wonderland";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#b4d2de";
set color_page_link = "#8095ab";
set color_page_link_active = "#8095ab";
set color_page_link_hover = "#4678ab";
set color_page_link_visited = "#5b4e69";
set color_page_subtitle = "#3D3D3D";
set color_page_text = "#333";
set color_page_title = "#333";
set color_header_background = "#ffe6b3";
set color_footer_background = "#f5f2ed";
set color_footer_link = "#8095ab";
set color_footer_link_active = "#8095ab";
set color_footer_link_hover = "#4678ab";
set color_footer_link_visited = "#5b4e69";
set control_strip_bgcolor = "#f5f2ed";
set control_strip_bordercolor = "#ffe6b3";
set control_strip_linkcolor = "#8095ab";
set control_strip_fgcolor = "#333";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#f5f2ed";
set color_entry_border = "#ffe6b3";
set color_entry_interaction_links = "#4678ab";
set color_entry_link = "#8095ab";
set color_entry_link_active = "#8095ab";
set color_entry_link_hover = "#4678ab";
set color_entry_link_visited = "#5b4e69";
set color_entry_text = "#333";
set color_entry_title = "#333";
set color_entry_title_background = "#ffe6b3";
set color_comment_title = "#333";
set color_comment_title_background = "#ffe6b3";
##===============================
## Module Colors
##===============================
set color_module_background = "#f5f2ed";
set color_module_border = "#ffe6b3";
set color_module_link = "#8095ab";
set color_module_link_active = "#8095ab";
set color_module_link_hover = "#4678ab";
set color_module_link_visited = "#5b4e69";
set color_module_text = "#333";
set color_module_title = "#333";
set color_module_title_background = "#ffe6b3";
set color_calendar_background = "#ffe6b3";
set color_calendar_link = "#8095ab";
set color_calendar_link_active = "#8095ab";
set color_calendar_link_hover = "#4678ab";
set color_calendar_link_visited = "#5b4e69";
set color_calendar_text = "#333";
#NEWLAYER: crisped/zoned
layerinfo type = "theme";
layerinfo name = "Zoned";
layerinfo redist_uniq = "crisped/zoned";
layerinfo author_name = "krja";
set theme_authors = [ { "name" => "krja", "type" => "user" } ];
##===============================
## Page Colors
##===============================
set color_page_background = "#fff500";
set color_page_link = "#3f9dca";
set color_page_link_active = "#3f9dca";
set color_page_link_hover = "#3cc058";
set color_page_link_visited = "#226888";
set color_page_subtitle = "#1b1b1b";
set color_page_text = "#1b1b1b";
set color_page_title = "#1b1b1b";
set color_header_background = "#ffd600";
set color_footer_background = "#fffde1";
set color_footer_link = "#3f9dca";
set color_footer_link_active = "#3f9dca";
set color_footer_link_hover = "#3cc058";
set color_footer_link_visited = "#226888";
set control_strip_bgcolor = "#fffde1";
set control_strip_bordercolor = "#ffd600";
set control_strip_linkcolor = "#3f9dca";
set control_strip_fgcolor = "#1b1b1b";
##===============================
## Entry Colors
##===============================
set color_entry_background = "#fffde1";
set color_entry_border = "#ffd600";
set color_entry_interaction_links = "#3cc058";
set color_entry_link = "#3f9dca";
set color_entry_link_active = "#3f9dca";
set color_entry_link_hover = "#3cc058";
set color_entry_link_visited = "#226888";
set color_entry_text = "#1b1b1b";
set color_entry_title = "#1b1b1b";
set color_entry_title_background = "#ffd600";
set color_comment_title = "#1b1b1b";
set color_comment_title_background = "#ffd600";
##===============================
## Module Colors
##===============================
set color_module_background = "#fffde1";
set color_module_border = "#ffd600";
set color_module_link = "#3f9dca";
set color_module_link_active = "#3f9dca";
set color_module_link_hover = "#3cc058";
set color_module_link_visited = "#226888";
set color_module_text = "#1b1b1b";
set color_module_title = "#1b1b1b";
set color_module_title_background = "#ffd600";
set color_calendar_background = "#ffd600";
set color_calendar_link = "#3f9dca";
set color_calendar_link_active = "#3f9dca";
set color_calendar_link_hover = "#3cc058";
set color_calendar_link_visited = "#226888";
set color_calendar_text = "#1b1b1b";