First commit for Leggero-v2
BIN
fp-interface/themes/leggero/leggero-v2/imgs/back.png
Normal file
After Width: | Height: | Size: 720 KiB |
BIN
fp-interface/themes/leggero/leggero-v2/imgs/backbw.png
Normal file
After Width: | Height: | Size: 434 KiB |
BIN
fp-interface/themes/leggero/leggero-v2/imgs/backshade-2.png
Executable file
After Width: | Height: | Size: 1.7 KiB |
BIN
fp-interface/themes/leggero/leggero-v2/imgs/backshade-3.png
Executable file
After Width: | Height: | Size: 1.9 KiB |
BIN
fp-interface/themes/leggero/leggero-v2/imgs/backshade.png
Executable file
After Width: | Height: | Size: 979 B |
BIN
fp-interface/themes/leggero/leggero-v2/imgs/buttonsh.png
Normal file
After Width: | Height: | Size: 316 B |
BIN
fp-interface/themes/leggero/leggero-v2/imgs/buttonsh2.png
Normal file
After Width: | Height: | Size: 276 B |
BIN
fp-interface/themes/leggero/leggero-v2/imgs/shade.png
Executable file
After Width: | Height: | Size: 1.4 KiB |
BIN
fp-interface/themes/leggero/leggero-v2/preview.png
Normal file
After Width: | Height: | Size: 21 KiB |
1169
fp-interface/themes/leggero/leggero-v2/res/admin.css
Executable file
51
fp-interface/themes/leggero/leggero-v2/res/column.css
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
/*
|
||||||
|
===================
|
||||||
|
Leggero CSS Styles
|
||||||
|
===================
|
||||||
|
Ispired by: http://pluxml.org theme default
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Name: Leggero
|
||||||
|
Author: NoWhereMan, drudo & Marc Thibeault
|
||||||
|
Version: 0.1
|
||||||
|
Module: style.css
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ===== COLUMN ===== */
|
||||||
|
#column {
|
||||||
|
float: right;
|
||||||
|
width: 230px !important;
|
||||||
|
width: 230px;
|
||||||
|
font-size: 80% !important;
|
||||||
|
font-size: 75%;
|
||||||
|
height:1%;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
padding: 10px;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#column h4 {
|
||||||
|
/* Titles of the sections */
|
||||||
|
margin-bottom: .5em;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#column p, #column div { margin: 10px 5px }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* === List === */
|
||||||
|
#column ul li table { font-size: 100% }
|
||||||
|
|
||||||
|
#column ul {
|
||||||
|
list-style-type: none;
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-bottom: .5em;
|
||||||
|
padding-left: 1em
|
||||||
|
}
|
||||||
|
|
||||||
|
#column fieldset { margin: 0 5px 0 5px }
|
||||||
|
|
||||||
|
#column legend { font-size: 100% }
|
292
fp-interface/themes/leggero/leggero-v2/res/common.css
Normal file
@ -0,0 +1,292 @@
|
|||||||
|
/*
|
||||||
|
===================
|
||||||
|
Leggero CSS Styles
|
||||||
|
===================
|
||||||
|
Ispired by: http://pluxml.org theme default
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Name: Leggero
|
||||||
|
Author: NoWhereMan, drudo & Marc Thibeault
|
||||||
|
Version: 0.1
|
||||||
|
Module: common.css
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ===== GENERAL (redefinition HTML tag) ===== */
|
||||||
|
html {
|
||||||
|
font-size: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-size: 100%;
|
||||||
|
padding: 0;
|
||||||
|
text-align:center;
|
||||||
|
background: url('../imgs/backbw.png') no-repeat fixed top center;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr { display: none }
|
||||||
|
|
||||||
|
p { margin: .5em 0 }
|
||||||
|
|
||||||
|
img { border: none }
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
width: 90%;
|
||||||
|
color: #666;
|
||||||
|
margin: 1em 1em;
|
||||||
|
padding: 0 10px;
|
||||||
|
border-left: 5px solid #bbb
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, code {
|
||||||
|
font-family: Lucida Console, Monaco, monospace;
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
border-bottom: 1px solid #ddd;
|
||||||
|
background-color: #efefef;
|
||||||
|
|
||||||
|
overflow: auto;
|
||||||
|
width: 90%;
|
||||||
|
margin: 1em 1em;
|
||||||
|
padding: 5px 10px;
|
||||||
|
|
||||||
|
/* fix overflow in IE */
|
||||||
|
min-height: 40px;
|
||||||
|
height: auto !important;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul, li, ol { margin: 0; padding: 0 }
|
||||||
|
|
||||||
|
/* === Form === */
|
||||||
|
form { margin: 1em 0 }
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
margin: 0 0 1em 0;
|
||||||
|
padding: .5em;
|
||||||
|
border: #ddd solid 1px
|
||||||
|
}
|
||||||
|
|
||||||
|
legend {
|
||||||
|
color: #666666;
|
||||||
|
font-size: 80%;
|
||||||
|
font-style: oblique
|
||||||
|
}
|
||||||
|
|
||||||
|
input, textarea, select {
|
||||||
|
padding: .2em;
|
||||||
|
border: 1px solid #999;
|
||||||
|
color: #222;
|
||||||
|
background-color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:hover, input:focus, textarea:hover, textarea:focus {
|
||||||
|
border: 1px solid #AA1111;
|
||||||
|
background-color: #fff
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
font-size: 100%;
|
||||||
|
font-family: 'Lucida Grande', 'Trebuchet MS', arial, Helvetica, sans-serif;
|
||||||
|
width: 99%;
|
||||||
|
margin-top: .1em;
|
||||||
|
margin-bottom: 1em
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ===== LINKS GENERAL ===== */
|
||||||
|
a:link, a:visited {
|
||||||
|
color: #B83C32;
|
||||||
|
font-weight: bold;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===== HEADERS TAGS ===== */
|
||||||
|
h1 {
|
||||||
|
/* Title of the blog */
|
||||||
|
font-size: 2.2em;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
margin: 2em 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 { } /* see h2.date */
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
/* Titles of the entry */
|
||||||
|
font-family: 'book antiqua', georgia, garamond, times, 'times new roman', serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 1.6em;
|
||||||
|
margin: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 { font-size: 1.2em; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ===== DIV CONTAINER ALL ELEMENTS BLOCK ===== */
|
||||||
|
#body-container {
|
||||||
|
text-align: left;
|
||||||
|
width: 1000px !important;
|
||||||
|
width: 1000px; /* fix for I.E. */
|
||||||
|
margin: 0 auto 0 auto;
|
||||||
|
padding: 5px;
|
||||||
|
background-color: rgba(0,0,0,0.8);
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ===== HEAD ===== */
|
||||||
|
#head {
|
||||||
|
font-family: 'book antiqua', georgia, garamond, times, 'times new roman', serif;
|
||||||
|
padding: 25px 25px 25px 25px;
|
||||||
|
margin: 10px;
|
||||||
|
/*background: #aa4142 url('../imgs/shade.png1') repeat-x;*/
|
||||||
|
background: rgba(184,60,50,0.7);
|
||||||
|
border: #bbb 1px solid;
|
||||||
|
border-radius: 10px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
#head a { color: white; text-decoration: none }
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
font-size: 100%;
|
||||||
|
font-style: oblique;
|
||||||
|
color: #F1F1F1;
|
||||||
|
margin: .5em 0 0 0
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ===== DIV CONTAINER "MAIN" ===== */
|
||||||
|
#outer-container {
|
||||||
|
position: relative;
|
||||||
|
height: 1%;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* ===== MAIN ===== */
|
||||||
|
#main h4 { margin: 2em 0 0 0}
|
||||||
|
|
||||||
|
#main {
|
||||||
|
float:left;
|
||||||
|
position: relative;
|
||||||
|
width: 65% !important;
|
||||||
|
width: 65%;
|
||||||
|
font-size: 100%;
|
||||||
|
padding: 25px;
|
||||||
|
margin: 20px;
|
||||||
|
background-color: rgba(255,255,255,0.8);
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main p { line-height: 1.5em; margin-top: 1.2em; }
|
||||||
|
|
||||||
|
#main img { margin: .5em }
|
||||||
|
|
||||||
|
/* === List === */
|
||||||
|
#main ul {
|
||||||
|
list-style-type: disc;
|
||||||
|
padding: 0 0 0 1.6em
|
||||||
|
}
|
||||||
|
|
||||||
|
#main ol {
|
||||||
|
list-style-position: inside;
|
||||||
|
padding: 0 1.6em 0 1.6em
|
||||||
|
}
|
||||||
|
|
||||||
|
#commentform fieldset p { margin: 0 0 .5em 0 }
|
||||||
|
|
||||||
|
#comments li {
|
||||||
|
margin: 0 0 1.5em 0;
|
||||||
|
padding: 5px;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
border-bottom: 1px solid #ddd;
|
||||||
|
background: #efefef
|
||||||
|
}
|
||||||
|
|
||||||
|
/* === Class of main block === */
|
||||||
|
h2.date {
|
||||||
|
font-size: 0.8em;
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
.date { /* date under titles of the entry */
|
||||||
|
font-size: 80%;
|
||||||
|
font-style: oblique;
|
||||||
|
color: black;
|
||||||
|
margin: .2em 0 .8em 0
|
||||||
|
}
|
||||||
|
|
||||||
|
/* .entry class */
|
||||||
|
.entry {
|
||||||
|
margin: 0 0 1.5em 0;
|
||||||
|
padding: 0;
|
||||||
|
overflow: auto; /* floating images fix IE<7*/
|
||||||
|
}
|
||||||
|
|
||||||
|
#main>.entry {
|
||||||
|
overflow: hidden; /* rest of the world :) */
|
||||||
|
}
|
||||||
|
/* end of .entry */
|
||||||
|
|
||||||
|
#main ul.entry-footer { /* entry footer */
|
||||||
|
clear: both;
|
||||||
|
font-size: 80%;
|
||||||
|
color: black;
|
||||||
|
margin: 2em 0 .5em 0;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entry-footer li {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.admincontrols { /* [edit] and [delete] */
|
||||||
|
font-size: 80%;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttonbar { text-align: center }
|
||||||
|
|
||||||
|
.buttonbar input {
|
||||||
|
text-align: center;
|
||||||
|
margin: .1em .5em;
|
||||||
|
padding: 0 1em
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation { /* next entries & previous entries link */
|
||||||
|
font-size: 80%;
|
||||||
|
margin-bottom: 5em
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ===== FOOTER ===== */
|
||||||
|
#footer {
|
||||||
|
clear: both;
|
||||||
|
font-size: 80%;
|
||||||
|
color: #555;
|
||||||
|
padding: 5px;
|
||||||
|
border-top: #bbb 1px solid
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
text-shadow: 0 3px 2px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
59
fp-interface/themes/leggero/leggero-v2/res/globals.css
Executable file
@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
===================
|
||||||
|
Leggero CSS Styles
|
||||||
|
===================
|
||||||
|
Ispired by: http://pluxml.org theme default
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Name: Leggero
|
||||||
|
Author: NoWhereMan, drudo & Marc Thibeault
|
||||||
|
Version: 0.1
|
||||||
|
Module: globals.css
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.alignleft { float: left }
|
||||||
|
|
||||||
|
.alignright { float: right }
|
||||||
|
|
||||||
|
/* ===== NOTIFICATION ===== */
|
||||||
|
#main ul.msgs, ul.msgs {
|
||||||
|
margin: 0;
|
||||||
|
padding: 1em 2em
|
||||||
|
}
|
||||||
|
|
||||||
|
.errors {
|
||||||
|
color: #901d1d;
|
||||||
|
border-top: 1px solid;
|
||||||
|
border-bottom: 1px solid;
|
||||||
|
border-color: #ffbbbb;
|
||||||
|
background: #ffdddd
|
||||||
|
}
|
||||||
|
|
||||||
|
.errors a {
|
||||||
|
color: #901d1d;
|
||||||
|
text-decoration: underline;
|
||||||
|
font-weight: normal
|
||||||
|
}
|
||||||
|
|
||||||
|
.notifications,.enabled {
|
||||||
|
color : #1d901d;
|
||||||
|
border-top: 1px solid #bbffbb;
|
||||||
|
border-bottom: 1px solid #bbffbb;
|
||||||
|
background: #ddffdd
|
||||||
|
}
|
||||||
|
|
||||||
|
.warnings {
|
||||||
|
color : #8a7802;
|
||||||
|
border-top: 1px solid;
|
||||||
|
border-bottom: 1px solid;
|
||||||
|
border-color: #f8e674;
|
||||||
|
background: #fffdd5;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.field-error {
|
||||||
|
border: red 1px solid;
|
||||||
|
background: #fdd
|
||||||
|
}
|
102
fp-interface/themes/leggero/leggero-v2/res/print.css
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
/*
|
||||||
|
===================
|
||||||
|
Leggero CSS Styles
|
||||||
|
===================
|
||||||
|
Ispired by: http://pluxml.org theme default
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Name: Leggero
|
||||||
|
Author: Laborix
|
||||||
|
Version: 0.1
|
||||||
|
Module: print.css
|
||||||
|
*/
|
||||||
|
|
||||||
|
body {
|
||||||
|
color: #333;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #333;
|
||||||
|
background-color: transparent;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 130%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 130%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.date {
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#column {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admincontrols {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.readmore {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navigation {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entry-footer {
|
||||||
|
clear: both;
|
||||||
|
font-size: 80%;
|
||||||
|
margin: 2em 0 3em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
margin: 1em 1em;
|
||||||
|
padding: 0 10px;
|
||||||
|
width: 90%;
|
||||||
|
color: #333;
|
||||||
|
background-color: transparent;
|
||||||
|
font-style: italic;
|
||||||
|
border-left: 5px solid #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
clear: both;
|
||||||
|
margin: 0.5em 0 0.5em 0;
|
||||||
|
padding: 0.5em;
|
||||||
|
width: 90%;
|
||||||
|
color: #333;
|
||||||
|
background-color: #eee;
|
||||||
|
font-size: 70%;
|
||||||
|
border: 1px dotted #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-comments {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#commentform {
|
||||||
|
display: none;
|
||||||
|
}
|
34
fp-interface/themes/leggero/leggero-v2/res/style.css
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
===================
|
||||||
|
Leggero CSS Styles
|
||||||
|
===================
|
||||||
|
Ispired by: http://pluxml.org theme default
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Name: Leggero
|
||||||
|
Author: NoWhereMan, drudo & Marc Thibeault
|
||||||
|
Version: 0.1
|
||||||
|
Module: style.css
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* imports common style ruleset */
|
||||||
|
@import url(common.css);
|
||||||
|
@import url(globals.css);
|
||||||
|
|
||||||
|
/* imports column (where widgets usually go) rules */
|
||||||
|
@import url(column.css);
|
||||||
|
|
||||||
|
/* defines rules specific to the front page */
|
||||||
|
body { margin: 10px 0 0 0 }
|
||||||
|
|
||||||
|
#comments li.comment-admin {
|
||||||
|
padding:1em
|
||||||
|
}
|
||||||
|
|
||||||
|
#comments li.comment-admin strong.comment-name { font-size:140% }
|
||||||
|
|
||||||
|
#widget-searchbox form {
|
||||||
|
text-align: center;
|
||||||
|
}
|
25
fp-interface/themes/leggero/leggero-v2/style.conf.php
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
Style Name: Leggero V2
|
||||||
|
Style URI: http://www.flatpress.org/
|
||||||
|
Description: Modern and actual version of the default FlatPress theme.
|
||||||
|
Version: 0.705
|
||||||
|
Author: NoWhereMan, Drudo and Marc Thibeault
|
||||||
|
Author URI: http://www.flatpress.org/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$style['name'] = 'leggero-v2';
|
||||||
|
$style['author'] = 'NoWhereMan';
|
||||||
|
$style['www'] = 'http://www.flatpress.org/';
|
||||||
|
|
||||||
|
$style['version'] = 0.705;
|
||||||
|
|
||||||
|
$style['style_def'] = 'style.css';
|
||||||
|
$style['style_admin'] = 'admin.css';
|
||||||
|
$style['style_print'] = 'print.css';
|
||||||
|
$style['style'] = 'default';
|
||||||
|
|
||||||
|
?>
|