This commit is contained in:
parent
32b7923774
commit
034e929f62
61
owmx-3.0/archives.ftl
Normal file
61
owmx-3.0/archives.ftl
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<#--
|
||||||
|
|
||||||
|
Solo - A small and beautiful blogging system written in Java.
|
||||||
|
Copyright (c) 2010-2019, b3log.org & hacpai.com
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
-->
|
||||||
|
<#include "../../common-template/macro-common_head.ftl">
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<@head title="${archiveLabel} - ${blogTitle}">
|
||||||
|
<link rel="stylesheet" href="${staticServePath}/skins/${skinDirName}/css/base.css?${staticResourceVersion}"/>
|
||||||
|
</@head>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
${topBarReplacement}
|
||||||
|
<div id="a">
|
||||||
|
<#include "header.ftl">
|
||||||
|
<div id="b">
|
||||||
|
<article>
|
||||||
|
<#if 0 != archiveDates?size>
|
||||||
|
<ul id="tags">
|
||||||
|
<#list archiveDates as archiveDate>
|
||||||
|
<li>
|
||||||
|
<#if "en" == localeString?substring(0, 2)>
|
||||||
|
<a class="post-title" href="${servePath}/archives/${archiveDate.archiveDateYear}/${archiveDate.archiveDateMonth}">
|
||||||
|
${archiveDate.monthName} ${archiveDate.archiveDateYear}(${archiveDate.archiveDatePublishedArticleCount})
|
||||||
|
</a>
|
||||||
|
<#else>
|
||||||
|
<a class="post-title" href="${servePath}/archives/${archiveDate.archiveDateYear}/${archiveDate.archiveDateMonth}">
|
||||||
|
${archiveDate.archiveDateYear} ${yearLabel} ${archiveDate.archiveDateMonth} ${monthLabel}(${archiveDate.archiveDatePublishedArticleCount})
|
||||||
|
</a>
|
||||||
|
</#if>
|
||||||
|
</li>
|
||||||
|
</#list>
|
||||||
|
</ul>
|
||||||
|
</#if>
|
||||||
|
</article>
|
||||||
|
<#include "side.ftl">
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
<#include "footer.ftl">
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
Util.buildTags();
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
@ -29,10 +29,11 @@ Update: Dongxu Wang 2011-02-24
|
|||||||
/*
|
/*
|
||||||
* skin owmx-3.0 style
|
* skin owmx-3.0 style
|
||||||
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
|
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
|
||||||
* @version 2.1.0.1, Mar 16, 2019
|
* @version 2.2.0.0, Mar 22, 2019
|
||||||
*/
|
*/
|
||||||
|
@import "../../../scss/toc";
|
||||||
@import "vditor/src/assets/scss/classic";
|
@import "vditor/src/assets/scss/classic";
|
||||||
|
|
||||||
.left {
|
.left {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
@ -50,26 +51,29 @@ Update: Dongxu Wang 2011-02-24
|
|||||||
.clear:after {
|
.clear:after {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
.none {
|
.none {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Reset */
|
/* Reset */
|
||||||
header, footer, article, nav, section, aside, time, hgroup {
|
header, footer, article, nav, section, aside, time, hgroup {
|
||||||
display : block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
html, body, header, footer, article, nav, section, aside, time, h1, h2, h3, p, a, ul, li, dl, dd, dt, table, thead, tfoot, tbody, th, tr, td {
|
html, body, header, footer, article, nav, section, aside, time, h1, h2, h3, p, a, ul, li, dl, dd, dt, table, thead, tfoot, tbody, th, tr, td {
|
||||||
border : 0;
|
border: 0;
|
||||||
font : 12px/22px 'Verdana', 'sans-serif';
|
font: 12px/22px 'Verdana', 'sans-serif';
|
||||||
margin : 0;
|
margin: 0;
|
||||||
outline : 0;
|
outline: 0;
|
||||||
padding : 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* BASICS */
|
/* BASICS */
|
||||||
BODY {
|
BODY {
|
||||||
background : #DDD;
|
background: #DDD;
|
||||||
margin : 0px 0 0 0;
|
margin: 0px 0 0 0;
|
||||||
color : #444;
|
color: #444;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
@ -81,43 +85,50 @@ img {
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
A, A:LINK, A:ACTIVE, A:VISITED{
|
A, A:LINK, A:ACTIVE, A:VISITED {
|
||||||
color : #016f93;
|
color: #016f93;
|
||||||
text-decoration : none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
A:HOVER {
|
A:HOVER {
|
||||||
color : #DB0202;
|
color: #DB0202;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.selected {
|
a.selected {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
H1, H3, H4, H5, H6 {
|
H1, H3, H4, H5, H6 {
|
||||||
background : url(../images/ai4.png) no-repeat 0 7px;
|
background: url(../images/ai4.png) no-repeat 0 7px;
|
||||||
border-bottom : 1px solid #CCC;
|
border-bottom: 1px solid #CCC;
|
||||||
color : #666;
|
color: #666;
|
||||||
font-weight : bold;
|
font-weight: bold;
|
||||||
margin : 0 0 10px;
|
margin: 0 0 10px;
|
||||||
padding : 0 0 0 25px;
|
padding: 0 0 0 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
H1 {
|
H1 {
|
||||||
background : url(../images/ai4.png) no-repeat 0 6px;
|
background: url(../images/ai4.png) no-repeat 0 6px;
|
||||||
font-size : 15px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
H1 a{
|
|
||||||
font-weight : bold;
|
H1 a {
|
||||||
font-size : 15px;
|
font-weight: bold;
|
||||||
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
H2 {
|
H2 {
|
||||||
font-size : 14px;
|
font-size: 14px;
|
||||||
margin : 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
H3 {
|
H3 {
|
||||||
background : url(../images/ai5.png) no-repeat 0 7px;
|
background: url(../images/ai5.png) no-repeat 0 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
H3, H4, H5, H6 {
|
H3, H4, H5, H6 {
|
||||||
font-size : 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
@ -126,189 +137,223 @@ h4 {
|
|||||||
|
|
||||||
sup {
|
sup {
|
||||||
color: #444;
|
color: #444;
|
||||||
top : -4px;
|
top: -4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Header */
|
/* Header */
|
||||||
header {
|
header {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
background : #0098CC url(../images/hd.jpg) no-repeat top left;
|
background: #0098CC url(../images/hd.jpg) no-repeat top left;
|
||||||
height : 200px;
|
height: 200px;
|
||||||
margin : 0 0 10px 0;
|
margin: 0 0 10px 0;
|
||||||
padding : 10px 10px;
|
padding: 10px 10px;
|
||||||
position : relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
header a:link, header a:active, header a:visited{
|
|
||||||
font-weight : bold;
|
header a:link, header a:active, header a:visited {
|
||||||
color : #FFF;
|
font-weight: bold;
|
||||||
font-size : 16px;
|
color: #FFF;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
header a:hover {
|
header a:hover {
|
||||||
color : #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
header p {
|
|
||||||
border-radius : 4px;
|
header .user__sites {
|
||||||
background : #FFF;
|
border-radius: 4px;
|
||||||
bottom : 20px;
|
background: #FFF;
|
||||||
color : #000;
|
bottom: 20px;
|
||||||
font-weight : bold;
|
color: #000;
|
||||||
opacity : 0.5;
|
font-weight: bold;
|
||||||
padding : 10px;
|
opacity: 0.5;
|
||||||
position : absolute;
|
padding: 10px;
|
||||||
right : 20px;
|
position: absolute;
|
||||||
width : 400px;
|
right: 20px;
|
||||||
|
width: 396px;
|
||||||
|
.user__site {
|
||||||
|
float: left;
|
||||||
|
margin-right: 8px;
|
||||||
|
height: 20px;
|
||||||
|
color: #016f93;
|
||||||
|
&:hover {
|
||||||
|
color: #DB0202;
|
||||||
|
}
|
||||||
|
svg {
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
fill: currentColor;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Article */
|
/* Article */
|
||||||
article {
|
article {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
background : #FFF;
|
background: #FFF;
|
||||||
border: 1px solid #CCC;
|
border: 1px solid #CCC;
|
||||||
float : right;
|
float: right;
|
||||||
height : auto;
|
height: auto;
|
||||||
padding : 20px;
|
padding: 20px;
|
||||||
width : 550px;
|
width: 550px;
|
||||||
}
|
}
|
||||||
article h1{
|
|
||||||
color : #666;
|
article h1 {
|
||||||
font-weight : bold;
|
color: #666;
|
||||||
font-size : 15px;
|
font-weight: bold;
|
||||||
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Highlighted Paragraphs */
|
/* Highlighted Paragraphs */
|
||||||
.highlight-1, .highlight-2, .highlight-3 {
|
.highlight-1, .highlight-2, .highlight-3 {
|
||||||
-moz-border-radius : 4px;
|
-moz-border-radius: 4px;
|
||||||
-webkit-border-radius : 4px;
|
-webkit-border-radius: 4px;
|
||||||
padding : 5px 10px;
|
padding: 5px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight-1 {
|
.highlight-1 {
|
||||||
background : #FFCCCC;
|
background: #FFCCCC;
|
||||||
border : 1px dotted #FF9966;
|
border: 1px dotted #FF9966;
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight-2 {
|
.highlight-2 {
|
||||||
background : #FFFF99;
|
background: #FFFF99;
|
||||||
border : 1px dotted #FFCC33;
|
border: 1px dotted #FFCC33;
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight-3 {
|
.highlight-3 {
|
||||||
background : #CCFF99;
|
background: #CCFF99;
|
||||||
border : 1px dotted #CCCC33;
|
border: 1px dotted #CCCC33;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Citations & Quotes */
|
/* Citations & Quotes */
|
||||||
cite {
|
cite {
|
||||||
border-left: 2px solid #0098CC;
|
border-left: 2px solid #0098CC;
|
||||||
color : #666;
|
color: #666;
|
||||||
font-size : 12px;
|
font-size: 12px;
|
||||||
font-style : normal;
|
font-style: normal;
|
||||||
font-weight : bold;
|
font-weight: bold;
|
||||||
margin : 0;
|
margin: 0;
|
||||||
padding : 5px 10px;
|
padding: 5px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 2px solid #0098CC;
|
border-left: 2px solid #0098CC;
|
||||||
color : #666;
|
color: #666;
|
||||||
margin : 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
padding : 5px 10px;
|
padding: 5px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pre & Code */
|
/* Pre & Code */
|
||||||
pre {
|
pre {
|
||||||
color : #333;
|
color: #333;
|
||||||
font-size : 10px;
|
font-size: 10px;
|
||||||
line-height : 15px; /*--Height of each line of code--*/
|
line-height: 15px; /*--Height of each line of code--*/
|
||||||
overflow : hidden; /*--If the Code exceeds the width, put "auto" and scrolling is available--*/
|
overflow: hidden; /*--If the Code exceeds the width, put "auto" and scrolling is available--*/
|
||||||
overflow-y : hidden; /*--Hides vertical scroll created by IE--*/
|
overflow-y: hidden; /*--Hides vertical scroll created by IE--*/
|
||||||
}
|
}
|
||||||
|
|
||||||
pre code {
|
pre code {
|
||||||
background : #EEE;
|
background: #EEE;
|
||||||
border-left : 2px solid #0098CC;
|
border-left: 2px solid #0098CC;
|
||||||
margin : 0 0 10px 0;
|
margin: 0 0 10px 0;
|
||||||
padding : 5px;
|
padding: 5px;
|
||||||
display : block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Calendar */
|
/* Calendar */
|
||||||
dl.vevent {
|
dl.vevent {
|
||||||
margin : -20px 0 20px 0;
|
margin: -20px 0 20px 0;
|
||||||
padding : 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vevent dt {
|
.vevent dt {
|
||||||
font-size : 10px;
|
font-size: 10px;
|
||||||
position : relative;
|
position: relative;
|
||||||
left : 0;
|
left: 0;
|
||||||
top : 22px;
|
top: 22px;
|
||||||
font-weight : bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.vevent dd
|
|
||||||
{
|
.vevent dd {
|
||||||
border-left : 2px solid #0098CC;
|
border-left: 2px solid #0098CC;
|
||||||
font-size : 11px;
|
font-size: 11px;
|
||||||
margin : 0 0 0 80px;
|
margin: 0 0 0 80px;
|
||||||
padding : 0 0 0 10px;
|
padding: 0 0 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
dd.summary {
|
dd.summary {
|
||||||
font-weight : bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vevent a {
|
.vevent a {
|
||||||
font-size : 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Forms */
|
/* Forms */
|
||||||
article form {
|
article form {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background : #DDD;
|
background: #DDD;
|
||||||
margin : 0 0 20px;
|
margin: 0 0 20px;
|
||||||
padding : 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
article label {
|
article label {
|
||||||
color : #666;
|
color: #666;
|
||||||
display : block;
|
display: block;
|
||||||
font-size : 10px;
|
font-size: 10px;
|
||||||
font-weight : bold;
|
font-weight: bold;
|
||||||
margin : 0 0 0 2px;
|
margin: 0 0 0 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
article input, article textarea {
|
article input, article textarea {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
border : 1px solid #CCC;
|
border: 1px solid #CCC;
|
||||||
font-size : 11px;
|
font-size: 11px;
|
||||||
padding : 4px 5px;
|
padding: 4px 5px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Lists */
|
/* Lists */
|
||||||
article ul, aside ul {
|
article ul, aside ul {
|
||||||
list-style : none;
|
list-style: none;
|
||||||
margin : 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
article ul {
|
article ul {
|
||||||
margin : 0 0 20px 23px;
|
margin: 0 0 20px 23px;
|
||||||
}
|
}
|
||||||
|
|
||||||
article ul li {
|
article ul li {
|
||||||
background : url(../images/ai2.png) no-repeat 0 8px;
|
background: url(../images/ai2.png) no-repeat 0 8px;
|
||||||
padding : 0 0 0 17px;
|
padding: 0 0 0 17px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Sidebar */
|
/* Sidebar */
|
||||||
aside {
|
aside {
|
||||||
background : #EEE;
|
background: #EEE;
|
||||||
float : left;
|
float: left;
|
||||||
margin : 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
width : 200px;
|
width: 200px;
|
||||||
white-space:normal;
|
white-space: normal;
|
||||||
}
|
}
|
||||||
aside ul.aside-comments img{
|
|
||||||
border-radius : 4px;
|
aside ul.aside-comments img {
|
||||||
width:32px;height:32px;
|
border-radius: 4px;
|
||||||
border:1px solid #999999;
|
width: 32px;
|
||||||
padding:1px;
|
height: 32px;
|
||||||
margin-top:5px;
|
border: 1px solid #999999;
|
||||||
margin-right:5px;
|
padding: 1px;
|
||||||
|
margin-top: 5px;
|
||||||
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
aside ul.aside-comments a{
|
|
||||||
font-weight:bold;
|
aside ul.aside-comments a {
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
aside ul.aside-comments .side-comment{
|
|
||||||
|
aside ul.aside-comments .side-comment {
|
||||||
color: #555555;
|
color: #555555;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -316,19 +361,28 @@ aside ul.aside-comments .side-comment{
|
|||||||
width: 158px;
|
width: 158px;
|
||||||
height: 18px;
|
height: 18px;
|
||||||
}
|
}
|
||||||
aside ul.aside-comments div.left>div>div {
|
|
||||||
|
aside ul.aside-comments div.left > div > div {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
aside ul.aside-comments .side-comment img{
|
|
||||||
border:0px;height:16px;width:16px;padding:0px;margin-right: 0px;
|
aside ul.aside-comments .side-comment img {
|
||||||
|
border: 0px;
|
||||||
|
height: 16px;
|
||||||
|
width: 16px;
|
||||||
|
padding: 0px;
|
||||||
|
margin-right: 0px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
aside ul.aside-comments li {
|
aside ul.aside-comments li {
|
||||||
padding:2px 0;
|
padding: 2px 0;
|
||||||
}
|
}
|
||||||
aside ul.aside-comments li div{
|
|
||||||
width:158px;
|
aside ul.aside-comments li div {
|
||||||
|
width: 158px;
|
||||||
}
|
}
|
||||||
|
|
||||||
aside ul.aside-comments li div.left div {
|
aside ul.aside-comments li div.left div {
|
||||||
height: 18px;
|
height: 18px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
@ -336,8 +390,18 @@ aside ul.aside-comments li div.left div {
|
|||||||
-o-text-overflow: ellipsis;
|
-o-text-overflow: ellipsis;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
aside ul.navi-tags li{padding-left:0px;background-image:none;}
|
|
||||||
aside ul.navi-tags li img{ margin-bottom:3px;padding-right:6px;height:16px;width:16px;}
|
aside ul.navi-tags li {
|
||||||
|
padding-left: 0px;
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
aside ul.navi-tags li img {
|
||||||
|
margin-bottom: 3px;
|
||||||
|
padding-right: 6px;
|
||||||
|
height: 16px;
|
||||||
|
width: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
#mostViewCountArticles li, #mostCommentArticles li {
|
#mostViewCountArticles li, #mostCommentArticles li {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -348,44 +412,52 @@ aside ul.navi-tags li img{ margin-bottom:3px;padding-right:6px;height:16px;width
|
|||||||
#mostViewCountArticles a, #mostCommentArticles a {
|
#mostViewCountArticles a, #mostCommentArticles a {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search Box */
|
/* Search Box */
|
||||||
.s {
|
.s {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
margin : 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
padding : 10px;
|
padding: 10px;
|
||||||
width : 179px;
|
width: 179px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.s input {
|
.s input {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border : 1px solid #AAA;
|
border: 1px solid #AAA;
|
||||||
color : #999;
|
color: #999;
|
||||||
font-size : 11px;
|
font-size: 11px;
|
||||||
padding : 4px 5px;
|
padding: 4px 5px;
|
||||||
width : 168px;
|
width: 168px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Navigation & Menu */
|
/* Navigation & Menu */
|
||||||
nav ul {
|
nav ul {
|
||||||
list-style : none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav li {
|
nav li {
|
||||||
background : url(../images/ai1.png) no-repeat 0 8px;
|
background: url(../images/ai1.png) no-repeat 0 8px;
|
||||||
padding : 0 0 0 15px;
|
padding: 0 0 0 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav li ul, aside li ul li ul {
|
nav li ul, aside li ul li ul {
|
||||||
margin : 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav li li a {
|
nav li li a {
|
||||||
font-size : 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav li li li a {
|
nav li li li a {
|
||||||
font-size : 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav li li li, aside li.active li li {
|
nav li li li, aside li.active li li {
|
||||||
background : url(../images/ai8.png) no-repeat 0 10px;
|
background: url(../images/ai8.png) no-repeat 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav li.active, aside li.active li {
|
nav li.active, aside li.active li {
|
||||||
background : url(../images/ai2.png) no-repeat 0 8px;
|
background: url(../images/ai2.png) no-repeat 0 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav .page-icon {
|
nav .page-icon {
|
||||||
@ -394,96 +466,124 @@ nav .page-icon {
|
|||||||
width: 14px;
|
width: 14px;
|
||||||
margin: 4px 4px 0 0;
|
margin: 4px 4px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Gallery */
|
/* Gallery */
|
||||||
.gallery {
|
.gallery {
|
||||||
list-style : none;
|
list-style: none;
|
||||||
margin : 0 0 10px;
|
margin: 0 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gallery li {
|
.gallery li {
|
||||||
display: inline;
|
display: inline;
|
||||||
margin : 0 15px 0 0;
|
margin: 0 15px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gallery a img {
|
.gallery a img {
|
||||||
border : 1px solid #999;
|
border: 1px solid #999;
|
||||||
height : 50px;
|
height: 50px;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
padding : 1px;
|
padding: 1px;
|
||||||
width : 50px;
|
width: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gallery li:last-child {
|
.gallery li:last-child {
|
||||||
margin : 0 0 10px 0;
|
margin: 0 0 10px 0;
|
||||||
}
|
}
|
||||||
.gallery a img:hover{
|
|
||||||
|
.gallery a img:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Ad Space */
|
/* Ad Space */
|
||||||
.adspace {
|
.adspace {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
box-shadow : 0 2px 2px rgba(0,0,0,0.3);
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
|
||||||
background : #EEE;
|
background: #EEE;
|
||||||
height : 100%;
|
height: 100%;
|
||||||
margin : 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
padding : 5px 10px;
|
padding: 5px 10px;
|
||||||
text-align : center;
|
text-align: center;
|
||||||
width : 178px;
|
width: 178px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adspace a img {
|
.adspace a img {
|
||||||
border : none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tag Cloud */
|
/* Tag Cloud */
|
||||||
#tagcloud {
|
#tagcloud {
|
||||||
overflow : hidden;
|
overflow: hidden;
|
||||||
width : 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tagcloud li {
|
#tagcloud li {
|
||||||
display : inline;
|
display: inline;
|
||||||
margin : 0 10px 0 0;
|
margin: 0 10px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagcloudsize-1 a {
|
.tagcloudsize-1 a {
|
||||||
font-size : 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagcloudsize-2 a {
|
.tagcloudsize-2 a {
|
||||||
font-size : 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagcloudsize-3 a {
|
.tagcloudsize-3 a {
|
||||||
font-size : 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Footer */
|
/* Footer */
|
||||||
footer {
|
footer {
|
||||||
border-top : 1px dotted #B5B3A9;
|
border-top: 1px dotted #B5B3A9;
|
||||||
clear : both;
|
clear: both;
|
||||||
margin : 20px 0;
|
margin: 20px 0;
|
||||||
}
|
line-height: 30px;
|
||||||
footer a, footer p {
|
|
||||||
color : #666;
|
|
||||||
display : inline;
|
|
||||||
font-size : 12px;
|
|
||||||
}
|
|
||||||
footer div{
|
|
||||||
background:url("../images/icons.gif") no-repeat scroll 0 -304px transparent;
|
|
||||||
color:#2A2A2A;
|
|
||||||
cursor:pointer;
|
|
||||||
line-height:18px;
|
|
||||||
margin:5px 17px 0 0;
|
|
||||||
padding-left:16px;
|
|
||||||
width:22px;
|
|
||||||
float : right;
|
|
||||||
white-space :nowrap;
|
|
||||||
}
|
|
||||||
footer span{
|
|
||||||
margin:0px;
|
|
||||||
}
|
|
||||||
footer img{
|
|
||||||
height : 28px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer a, footer p {
|
||||||
|
color: #666;
|
||||||
|
display: inline;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer div {
|
||||||
|
background: url("../images/icons.gif") no-repeat scroll 0 -304px transparent;
|
||||||
|
color: #2A2A2A;
|
||||||
|
cursor: pointer;
|
||||||
|
line-height: 18px;
|
||||||
|
margin: 5px 17px 0 0;
|
||||||
|
padding-left: 16px;
|
||||||
|
width: 22px;
|
||||||
|
float: right;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer span {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer img {
|
||||||
|
height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Comments */
|
/* Comments */
|
||||||
.comments{position:relative;background:none repeat scroll 0 0 #FCFCFC;border-bottom:1px solid #CCCCCC;border-top:1px solid #CCCCCC;margin:15px -15px;padding:0 15px 15px;}
|
.comments {
|
||||||
.comment-title{background-color:#E3E9FF;border-top:1px solid #3366CC;padding:3px 12px 3px 12px;position:relative;}
|
position: relative;
|
||||||
|
background: none repeat scroll 0 0 #FCFCFC;
|
||||||
|
border-bottom: 1px solid #CCCCCC;
|
||||||
|
border-top: 1px solid #CCCCCC;
|
||||||
|
margin: 15px -15px;
|
||||||
|
padding: 0 15px 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-title {
|
||||||
|
background-color: #E3E9FF;
|
||||||
|
border-top: 1px solid #3366CC;
|
||||||
|
padding: 3px 12px 3px 12px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
.comment-body-ref {
|
.comment-body-ref {
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
@ -503,94 +603,186 @@ footer img{
|
|||||||
width: 300px;
|
width: 300px;
|
||||||
border-width: 0px;
|
border-width: 0px;
|
||||||
}
|
}
|
||||||
.comment-body{margin-top:15px;}
|
|
||||||
.comment-author{float:left;text-align:center;width:81px;}
|
.comment-body {
|
||||||
.comment-author div{margin-top:10px;padding-right:14px;background:url("../images/commentpoint.png") no-repeat scroll 100% 33% transparent;}
|
margin-top: 15px;
|
||||||
.comment-author img{border-radius : 4px;border:1px solid #999999;padding:1px;width:32px;height:32px;}
|
}
|
||||||
.comment-author a{white-space: nowrap;margin-right:14px;font-weight:bold;}
|
|
||||||
.comment-info{border-radius : 6px;width : 440px;padding : 5px 10px;background : #EDEFF0;border : 1px dotted #EDEFF0;}
|
.comment-author {
|
||||||
.comment-content{word-wrap:break-word;overflow: hidden;background:url("../images/comment.gif") no-repeat scroll 100% 100% transparent;line-height:145%;margin:0 -15px;padding:9px 15px 10px;font-size:12px;}
|
float: left;
|
||||||
.comment-form img{cursor:pointer;}
|
text-align: center;
|
||||||
.comment-form input, .comment-form textarea{height: 16px;outline:none;font-family:Helvetica,Arial,sans-serif;color:#555555;background:url("../images/textfield.gif") repeat-x scroll 50% 0 #FFFFFF;border:1px solid #A6A6A6;padding:2px 1px;width:200px;}
|
width: 81px;
|
||||||
.comment-form textarea{width:541px;font-size: 12px;height: auto;}
|
}
|
||||||
.comment-form button{background:none repeat scroll 0 0 #B4D666;border-color:#B4D666 #81B840 #81B840 #B4D666;border-style:solid;border-width:1px;color:#2970A6;font-size:12px;padding:0px 6px;height:22px;line-height:22px;border-radius:0px;}
|
|
||||||
.comment-form button:hover{background:none repeat scroll 0 0 #98C64C;border-color:#76B33A #98C64C #98C64C #76B33A;color:#074A7E;}
|
.comment-author div {
|
||||||
.error-msg{color:#3366CC;}
|
margin-top: 10px;
|
||||||
|
padding-right: 14px;
|
||||||
|
background: url("../images/commentpoint.png") no-repeat scroll 100% 33% transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-author img {
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid #999999;
|
||||||
|
padding: 1px;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-author a {
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-right: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-info {
|
||||||
|
border-radius: 6px;
|
||||||
|
width: 440px;
|
||||||
|
padding: 5px 10px;
|
||||||
|
background: #EDEFF0;
|
||||||
|
border: 1px dotted #EDEFF0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-content {
|
||||||
|
word-wrap: break-word;
|
||||||
|
overflow: hidden;
|
||||||
|
background: url("../images/comment.gif") no-repeat scroll 100% 100% transparent;
|
||||||
|
line-height: 145%;
|
||||||
|
margin: 0 -15px;
|
||||||
|
padding: 9px 15px 10px;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-form img {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-form input, .comment-form textarea {
|
||||||
|
height: 16px;
|
||||||
|
outline: none;
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
color: #555555;
|
||||||
|
background: url("../images/textfield.gif") repeat-x scroll 50% 0 #FFFFFF;
|
||||||
|
border: 1px solid #A6A6A6;
|
||||||
|
padding: 2px 1px;
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-form textarea {
|
||||||
|
width: 541px;
|
||||||
|
font-size: 12px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-form button {
|
||||||
|
background: none repeat scroll 0 0 #B4D666;
|
||||||
|
border-color: #B4D666 #81B840 #81B840 #B4D666;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
color: #2970A6;
|
||||||
|
font-size: 12px;
|
||||||
|
padding: 0px 6px;
|
||||||
|
height: 22px;
|
||||||
|
line-height: 22px;
|
||||||
|
border-radius: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-form button:hover {
|
||||||
|
background: none repeat scroll 0 0 #98C64C;
|
||||||
|
border-color: #76B33A #98C64C #98C64C #76B33A;
|
||||||
|
color: #074A7E;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-msg {
|
||||||
|
color: #3366CC;
|
||||||
|
}
|
||||||
|
|
||||||
/* Wrappers */
|
/* Wrappers */
|
||||||
#a, #b {
|
#a, #b {
|
||||||
margin : 0 auto;
|
margin: 0 auto;
|
||||||
position : relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
#a {
|
#a {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
box-shadow : 0 2px 2px rgba(0,0,0,0.3);
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
|
||||||
background : #EEE;
|
background: #EEE;
|
||||||
margin : 15px auto;
|
margin: 15px auto;
|
||||||
padding : 10px 10px 0 10px;
|
padding: 10px 10px 0 10px;
|
||||||
width : 800px;
|
width: 800px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#b {
|
#b {
|
||||||
overflow : hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Shadow-Boxes*/
|
/* Shadow-Boxes*/
|
||||||
#c, .meta, .s, nav ul {
|
#c, .meta, .s, nav ul {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
box-shadow : 0 2px 2px rgba(0,0,0,0.4);
|
background: rgb(221, 221, 221);
|
||||||
background : #CCC;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#c {
|
#c {
|
||||||
margin : 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
padding : 5px 10px;
|
padding: 5px 10px;
|
||||||
width : 178px;
|
width: 178px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#c p, #c a {
|
#c p, #c a {
|
||||||
font-size : 11px;
|
font-size: 11px;
|
||||||
line-height : 15px;
|
line-height: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#c p {
|
#c p {
|
||||||
margin : 0 0 10px 0;
|
margin: 0 0 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#c img {
|
#c img {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
float : left;
|
float: left;
|
||||||
margin : 4px 10px 2px 0;
|
margin: 4px 10px 2px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.meta {
|
.meta {
|
||||||
margin: 10px 0 30px;
|
margin: 10px 0 30px;
|
||||||
padding: 2px 5px;
|
padding: 2px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.meta p, .meta a {
|
.meta p, .meta a {
|
||||||
font-size : 10px;
|
font-size: 10px;
|
||||||
margin : 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav ul {
|
nav ul {
|
||||||
padding : 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav ul ul {
|
nav ul ul {
|
||||||
border-radius : none;
|
border-radius: none;
|
||||||
box-shadow : none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.single_page {
|
.single_page {
|
||||||
border-radius : 4px;
|
border-radius: 4px;
|
||||||
box-shadow : 0 2px 2px rgba(0,0,0,0.2);
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
||||||
background : #F2F7F8;
|
background: #F2F7F8;
|
||||||
padding : 10px;
|
padding: 10px;
|
||||||
margin-bottom : 25px;
|
margin-bottom: 25px;
|
||||||
width : 531px;
|
width: 531px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Scrollbar */
|
/* Scrollbar */
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 6px;
|
width: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
background-color: #bbb;
|
background-color: #bbb;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb {
|
::-webkit-scrollbar-thumb {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb:hover {
|
::-webkit-scrollbar-thumb:hover {
|
||||||
background-color: #888;
|
background-color: #888;
|
||||||
}
|
}
|
||||||
|
@ -19,5 +19,9 @@
|
|||||||
-->
|
-->
|
||||||
<header>
|
<header>
|
||||||
<a href="${servePath}" id="logoTitle">${blogTitle}</a>
|
<a href="${servePath}" id="logoTitle">${blogTitle}</a>
|
||||||
<p>${blogSubtitle}</p>
|
<div>${blogSubtitle}</div>
|
||||||
|
<div class="user__sites">
|
||||||
|
<#include "../../common-template/macro-user_site.ftl"/>
|
||||||
|
<@userSite dir="n"/>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
@ -60,6 +60,11 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
|
<#if article?? && article.articleToC?? && article.articleToC?size > 0>
|
||||||
|
<#include "../../common-template/toc.ftl"/>
|
||||||
|
<#else>
|
||||||
|
|
||||||
<#if 0 != recentComments?size>
|
<#if 0 != recentComments?size>
|
||||||
<h4>${recentCommentsLabel}</h4>
|
<h4>${recentCommentsLabel}</h4>
|
||||||
<ul class="aside-comments">
|
<ul class="aside-comments">
|
||||||
@ -155,7 +160,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</#if>
|
</#if>
|
||||||
<#if 0 != archiveDates?size>
|
<#if 0 != archiveDates?size>
|
||||||
<h4>${archiveLabel}</h4>
|
<h4><a href="${servePath}/archives.html">${archiveLabel}</a></h4>
|
||||||
<ul>
|
<ul>
|
||||||
<#list archiveDates as archiveDate>
|
<#list archiveDates as archiveDate>
|
||||||
<#if archiveDate_index < 10>
|
<#if archiveDate_index < 10>
|
||||||
@ -174,4 +179,5 @@
|
|||||||
</#list>
|
</#list>
|
||||||
</ul>
|
</ul>
|
||||||
</#if>
|
</#if>
|
||||||
|
</#if>
|
||||||
</aside>
|
</aside>
|
Loading…
x
Reference in New Issue
Block a user