Skip to content

Commit

Permalink
thank Ian Zamojc
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Dec 23, 2021
1 parent 3efacb3 commit a068685
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 49 deletions.
62 changes: 27 additions & 35 deletions logback-site/src/site/pages/css/common.css
@@ -1,72 +1,64 @@



.example {
width: 90%;
font-style: italic;
width: 90%;
font-style: italic;
}


div.source {
margin-top: 1em;
margin-top: 1em;
}

div.breaking {
border: 1px solid #F44;
background-color: #FED;
padding-left: 1ex;
padding-right: 1ex;
}

.longline {
overflow: auto;
border: 1px solid #F44;
background-color: #FED;
padding-left: 1ex;
padding-right: 1ex;
}



table.footer {
width: 100%;
width: 100%;
}

.footer {
color: #564b47;
background-color: #fff;
padding:0px;
border-top: 1px solid #CCCCCC;
margin-top: 3ex;
font-size: smaller;
color: #564b47;
background-color: #fff;
padding:0px;
border-top: 1px solid #CCCCCC;
margin-top: 3ex;
font-size: smaller;
}


p.menu {
padding-top: 0px;
padding-bottom: 0px;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
margin-top: 0px;
margin-bottom: 0px;
}

.small {
font-size: smaller;
font-size: smaller;
}

.strong, .bold {
/*font-size: 13px;*/
font-weight: bold;
}

.author {
text-align: left;
font-weight: bold;
text-align: left;
font-weight: bold;
}

.definition {
padding-left: 5px;
padding-right: 5px;
margin: 5px 50px 5px 50px;
text-align: justify;
background-color: #E6E64C;
padding-left: 5px;
padding-right: 5px;
margin: 5px 50px 5px 50px;
text-align: justify;
background-color: #E6E64C;
}

.deftitle {
font-weight: bold;
font-weight: bold;
}
18 changes: 12 additions & 6 deletions logback-site/src/site/pages/css/screen.css
@@ -1,3 +1,9 @@
/*
Many thanks to Ian Zamojc izamojc(at)zamtools.com for making
suggestions to improbve the site look and feel.
*/


html {
/* padding:0px;
margin:0px; */
Expand All @@ -13,12 +19,12 @@ body {
}

.footer {
color: #564b47;
background-color: #fff;
padding:0px;
border-top: 1px solid #CCCCCC;
margin-top: 3ex;
font-size: smaller;
color: #564b47;
background-color: #fff;
padding:0px;
border-top: 1px solid #CCCCCC;
margin-top: 3ex;
font-size: smaller;
}

#job img {
Expand Down
16 changes: 8 additions & 8 deletions logback-site/src/site/pages/manual/appenders.html
Expand Up @@ -47,13 +47,13 @@ <h1>Chapter 4: Appenders</h1>

<h2 class="doAnchor" name="whatIsAnAppender">What is an Appender?</h2>

<p>Logback delegates the task of writing a logging event to
components called appenders. Appenders must implement the <a
href="../xref/ch/qos/logback/core/Appender.html"><code>ch.qos.logback.core.Appender</code></a>
interface. The salient methods of this interface are summarized
below:
</p>
<pre class="prettyprint source">package ch.qos.logback.core;
<p>Logback delegates the task of writing a logging event to
components called appenders. Appenders must implement
the <a href="../xref/ch/qos/logback/core/Appender.html"><code>ch.qos.logback.core.Appender</code></a>
interface. The salient methods of this interface are summarized
below:
</p>
<div class="prettyprint source">package ch.qos.logback.core;

import ch.qos.logback.core.spi.ContextAware;
import ch.qos.logback.core.spi.FilterAttachable;
Expand All @@ -66,7 +66,7 @@ <h2 class="doAnchor" name="whatIsAnAppender">What is an Appender?</h2>
public void setName(String name);
<b>void doAppend(E event);</b>

}</pre>
}</div>

<p>Most of the methods in the <code>Appender</code> interface are
setters and getters. A notable exception is the
Expand Down

0 comments on commit a068685

Please sign in to comment.