Compare commits
No commits in common. "4099ef57e60d870744e4aef6611e6758f58ef08f" and "37f8b31a258c671a4d6c48d2713ed8513f3be76e" have entirely different histories.
4099ef57e6
...
37f8b31a25
8 changed files with 13 additions and 30 deletions
|
@ -1,6 +1,6 @@
|
|||
# flatpress-theme-snail-orange
|
||||
|
||||
snail theme for flatpress but in orange color, transparent, rounded corners, colorful background image i stole from https://websitesetup.org/bootstrap-tutorial-for-beginners/ :)
|
||||
snail theme for flatpress but in orange color
|
||||
|
||||
forked from https://wiki.flatpress.org/res:themes:snail
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<hr />
|
||||
<div id="footer">
|
||||
{action hook=wp_footer}
|
||||
Snail-orange Theme is designed by <a href="http://www.stealthsettings.com">Stealth Settings</a> and has been ported to FP and restyled by <a href="http://marcoverga86.netsons.org">Marco Vergagni</a> and again restyled by <a href="https://deltalima.org">DeltaLima</a> in 2023.
|
||||
Snail-orange Theme is designed by <a href="http://www.stealthsettings.com">Stealth Settings</a> and has been ported to FP and restyled by <a href="http://marcoverga86.netsons.org">Marco Vergagni</a>, modified 2023 by DeltaLima.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,19 +9,17 @@
|
|||
<body>
|
||||
<div id="body-container">
|
||||
<div id="head">
|
||||
<a href="{$flatpress.WWW}index.php/welcome">
|
||||
<div id="head-bubble">
|
||||
<div id="title-container">
|
||||
<!-- <h1><a href="index.php/welcome">{$flatpress.TITLE}</a></h1> -->
|
||||
<h1>{$flatpress.TITLE}</h1>
|
||||
<h1><a href="index.php">{$flatpress.TITLE}</a></h1>
|
||||
<p class="subtitle">{$flatpress.SUBTITLE}</p>
|
||||
</div>
|
||||
<div id="logo-container">
|
||||
<img id="logo-img" src="/blog/fp-interface/themes/flatpress-theme-snail-orange/imgs/Mandrake-Tux_redraw.png">
|
||||
</div>
|
||||
<div id="clear-container"></div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<hr />
|
||||
<div id="outer-container">
|
||||
|
|
BIN
imgs/circle.gif
BIN
imgs/circle.gif
Binary file not shown.
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 60 B |
Binary file not shown.
Before Width: | Height: | Size: 60 B |
|
@ -32,8 +32,7 @@ Module: style.css
|
|||
/*#column div, #column ul { */
|
||||
#column div {
|
||||
/* background: #393939 */
|
||||
/* background-color: rgba(0, 0, 0, 0.2);*/
|
||||
background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-radius: 5px;
|
||||
padding: 2px;
|
||||
|
||||
|
|
|
@ -37,8 +37,7 @@ blockquote {
|
|||
margin: 1em 1em;
|
||||
padding: 0 10px;
|
||||
/*border-left: 10px solid white;*/
|
||||
border-left: 10px solid #daaa55;
|
||||
background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
|
||||
border-left: 10px solid #444444;
|
||||
}
|
||||
|
||||
pre, code {
|
||||
|
@ -54,17 +53,12 @@ pre {
|
|||
/* background-color: #a8a8a8;*/
|
||||
/*border-bottom: 1px solid #555;*/
|
||||
border: 1px solid #555;
|
||||
/*background-color: #444444;*/
|
||||
|
||||
/* ubuntu terminal background color */
|
||||
background: #380c2a;
|
||||
background-color: #444444;
|
||||
color: #CCCCCC;
|
||||
overflow: auto;
|
||||
width: 90%;
|
||||
margin: 1em 1em;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 3px 3px 6px black;
|
||||
}
|
||||
|
||||
ul, li, ol { margin: 0; padding: 0 }
|
||||
|
@ -137,8 +131,8 @@ h6 { font-size: 0.9em }
|
|||
/* ===== DIV CONTAINER ALL ELEMENTS BLOCK ===== */
|
||||
#body-container {
|
||||
text-align: left;
|
||||
width: 72% !important;
|
||||
width: 72%; /* fix for I.E. */
|
||||
width: 69% !important;
|
||||
width: 69%; /* fix for I.E. */
|
||||
margin: 0 auto 0 auto;
|
||||
padding: 5px;
|
||||
/* background-color: #2D2D2D;*/
|
||||
|
@ -157,8 +151,7 @@ h6 { font-size: 0.9em }
|
|||
float: center;
|
||||
}
|
||||
#head-bubble {
|
||||
/* background-color: rgba(0, 0, 0, 0.2);*/
|
||||
background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-radius: 15px;
|
||||
width: 100% !important;
|
||||
height: 124px;
|
||||
|
@ -279,12 +272,6 @@ ol li, ul li { padding-bottom: 0.9em }
|
|||
|
||||
.entry p { font-size: 16px }
|
||||
|
||||
.entry-title {
|
||||
/*color: #26a269;*/
|
||||
/* ubuntu color background term color: #380c2a; */
|
||||
color: #daaa55;
|
||||
}
|
||||
|
||||
#main .entrytitle {
|
||||
font-family: Candara, 'Cataneo BT', 'book antiqua', georgia, garamond, times, 'times new roman';
|
||||
margin: 0;
|
||||
|
@ -324,8 +311,7 @@ ol li, ul li { padding-bottom: 0.9em }
|
|||
#footer {
|
||||
text-align: center;
|
||||
/* background: #2D2D2D;*/
|
||||
/* background-color: rgba(0, 0, 0, 0.2);*/
|
||||
background-image: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.2));
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-top-right-radius: 5px;
|
||||
border-top-left-radius: 5px;
|
||||
border-bottom-right-radius: 15px;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{static_block}
|
||||
{static}
|
||||
<div id="{$id}" class="entry">
|
||||
<div class="entry-title"><h2>{$subject}</h2></div>
|
||||
<h3>{$subject}</h3>
|
||||
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"}</p>
|
||||
{$content|tag:the_content}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue