[log][html] increase font size of day headers a bit

This commit is contained in:
Hylke Bons 2011-03-17 01:30:24 +00:00
parent 5ff3920715
commit fe6e98ae51
3 changed files with 5 additions and 5 deletions

View file

@ -167,6 +167,7 @@ namespace SparkleShare {
HTML = SparkleShare.Controller.GetHTMLLog (folder_name);
HTML = HTML.Replace ("<!-- $body-font-family -->", "Lucida Grande");
HTML = HTML.Replace ("<!-- $day-entry-header-font-size -->", "13.6px");
HTML = HTML.Replace ("<!-- $body-font-size -->", "13.4px");
HTML = HTML.Replace ("<!-- $secondary-font-color -->", "#bbb");
HTML = HTML.Replace ("<!-- $small-color -->", "#ddd");

View file

@ -178,6 +178,7 @@ namespace SparkleShare {
HTML = SparkleShare.Controller.GetHTMLLog (System.IO.Path.GetFileName (LocalPath));
HTML = HTML.Replace ("<!-- $body-font-size -->", (Style.FontDescription.Size / 1024 + 0.5) + "pt");
HTML = HTML.Replace ("<!-- $day-entry-header-font-size -->", (Style.FontDescription.Size / 1024 + 0.6) + "pt");
HTML = HTML.Replace ("<!-- $a-color -->", "#0085cf");
HTML = HTML.Replace ("<!-- $a-hover-color -->", "#009ff8");
HTML = HTML.Replace ("<!-- $body-font-family -->", "\"" + Style.FontDescription.Family + "\"");

View file

@ -23,15 +23,13 @@
}
.day-entry-header {
color: #dfdfdf;
padding: 3px;
font-size: <!-- $day-entry-header-font-size -->;
color: #babdb6;
text-align: center;
margin-left: auto;
margin-right: auto;
width: 90%;
font-weight: lighter;
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.8),
0 1px 0 rgba(255, 255, 255, 1.0);
text-shadow: 0 1px 0 rgba(255, 255, 255, 1.0);
}
.day-entry-content {