
commit
dd141b92e0
71 changed files with 2733 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
_ _ ____ _ |
|||
| \ | | __ _ _ __ ___ | __ )| | ___ __ _ __ _ ___ _ __ |
|||
| \| |/ _` | '_ \ / _ \| _ \| |/ _ \ / _` |/ _` |/ _ \ '__| |
|||
| |\ | (_| | | | | (_) | |_) | | (_) | (_| | (_| | __/ | |
|||
|_| \_|\__,_|_| |_|\___/|____/|_|\___/ \__, |\__, |\___|_| |
|||
|___/ |___/ |
|||
|
|||
Bienvenue sur le dépôt de fichiers Nanoblogger sur Depotoire ! |
|||
|
|||
Vous trouverez des répertoires comme : |
|||
- officiel : contient une copie des fichiers officiels de nanoblogger |
|||
- plugins : contient des additifs découverts ici ou là sur la Toile |
|||
- migrations : quelques manières de migrer de nanoblogger vers ailleurs ou inversement |
@ -0,0 +1,13 @@ |
|||
a, a:active {text-decoration: none; color: blue;} |
|||
a:visited {color: #48468F;} |
|||
a:hover, a:focus {text-decoration: underline; color: red;} |
|||
body {background-color: #F5F5F5;} |
|||
h2 {margin-bottom: 12px;} |
|||
table {margin-left: 12px;} |
|||
th, td { font: 90% monospace; text-align: left;} |
|||
th { font-weight: bold; padding-right: 14px; padding-bottom: 3px;} |
|||
td {padding-right: 14px;} |
|||
td.s, th.s {text-align: right;} |
|||
div.list { background-color: white; border-top: 1px solid #646464; border-bottom: 1px solid #646464; padding-top: 10px; padding-bottom: 14px;} |
|||
div.foot { font: 90% monospace; color: #787878; padding-top: 4px;} |
|||
|
@ -0,0 +1,359 @@ |
|||
/* |
|||
* |
|||
* - Name : bluedarklight |
|||
* - Description : Theme using darkblue and lightblue. Title on the top, content on the left, menu on the right. |
|||
* - Author : Blankoworld |
|||
* - Link : http://ordyz/demo/nanoblogger/bluedarklight/ |
|||
* |
|||
*/ |
|||
|
|||
html, body { |
|||
height: 100%; |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 0; |
|||
background-color: darkblue; |
|||
color: #eeeeee; |
|||
font-weight: bold; |
|||
font-family: monospace, sans; |
|||
} |
|||
|
|||
body { |
|||
} |
|||
|
|||
h1 { |
|||
} |
|||
|
|||
h2 { |
|||
} |
|||
|
|||
h3 { |
|||
} |
|||
|
|||
h4 { |
|||
} |
|||
|
|||
h5 { |
|||
} |
|||
|
|||
h1, h2 , h3, h4 ,h5 ,h6, dt, caption { |
|||
color: #eeeeee; |
|||
border-bottom: 1px solid darkblue; |
|||
} |
|||
|
|||
pre { |
|||
width: 90%; |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
padding: 5px; |
|||
background-color: black; |
|||
color: lightgray; |
|||
font-size: 12px; |
|||
border: 1px inset lightblue; |
|||
overflow: auto; |
|||
} |
|||
|
|||
code, samp { |
|||
} |
|||
|
|||
cite, blockquote { |
|||
padding: 2px 0 2px 15px; |
|||
background-color: #77bbff; |
|||
border-left: 3px solid black; |
|||
} |
|||
|
|||
p { |
|||
} |
|||
|
|||
ul, ol { |
|||
} |
|||
|
|||
table { |
|||
} |
|||
|
|||
a { |
|||
color: #77bbff; |
|||
} |
|||
|
|||
a:link { |
|||
} |
|||
|
|||
a:visited { |
|||
} |
|||
|
|||
a:hover { |
|||
background-color: lightblue; |
|||
color: black; |
|||
} |
|||
|
|||
a:active { |
|||
} |
|||
|
|||
a > img { |
|||
border-width: 0; |
|||
border-style: none; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#banner { |
|||
height: auto; |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
|
|||
#banner h1 { |
|||
margin: 0; |
|||
border-bottom: 2px solid lightblue; |
|||
} |
|||
|
|||
#banner a, |
|||
#banner a:link, |
|||
#banner a:visited, |
|||
#banner a:active, |
|||
#banner a:hover { |
|||
color: lightblue; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#banner a:hover { |
|||
background-color: lightblue; |
|||
color: black; |
|||
} |
|||
|
|||
div#banner span.description { |
|||
position: absolute; |
|||
height: 18px; |
|||
width: auto; |
|||
right: 0; |
|||
padding: 3px; |
|||
color: lightblue; |
|||
text-align: right; |
|||
font-size: 14px; |
|||
line-height: 18px; |
|||
border-bottom: 1px solid lightblue; |
|||
border-left: 1px solid lightblue; |
|||
} |
|||
|
|||
div#container { |
|||
position: relative; |
|||
width: 100%; |
|||
top: 25px; |
|||
} |
|||
|
|||
div#container div#content { |
|||
position: relative; |
|||
width: 75%; |
|||
} |
|||
|
|||
div#container div#links { |
|||
position: relative; |
|||
width: 25%; |
|||
right: 0; |
|||
top: 10px; |
|||
margin: 0; |
|||
color: #eeeeee; |
|||
text-align: left; |
|||
font-size: 15px; |
|||
float: right; |
|||
overflow: auto; |
|||
} |
|||
|
|||
div#container div#content div#intro { |
|||
width: 96%; |
|||
margin-left: 1%; |
|||
padding: 1%; |
|||
border: 1px dotted lightblue; |
|||
} |
|||
|
|||
div#container div#content div.blog { |
|||
} |
|||
|
|||
div#container div#content div.blog h2 { |
|||
color: #eeeeee; |
|||
padding-left: 10px; |
|||
border-bottom: 1px solid #eeeeee; |
|||
} |
|||
|
|||
.archives { |
|||
} |
|||
|
|||
.archives h2 { |
|||
color: #eeeeee; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item { |
|||
position: relative; |
|||
width: 98%; |
|||
left: 1%; |
|||
background-color: lightblue; |
|||
color: black; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item h2 { |
|||
color: black; |
|||
padding-left: 10px; |
|||
border-bottom: 1px solid black; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody { |
|||
padding: 0 15px 0 15px; |
|||
text-align: justify; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody div.item-description { |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody div.item-description h1, h2, h3, h4, h5, h6 { |
|||
color: darkblue; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody .title { |
|||
padding-left: 10px; |
|||
color: darkblue; |
|||
border-bottom: 2px solid darkblue; |
|||
border-left: 2px solid darkblue; |
|||
} |
|||
|
|||
#menu, .menu { |
|||
margin-top: 30px; |
|||
} |
|||
|
|||
div#container div#content div.menu { |
|||
text-align: center; |
|||
} |
|||
|
|||
.menu > table > tbody > tr > td { |
|||
} |
|||
|
|||
h2.date { |
|||
background-color: #77bbff; |
|||
color: black; |
|||
} |
|||
|
|||
div#container div#content div.item div.posted { |
|||
height: auto; |
|||
padding: 2px 5px 2px 15px; |
|||
background-color: #77bbff; |
|||
border-top: thin solid black; |
|||
} |
|||
|
|||
div#container div#content div.item div.posted br { |
|||
display: none; |
|||
} |
|||
|
|||
div#container div#content div.item a { |
|||
color: darkblue; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
div#container div#content div.item a:visited { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
div#container div#content div.item a:hover { |
|||
background-color: darkblue; |
|||
color: #77bbff; |
|||
} |
|||
|
|||
div#container div#content div.item a:active { |
|||
border: 2px inset black; |
|||
} |
|||
|
|||
.articleshead { |
|||
} |
|||
|
|||
div#links div.calendar { |
|||
font-size: 18px; |
|||
} |
|||
|
|||
div#links div.calendar table { |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
} |
|||
|
|||
div#links div.calendar caption { |
|||
background-color: #77bbff; |
|||
border: none; |
|||
} |
|||
|
|||
div#links div.calendar caption a { |
|||
color: black; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
div#links div.calendar caption a:hover { |
|||
background-color: transparent; |
|||
color: #eeeeee; |
|||
} |
|||
|
|||
div#links div.calendar table th { |
|||
color: #77bbff; |
|||
} |
|||
|
|||
.calendar td { |
|||
} |
|||
|
|||
.calendar a, |
|||
.calendar a:link, |
|||
.calendar a:active, |
|||
.calendar a:hover { |
|||
} |
|||
|
|||
.calendarhead { |
|||
} |
|||
|
|||
.side { |
|||
padding: 5px 5px 0 10px; |
|||
} |
|||
|
|||
.sidetitle { |
|||
margin-top: 15px; |
|||
padding-left: 5px; |
|||
text-align: left; |
|||
border-bottom: thin solid #999; |
|||
border-left: thin solid #999; |
|||
} |
|||
|
|||
.syndicate { |
|||
} |
|||
|
|||
.feed-small { |
|||
height: 14px; |
|||
padding-left: 17px; |
|||
background: url('../images/feed-icon-14x14.png') no-repeat 0% 50%; |
|||
} |
|||
|
|||
.powered { |
|||
color: #eeeeee; |
|||
font-size: 12px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.powered > a { |
|||
} |
|||
|
|||
.comments-body { |
|||
} |
|||
|
|||
.comments-post { |
|||
} |
|||
|
|||
.trackback-url { |
|||
} |
|||
|
|||
.trackback-body { |
|||
} |
|||
|
|||
.trackback-post { |
|||
} |
|||
|
|||
.comments-head { |
|||
} |
|||
|
|||
#banner-commentspop { |
|||
} |
|||
|
|||
.fortune { |
|||
color: #eeeeee; |
|||
} |
|||
|
@ -0,0 +1,347 @@ |
|||
/* |
|||
* |
|||
* - Name : chilipepper |
|||
* - Description : Theme using darkred and brown. Title on the top, content on the left, menu on the right. |
|||
* - Author : Blankoworld |
|||
* - Link : http://ordyz/demo/nanoblogger/chilipepper/ |
|||
* |
|||
*/ |
|||
|
|||
html, body { |
|||
height: 100%; |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 0; |
|||
background-color: #752222; |
|||
color: #999999; |
|||
font-weight: bold; |
|||
font-family: monospace, sans; |
|||
} |
|||
|
|||
body { |
|||
} |
|||
|
|||
h1 { |
|||
} |
|||
|
|||
h2 { |
|||
} |
|||
|
|||
h3 { |
|||
} |
|||
|
|||
h4 { |
|||
} |
|||
|
|||
h5 { |
|||
} |
|||
|
|||
h1, h2 , h3, h4 ,h5 ,h6, dt, caption { |
|||
color: #999999; |
|||
border-bottom: 1px solid #999999; |
|||
} |
|||
|
|||
pre { |
|||
width: 90%; |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
padding: 5px; |
|||
background-color: #752222; |
|||
color: lightgray; |
|||
font-size: 12px; |
|||
border: 1px inset darkred; |
|||
overflow: auto; |
|||
} |
|||
|
|||
code, samp { |
|||
} |
|||
|
|||
cite, blockquote { |
|||
padding: 2px 0 2px 15px; |
|||
background-color: brown; |
|||
border-left: 3px solid black; |
|||
} |
|||
|
|||
p { |
|||
} |
|||
|
|||
ul, ol { |
|||
} |
|||
|
|||
table { |
|||
} |
|||
|
|||
a { |
|||
color: #d23636; |
|||
} |
|||
|
|||
a:link { |
|||
} |
|||
|
|||
a:visited { |
|||
} |
|||
|
|||
a:hover { |
|||
background-color: #d23636; |
|||
color: black; |
|||
} |
|||
|
|||
a:active { |
|||
} |
|||
|
|||
a > img { |
|||
border-width: 0; |
|||
border-style: none; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#banner { |
|||
height: auto; |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
|
|||
#banner h1 { |
|||
margin: 0; |
|||
border-bottom: 2px solid #d23636; |
|||
} |
|||
|
|||
#banner a, |
|||
#banner a:link, |
|||
#banner a:visited, |
|||
#banner a:active, |
|||
#banner a:hover { |
|||
color: #d23636; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#banner a:hover { |
|||
background-color: #d23636; |
|||
color: #752222; |
|||
} |
|||
|
|||
div#banner span.description { |
|||
position: absolute; |
|||
height: 18px; |
|||
width: auto; |
|||
right: 0; |
|||
padding: 3px; |
|||
color: #d23636; |
|||
text-align: right; |
|||
font-size: 14px; |
|||
line-height: 18px; |
|||
border-bottom: 1px solid #d23636; |
|||
border-left: 1px solid #d23636; |
|||
} |
|||
|
|||
div#container { |
|||
position: relative; |
|||
width: 100%; |
|||
top: 25px; |
|||
} |
|||
|
|||
div#container div#content { |
|||
position: relative; |
|||
width: 75%; |
|||
} |
|||
|
|||
div#container div#links { |
|||
position: relative; |
|||
width: 25%; |
|||
right: 0; |
|||
top: 10px; |
|||
margin: 0; |
|||
text-align: left; |
|||
font-size: 15px; |
|||
float: right; |
|||
overflow: auto; |
|||
} |
|||
|
|||
div#container div#content div#intro { |
|||
width: 96%; |
|||
margin-left: 1%; |
|||
padding: 1%; |
|||
border: 1px dotted darkred; |
|||
} |
|||
|
|||
div#container div#content div.blog { |
|||
} |
|||
|
|||
div#container div#content div.blog h2 { |
|||
padding-left: 10px; |
|||
border-bottom: 1px solid black; |
|||
} |
|||
|
|||
.archives { |
|||
} |
|||
|
|||
.archives h2 { |
|||
} |
|||
|
|||
div#container div#content div.blog div.item { |
|||
position: relative; |
|||
width: 98%; |
|||
left: 1%; |
|||
background-color: darkred; |
|||
color: black; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody { |
|||
padding: 0 15px 0 15px; |
|||
text-align: justify; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody div.item-description { |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody .title { |
|||
padding-left: 10px; |
|||
color: #999999; |
|||
border-bottom: 2px solid #999999; |
|||
border-left: 2px solid #999999; |
|||
} |
|||
|
|||
#menu, .menu { |
|||
margin-top: 30px; |
|||
} |
|||
|
|||
div#container div#content div.menu { |
|||
text-align: center; |
|||
} |
|||
|
|||
.menu > table > tbody > tr > td { |
|||
} |
|||
|
|||
h2.date { |
|||
background-color: brown; |
|||
color: black; |
|||
} |
|||
|
|||
div#container div#content div.item div.posted { |
|||
height: auto; |
|||
padding: 2px 5px 2px 15px; |
|||
background-color: brown; |
|||
border-top: thin solid black; |
|||
} |
|||
|
|||
div#container div#content div.item div.posted br { |
|||
display: none; |
|||
} |
|||
|
|||
div#container div#content div.item a { |
|||
color: #999999; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
div#container div#content div.item a:visited { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
div#container div#content div.item a:hover { |
|||
background-color: transparent; |
|||
color: #eeeeee; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
div#container div#content div.item a:active { |
|||
border: 2px inset black; |
|||
} |
|||
|
|||
.articleshead { |
|||
} |
|||
|
|||
div#links div.calendar { |
|||
font-size: 18px; |
|||
} |
|||
|
|||
div#links div.calendar table { |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
} |
|||
|
|||
div#links div.calendar caption { |
|||
background-color: brown; |
|||
border: none; |
|||
} |
|||
|
|||
div#links div.calendar caption a { |
|||
color: black; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
div#links div.calendar caption a:hover { |
|||
background-color: transparent; |
|||
color: #eeeeee; |
|||
} |
|||
|
|||
div#links div.calendar table th { |
|||
color: brown; |
|||
} |
|||
|
|||
.calendar td { |
|||
} |
|||
|
|||
.calendar a, |
|||
.calendar a:link, |
|||
.calendar a:active, |
|||
.calendar a:hover { |
|||
} |
|||
|
|||
.calendarhead { |
|||
} |
|||
|
|||
.side { |
|||
padding: 5px 5px 0 10px; |
|||
} |
|||
|
|||
.sidetitle { |
|||
margin-top: 15px; |
|||
padding-left: 5px; |
|||
text-align: left; |
|||
border-bottom: thin solid #999; |
|||
border-left: thin solid #999; |
|||
} |
|||
|
|||
.syndicate { |
|||
} |
|||
|
|||
.feed-small { |
|||
height: 14px; |
|||
padding-left: 17px; |
|||
background: url('../images/feed-icon-14x14.png') no-repeat 0% 50%; |
|||
} |
|||
|
|||
.powered { |
|||
color: #eeeeee; |
|||
font-size: 12px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.powered > a { |
|||
} |
|||
|
|||
.comments-body { |
|||
} |
|||
|
|||
.comments-post { |
|||
} |
|||
|
|||
.trackback-url { |
|||
} |
|||
|
|||
.trackback-body { |
|||
} |
|||
|
|||
.trackback-post { |
|||
} |
|||
|
|||
.comments-head { |
|||
} |
|||
|
|||
#banner-commentspop { |
|||
} |
|||
|
|||
.fortune { |
|||
color: #eeeeee; |
|||
} |
|||
|
@ -0,0 +1,349 @@ |
|||
/* |
|||
* |
|||
* - Name : greenblack |
|||
* - Description : Theme using green and black. Title on the top, content on the left, menu on the right. |
|||
* - Author : Blankoworld |
|||
* - Link : http://ordyz/demo/nanoblogger/greenblack/ |
|||
* |
|||
*/ |
|||
|
|||
html, body { |
|||
height: 100%; |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 0; |
|||
background-color: black; |
|||
color: green; |
|||
font-weight: bold; |
|||
font-family: monospace, sans; |
|||
} |
|||
|
|||
body { |
|||
} |
|||
|
|||
h1 { |
|||
} |
|||
|
|||
h2 { |
|||
} |
|||
|
|||
h3 { |
|||
} |
|||
|
|||
h4 { |
|||
} |
|||
|
|||
h5 { |
|||
} |
|||
|
|||
h1, h2 , h3, h4 ,h5 ,h6, dt, caption { |
|||
color: green; |
|||
border-bottom: 1px solid green; |
|||
} |
|||
|
|||
pre { |
|||
width: 90%; |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
padding: 5px; |
|||
background-color: black; |
|||
color: lightgreen; |
|||
font-size: 12px; |
|||
border: 1px inset green; |
|||
overflow: auto; |
|||
} |
|||
|
|||
code, samp { |
|||
} |
|||
|
|||
cite, blockquote { |
|||
padding: 2px 0 2px 15px; |
|||
background-color: lightgreen; |
|||
border-left: 3px solid green; |
|||
} |
|||
|
|||
p { |
|||
} |
|||
|
|||
ul, ol { |
|||
} |
|||
|
|||
table { |
|||
} |
|||
|
|||
a { |
|||
color: lightgreen; |
|||
} |
|||
|
|||
a:link { |
|||
} |
|||
|
|||
a:visited { |
|||
} |
|||
|
|||
a:hover { |
|||
background-color: lightgreen; |
|||
color: black; |
|||
} |
|||
|
|||
a:active { |
|||
} |
|||
|
|||
a > img { |
|||
border-width: 0; |
|||
border-style: none; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#banner { |
|||
height: auto; |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
|
|||
#banner h1 { |
|||
margin: 0; |
|||
border-bottom: 2px solid green; |
|||
} |
|||
|
|||
#banner a, |
|||
#banner a:link, |
|||
#banner a:visited, |
|||
#banner a:active, |
|||
#banner a:hover { |
|||
color: green; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#banner a:hover { |
|||
background-color: green; |
|||
color: black; |
|||
} |
|||
|
|||
div#banner span.description { |
|||
position: absolute; |
|||
height: 18px; |
|||
width: auto; |
|||
right: 0; |
|||
padding: 3px; |
|||
color: green; |
|||
text-align: right; |
|||
font-size: 14px; |
|||
line-height: 18px; |
|||
border-bottom: 1px solid green; |
|||
border-left: 1px solid green; |
|||
} |
|||
|
|||
div#container { |
|||
position: relative; |
|||
width: 100%; |
|||
top: 25px; |
|||
} |
|||
|
|||
div#container div#content { |
|||
position: relative; |
|||
width: 75%; |
|||
} |
|||
|
|||
div#container div#links { |
|||
position: relative; |
|||
width: 25%; |
|||
right: 0; |
|||
top: 10px; |
|||
margin: 0; |
|||
text-align: left; |
|||
font-size: 15px; |
|||
float: right; |
|||
overflow: auto; |
|||
} |
|||
|
|||
div#container div#content div#intro { |
|||
width: 96%; |
|||
margin-left: 1%; |
|||
padding: 1%; |
|||
border: 1px dotted green; |
|||
} |
|||
|
|||
div#container div#content div.blog { |
|||
} |
|||
|
|||
div#container div#content div.blog h2 { |
|||
padding-left: 10px; |
|||
border-bottom: 1px solid green; |
|||
} |
|||
|
|||
.archives { |
|||
} |
|||
|
|||
.archives h2 { |
|||
} |
|||
|
|||
div#container div#content div.blog div.item { |
|||
position: relative; |
|||
width: 98%; |
|||
left: 1%; |
|||
background-color: transparent; |
|||
color: green; |
|||
border-left: 1px solid green; |
|||
border-right: 1px solid green; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody { |
|||
padding: 0 15px 0 15px; |
|||
text-align: justify; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody div.item-description { |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody .title { |
|||
padding-left: 10px; |
|||
color: lightgreen; |
|||
border-bottom: 2px solid lightgreen; |
|||
border-left: 2px solid lightgreen; |
|||
} |
|||
|
|||
#menu, .menu { |
|||
margin-top: 30px; |
|||
} |
|||
|
|||
div#container div#content div.menu { |
|||
text-align: center; |
|||
} |
|||
|
|||
.menu > table > tbody > tr > td { |
|||
} |
|||
|
|||
h2.date { |
|||
background-color: green; |
|||
color: black; |
|||
} |
|||
|
|||
div#container div#content div.item div.posted { |
|||
height: auto; |
|||
padding: 2px 5px 2px 15px; |
|||
background-color: green; |
|||
color: black; |
|||
} |
|||
|
|||
div#container div#content div.item div.posted br { |
|||
display: none; |
|||
} |
|||
|
|||
div#container div#content div.item a { |
|||
color: lightgreen; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
div#container div#content div.item a:visited { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
div#container div#content div.item a:hover { |
|||
background-color: transparent; |
|||
color: #eeeeee; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
div#container div#content div.item a:active { |
|||
border: 2px inset green; |
|||
} |
|||
|
|||
.articleshead { |
|||
} |
|||
|
|||
div#links div.calendar { |
|||
font-size: 18px; |
|||
} |
|||
|
|||
div#links div.calendar table { |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
} |
|||
|
|||
div#links div.calendar caption { |
|||
background-color: green; |
|||
border: none; |
|||
} |
|||
|
|||
div#links div.calendar caption a { |
|||
color: black; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
div#links div.calendar caption a:hover { |
|||
background-color: transparent; |
|||
color: lightgreen; |
|||
} |
|||
|
|||
div#links div.calendar table th { |
|||
color: lightgreen; |
|||
} |
|||
|
|||
.calendar td { |
|||
} |
|||
|
|||
.calendar a, |
|||
.calendar a:link, |
|||
.calendar a:active, |
|||
.calendar a:hover { |
|||
} |
|||
|
|||
.calendarhead { |
|||
} |
|||
|
|||
.side { |
|||
padding: 5px 5px 0 10px; |
|||
} |
|||
|
|||
.sidetitle { |
|||
margin-top: 15px; |
|||
padding-left: 5px; |
|||
text-align: left; |
|||
border-bottom: thin solid #999; |
|||
border-left: thin solid #999; |
|||
} |
|||
|
|||
.syndicate { |
|||
} |
|||
|
|||
.feed-small { |
|||
height: 14px; |
|||
padding-left: 17px; |
|||
background: url('../images/feed-icon-14x14.png') no-repeat 0% 50%; |
|||
} |
|||
|
|||
.powered { |
|||
color: #eeeeee; |
|||
font-size: 12px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.powered > a { |
|||
} |
|||
|
|||
.comments-body { |
|||
} |
|||
|
|||
.comments-post { |
|||
} |
|||
|
|||
.trackback-url { |
|||
} |
|||
|
|||
.trackback-body { |
|||
} |
|||
|
|||
.trackback-post { |
|||
} |
|||
|
|||
.comments-head { |
|||
} |
|||
|
|||
#banner-commentspop { |
|||
} |
|||
|
|||
.fortune { |
|||
color: #eeeeee; |
|||
} |
|||
|
@ -0,0 +1,347 @@ |
|||
/* |
|||
* |
|||
* - Name : redblack |
|||
* - Description : Theme using red and black. Title on the top, content on the left, menu on the right. |
|||
* - Author : Blankoworld |
|||
* - Link : http://ordyz/demo/nanoblogger/redblack/ |
|||
* |
|||
*/ |
|||
|
|||
html, body { |
|||
height: 100%; |
|||
width: 100%; |
|||
margin: 0; |
|||
padding: 0; |
|||
background-color: black; |
|||
color: #999999; |
|||
font-weight: bold; |
|||
font-family: monospace, sans; |
|||
} |
|||
|
|||
body { |
|||
} |
|||
|
|||
h1 { |
|||
} |
|||
|
|||
h2 { |
|||
} |
|||
|
|||
h3 { |
|||
} |
|||
|
|||
h4 { |
|||
} |
|||
|
|||
h5 { |
|||
} |
|||
|
|||
h1, h2 , h3, h4 ,h5 ,h6, dt, caption { |
|||
color: #999999; |
|||
border-bottom: 1px solid #999999; |
|||
} |
|||
|
|||
pre { |
|||
width: 90%; |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
padding: 5px; |
|||
background-color: black; |
|||
color: lightgray; |
|||
font-size: 12px; |
|||
border: 1px inset darkred; |
|||
overflow: auto; |
|||
} |
|||
|
|||
code, samp { |
|||
} |
|||
|
|||
cite, blockquote { |
|||
padding: 2px 0 2px 15px; |
|||
background-color: brown; |
|||
border-left: 3px solid black; |
|||
} |
|||
|
|||
p { |
|||
} |
|||
|
|||
ul, ol { |
|||
} |
|||
|
|||
table { |
|||
} |
|||
|
|||
a { |
|||
color: #d23636; |
|||
} |
|||
|
|||
a:link { |
|||
} |
|||
|
|||
a:visited { |
|||
} |
|||
|
|||
a:hover { |
|||
background-color: #d23636; |
|||
color: black; |
|||
} |
|||
|
|||
a:active { |
|||
} |
|||
|
|||
a > img { |
|||
border-width: 0; |
|||
border-style: none; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#banner { |
|||
height: auto; |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
|
|||
#banner h1 { |
|||
margin: 0; |
|||
border-bottom: 2px solid #d23636; |
|||
} |
|||
|
|||
#banner a, |
|||
#banner a:link, |
|||
#banner a:visited, |
|||
#banner a:active, |
|||
#banner a:hover { |
|||
color: #d23636; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#banner a:hover { |
|||
background-color: #d23636; |
|||
color: #752222; |
|||
} |
|||
|
|||
div#banner span.description { |
|||
position: absolute; |
|||
height: 18px; |
|||
width: auto; |
|||
right: 0; |
|||
padding: 3px; |
|||
color: #d23636; |
|||
text-align: right; |
|||
font-size: 14px; |
|||
line-height: 18px; |
|||
border-bottom: 1px solid #d23636; |
|||
border-left: 1px solid #d23636; |
|||
} |
|||
|
|||
div#container { |
|||
position: relative; |
|||
width: 100%; |
|||
top: 25px; |
|||
} |
|||
|
|||
div#container div#content { |
|||
position: relative; |
|||
width: 75%; |
|||
} |
|||
|
|||
div#container div#links { |
|||
position: relative; |
|||
width: 25%; |
|||
right: 0; |
|||
top: 10px; |
|||
margin: 0; |
|||
text-align: left; |
|||
font-size: 15px; |
|||
float: right; |
|||
overflow: auto; |
|||
} |
|||
|
|||
div#container div#content div#intro { |
|||
width: 96%; |
|||
margin-left: 1%; |
|||
padding: 1%; |
|||
border: 1px dotted darkred; |
|||
} |
|||
|
|||
div#container div#content div.blog { |
|||
} |
|||
|
|||
div#container div#content div.blog h2 { |
|||
padding-left: 10px; |
|||
border-bottom: 1px solid black; |
|||
} |
|||
|
|||
.archives { |
|||
} |
|||
|
|||
.archives h2 { |
|||
} |
|||
|
|||
div#container div#content div.blog div.item { |
|||
position: relative; |
|||
width: 98%; |
|||
left: 1%; |
|||
background-color: #752222; |
|||
color: black; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody { |
|||
padding: 0 15px 0 15px; |
|||
text-align: justify; |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody div.item-description { |
|||
} |
|||
|
|||
div#container div#content div.blog div.item div.blogbody .title { |
|||
padding-left: 10px; |
|||
color: #999999; |
|||
border-bottom: 2px solid #999999; |
|||
border-left: 2px solid #999999; |
|||
} |
|||
|
|||
#menu, .menu { |
|||
margin-top: 30px; |
|||
} |
|||
|
|||
div#container div#content div.menu { |
|||
text-align: center; |
|||
} |
|||
|
|||
.menu > table > tbody > tr > td { |
|||
} |
|||
|
|||
h2.date { |
|||
background-color: brown; |
|||
color: black; |
|||
} |
|||
|
|||
div#container div#content div.item div.posted { |
|||
height: auto; |
|||
padding: 2px 5px 2px 15px; |
|||
background-color: brown; |
|||
border-top: thin solid black; |
|||
} |
|||
|
|||
div#container div#content div.item div.posted br { |
|||
display: none; |
|||
} |
|||
|
|||
div#container div#content div.item a { |
|||
color: #999999; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
div#container div#content div.item a:visited { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
div#container div#content div.item a:hover { |
|||
background-color: transparent; |
|||
color: #eeeeee; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
div#container div#content div.item a:active { |
|||
border: 2px inset black; |
|||
} |
|||
|
|||
.articleshead { |
|||
} |
|||
|
|||
div#links div.calendar { |
|||
font-size: 18px; |
|||
} |
|||
|
|||
div#links div.calendar table { |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
} |
|||
|
|||
div#links div.calendar caption { |
|||
background-color: brown; |
|||
border: none; |
|||
} |
|||
|
|||
div#links div.calendar caption a { |
|||
color: black; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
div#links div.calendar caption a:hover { |
|||
background-color: transparent; |
|||
color: #eeeeee; |
|||
} |
|||
|
|||
div#links div.calendar table th { |
|||
color: brown; |
|||
} |
|||
|
|||
.calendar td { |
|||
} |
|||
|
|||
.calendar a, |
|||
.calendar a:link, |
|||
.calendar a:active, |
|||
.calendar a:hover { |
|||
} |
|||
|
|||
.calendarhead { |
|||
} |
|||
|
|||
.side { |
|||
padding: 5px 5px 0 10px; |
|||
} |
|||
|
|||
.sidetitle { |
|||
margin-top: 15px; |
|||
padding-left: 5px; |
|||
text-align: left; |
|||
border-bottom: thin solid #999; |
|||
border-left: thin solid #999; |
|||
} |
|||
|
|||
.syndicate { |
|||
} |
|||
|
|||
.feed-small { |
|||
height: 14px; |
|||
padding-left: 17px; |
|||
background: url('../images/feed-icon-14x14.png') no-repeat 0% 50%; |
|||
} |
|||
|
|||
.powered { |
|||
color: #eeeeee; |
|||
font-size: 12px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.powered > a { |
|||
} |
|||
|
|||
.comments-body { |
|||
} |
|||
|
|||
.comments-post { |
|||
} |
|||
|
|||
.trackback-url { |
|||
} |
|||
|
|||
.trackback-body { |
|||
} |
|||
|
|||
.trackback-post { |
|||
} |
|||
|
|||
.comments-head { |
|||
} |
|||
|
|||
#banner-commentspop { |
|||
} |
|||
|
|||
.fortune { |
|||
color: #eeeeee; |
|||
} |
|||
|
@ -0,0 +1,234 @@ |
|||
html, address, |
|||
blockquote, |
|||
body, dd, div, |
|||
dl, dt, fieldset, form, |
|||
frame, frameset, |
|||
h1, h2, h3, h4, |
|||
h5, h6, noframes, |
|||
ol, p, ul, center, |
|||
dir, hr, menu, pre, div { display: block } |
|||
li { display: list-item } |
|||
head { display: none } |
|||
table { display: table } |
|||
tr { display: table-row } |
|||
thead { display: table-header-group } |
|||
tbody { display: table-row-group } |
|||
tfoot { display: table-footer-group } |
|||
col { display: table-column } |
|||
colgroup { display: table-column-group } |
|||
td, th { display: table-cell } |
|||
caption { display: table-caption } |
|||
th { font-weight: bolder; text-align: center } |
|||
caption { text-align: center } |
|||
body { |
|||
color: #222222; |
|||
background-color: #f5f5f5; |
|||
font-family: Georgia, Times, "Times New Roman", serif; |
|||
/* font-family: Verdana, Arial, sans-serif;*/ |
|||
font-size: 0.85em; |
|||
margin:0px; |
|||
min-width: 750px; |
|||
|
|||
} |
|||
|
|||
h1 { font-family: Verdana, Arial, sans-serif;color:#003366;font-size: 2em; margin: .67em 0 } |
|||
h2 { font-family: Verdana, Arial, sans-serif;color:#003366;font-size: 1.5em; margin: .75em 0 } |
|||
h3 { font-family: Verdana, Arial, sans-serif;color:#003366;font-size: 1.17em; margin: .83em 0 } |
|||
h4, p, |
|||
blockquote, ul, |
|||
fieldset, form, |
|||
ol, dl, dt, dir, |
|||
menu { margin: 1.12em 0 } |
|||
h5 { font-size: .83em; margin: 1.5em 0 } |
|||
h6 { font-size: .75em; margin: 1.67em 0 } |
|||
h1, h2, h3, h4, |
|||
h5, h6, b, |
|||
strong { font-weight: bolder } |
|||
blockquote { margin-left: 40px; margin-right: 40px } |
|||
/*blockquote, ul, ol, dl, pre, kbd, samp { margin : 0}*/ |
|||
i, cite, em, |
|||
var, address { font-style: italic } |
|||
pre, code, |
|||
kbd, samp { font-family: MS Courier New, Courier, Prestige, monospace } |
|||
|
|||
pre { |
|||
white-space: pre; |
|||
border-top:2px solid #cccccc; |
|||
border-left:2px solid #cccccc; |
|||
border-right:1px solid #cccccc; |
|||
border-bottom:1px solid #cccccc; |
|||
overflow-x: auto; |
|||
overflow-y: auto; |
|||
background-color: #eeeeee; |
|||
padding: 10px; |
|||
} |
|||
|
|||
button, textarea, |
|||
input, select { display: inline-block } |
|||
big { font-size: 1.17em } |
|||
small, sub, sup { font-size: .83em } |
|||
sub { vertical-align: sub } |
|||
sup { vertical-align: super } |
|||
table { border-spacing: 2px; } |
|||
thead, tbody, |
|||
tfoot { vertical-align: middle } |
|||
td, th { vertical-align: inherit } |
|||
s, strike, del { text-decoration: line-through } |
|||
hr { border: 1px inset } |
|||
ol, ul, dir, |
|||
menu, dd { margin-left: 40px } |
|||
ol { list-style-type: decimal } |
|||
ol ul, ul ol, |
|||
ul ul, ol ol { margin-top: 0; margin-bottom: 0 } |
|||
u, ins { text-decoration: underline } |
|||
br:before { content: "\A" } |
|||
:before, :after { white-space: pre-line } |
|||
center { text-align: center } |
|||
:link, :visited { text-decoration: underline } |
|||
:focus { outline: thin dotted invert } |
|||
|
|||
|
|||
|
|||
|
|||
a:link {font-weight: bold;color: #003366; text-decoration: underline} |
|||
a:visited {font-weight: bold;color: #003366; text-decoration: underline} |
|||
a:active {font-weight: bold;color: #003366; text-decoration: none} |
|||
a:hover {font-weight: bold; color: #003366; text-decoration: none;background-color:silver} |
|||
a:focus {outline: none; color: #003366; text-decoration: none} |
|||
|
|||
.hidden { |
|||
display: none; |
|||
} |
|||
|
|||
.banner { |
|||
padding: 15px 30px; |
|||
color: #f5f5f5; |
|||
background-color: #4682b4;/*blue*/ |
|||
} |
|||
|
|||
.banner h1, h4 { |
|||
font-family: Georgia, Times, "Times New Roman", serif; |
|||
margin: 0; |
|||
padding: 0px 0px; |
|||
text-align:left; |
|||
} |
|||
|
|||
.banner a, |
|||
.banner a:hover, |
|||
.banner a:link, |
|||
.banner a:visited, |
|||
.banner a:active { |
|||
color: #f5f5f5;/*white;*/ |
|||
text-decoration:none; |
|||
background-color: #4682b4; |
|||
} |
|||
|
|||
.description { |
|||
margin-top: 15px; |
|||
font-style: italic; |
|||
text-transform:lowercase; |
|||
} |
|||
|
|||
|
|||
div.archives { |
|||
padding:0px 5px 15px 5px; |
|||
} |
|||
|
|||
div.blog { |
|||
margin:0; |
|||
padding:35px 5px 15px 5px; |
|||
} |
|||
|
|||
div.navbar { |
|||
border-top: 2px solid #f5f5f5; |
|||
font-family: verdana, arial, sans-serif; |
|||
font-size: 0.85em; |
|||
background-color: #4682b4; |
|||
} |
|||
|
|||
div.navbar a { |
|||
margin-left:-4px; |
|||
padding: 0 10px 0 10px; |
|||
text-transform: uppercase; |
|||
color: #f5f5f5; |
|||
font-weight: bold; |
|||
text-decoration: none; |
|||
border-right: solid 3px #f5f5f5; |
|||
background-color: #4682b4; |
|||
} |
|||
|
|||
div.navbar a:visited {color: #f5f5f5;text-decoration: none;background-color: #4682b4;} |
|||
div.navbar a:hover {color: #003366;background-color: #f5f5f5} |
|||
div.navbar a:focus {outline: none; color: #003366; background-color: #f5f5f5} |
|||
|
|||
div.item { |
|||
max-width: 740px; |
|||
padding-left:40px; |
|||
margin-bottom: 30px; |
|||
text-align: justify; |
|||
} |
|||
|
|||
.item h1 {text-align: center} |
|||
|
|||
.item h2, h3 {margin-left: -35px} |
|||
|
|||
div.item pre { |
|||
overflow: auto; |
|||
} |
|||
|
|||
div.item table { |
|||
width: 1200px; |
|||
} |
|||
|
|||
|
|||
|
|||
.title { |
|||
font-family: verdana, arial, sans-serif; |
|||
margin-left: -35px; |
|||
margin-bottom: 0.2em; |
|||
} |
|||
|
|||
div.menutop { |
|||
padding: 0.1em; |
|||
margin: 2em; |
|||
text-align: center; |
|||
} |
|||
|
|||
|
|||
.menu { |
|||
font-family: verdana, arial, sans-serif; |
|||
font-size: 0.85em; |
|||
font-weight: bold; |
|||
text-align: center; |
|||
margin:0; |
|||
} |
|||
|
|||
.menu >table {margin: 0 auto 0 auto} |
|||
|
|||
/*.menu td {background-color: #4682b4;}*/ |
|||
.menu a:link {color:#f5f5f5; text-decoration: none; background-color: #4682b4; } |
|||
.menu a:visited {color:#f5f5f5; text-decoration: none;background-color: #4682b4; } |
|||
.menu a:active {color:#03366; text-decoration: none; background-color: #f5f5f5; } |
|||
.menu a:hover {color:#003366; text-decoration: none; background-color: silver; } |
|||
.menu a:focus {outline: none; color: #003366; text-decoration: none; background-color: #f5f5f5;} |
|||
.menu a {padding:0px 4px 0px 4px} |
|||
|
|||
.date { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.posted { |
|||
font-family: Verdana, Arial, sans-serif; |
|||
font-size: 0.7em; |
|||
color: #0f0f0f; |
|||
padding: 0; |
|||
margin-bottom: 0.6em; |
|||
} |
|||
|
|||
.footer { |
|||
padding:5px 0; |
|||
border-top: 1px solid #cccccc; |
|||
font-family: verdana, arial, sans-serif; |
|||
font-size: 0.5em; |
|||
text-align: center; |
|||
} |
@ -0,0 +1,15 @@ |
|||
############### |
|||
## NB2PLUXML ## |
|||
############### |
|||
|
|||
Outil trouvé à l'adresse suivante : http://odie.mcom.fr/~clucas/blog/ |
|||
avec les instructions ci-après : |
|||
|
|||
Attention : Il vous faudra changer dans la fonction mat_migr_cat() la |
|||
relation entre les identifiants de catégories sous nanoblogger avec ceux dans |
|||
pluxml. De plus, dans le fichier h1.mig, il vous faudra changer l'encodage |
|||
si vous utilisez directement de l'UTF-8, car pour ma part, tout était en |
|||
ISO-8859-1. |
|||
|
|||
Merci à Christophe Lucas d'avoir suivi de près Nanoblogger pendant un temps. |
|||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.