aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2013-04-08 01:53:01 -0700
committerNicolas Lœuillet <nicolas@loeuillet.org>2013-04-08 01:53:01 -0700
commit53c609f7152d3a752e5604d4a78fa43b89c72eb8 (patch)
tree9395c0132a68ecc65ebe53c277e46dbe0dd5fa05
parent7eca3552c8f14a57b59bdb4be4ea8994616467d7 (diff)
parent4d94769a56979f6ee896ffaef453f09d03e7e4fe (diff)
downloadwallabag-53c609f7152d3a752e5604d4a78fa43b89c72eb8.tar.gz
wallabag-53c609f7152d3a752e5604d4a78fa43b89c72eb8.tar.zst
wallabag-53c609f7152d3a752e5604d4a78fa43b89c72eb8.zip
Merge pull request #19 from tmos/master
Modifications css
-rw-r--r--cache/footer.32a3c4422ad65642b8dbb7e731f4d990.rtpl.php3
-rw-r--r--cache/index.0b3442bc62f6c429fc13004b3c821ba0.rtpl.php32
-rw-r--r--css/style.css26
-rwxr-xr-xtpl/index.html2
4 files changed, 58 insertions, 5 deletions
diff --git a/cache/footer.32a3c4422ad65642b8dbb7e731f4d990.rtpl.php b/cache/footer.32a3c4422ad65642b8dbb7e731f4d990.rtpl.php
new file mode 100644
index 00000000..2a8209b7
--- /dev/null
+++ b/cache/footer.32a3c4422ad65642b8dbb7e731f4d990.rtpl.php
@@ -0,0 +1,3 @@
1<?php if(!class_exists('raintpl')){exit;}?> <footer class="mr2 mt3">
2 <p class="smaller"><a href="http://github.com/nicosomb/poche">poche</a> is a read it later open source system, based on <a href="http://www.memiks.fr/readityourself/">ReadItYourself</a>. <a href="https://twitter.com/getpoche" title="follow us on twitter">@getpoche</a>. Logo by <a href="http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon">Brightmix</a>. poche is developed by <a href="http://nicolas.loeuillet.org">Nicolas Lœuillet</a> under the <a href="http://www.wtfpl.net/">WTFPL</a>.</p>
3 </footer>
diff --git a/cache/index.0b3442bc62f6c429fc13004b3c821ba0.rtpl.php b/cache/index.0b3442bc62f6c429fc13004b3c821ba0.rtpl.php
new file mode 100644
index 00000000..e844824a
--- /dev/null
+++ b/cache/index.0b3442bc62f6c429fc13004b3c821ba0.rtpl.php
@@ -0,0 +1,32 @@
1<?php if(!class_exists('raintpl')){exit;}?><!DOCTYPE html>
2<!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="en"> <![endif]-->
3<!--[if lte IE 7]> <html class="no-js ie7 ie67 ie678" lang="en"> <![endif]-->
4<!--[if IE 8]> <html class="no-js ie8 ie678" lang="en"> <![endif]-->
5<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
6<html>
7 <head>
8 <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
9 <meta charset="utf-8">
10 <meta http-equiv="X-UA-Compatible" content="IE=10">
11 <link rel="stylesheet" href="./css/knacss.css" media="all">
12 <link rel="stylesheet" href="./css/style.css" media="all">
13 <title><?php echo $title;?></title>
14 </head>
15 <body class="article">
16 <div id="article" class="w600p">
17 <div id="backhome">
18 <a href="index.php" title="back to home">&larr;</a>
19 </div>
20 <header class="mbm">
21 <h1><a href="<?php echo $url;?>"><?php echo $title;?></a></h1>
22 <div class="vieworiginal txtright small"><a href="<?php echo $url;?>" target="_blank">view original</a></div>
23 </header>
24 <article>
25 <div id="readityourselfcontent">
26 <?php echo $content;?>
27 </div>
28 </article>
29 </div>
30 <?php $tpl = new RainTPL;$tpl_dir_temp = self::$tpl_dir;$tpl->assign( $this->var );$tpl->draw( dirname("footer") . ( substr("footer",-1,1) != "/" ? "/" : "" ) . basename("footer") );?>
31 </body>
32</html>
diff --git a/css/style.css b/css/style.css
index 764cf628..604b3728 100644
--- a/css/style.css
+++ b/css/style.css
@@ -2,10 +2,13 @@ body {
2 color: #222222; 2 color: #222222;
3 font: 20px/1.3em Palatino,Georgia,serif; 3 font: 20px/1.3em Palatino,Georgia,serif;
4 background-color: #F1F1F1; 4 background-color: #F1F1F1;
5 margin: 10px;
5} 6}
6 7
7body.article { 8body.article {
8 background-color: #ffffff; 9 color: #222222;
10 font: 20px/1.3em Palatino,Georgia,serif;
11 background-color: #F1F1F1;
9} 12}
10 13
11a, a:hover, a:visited { 14a, a:hover, a:visited {
@@ -40,7 +43,16 @@ header {
40 43
41#main ul#links li { 44#main ul#links li {
42 display: inline; 45 display: inline;
43 padding: 15px; 46}
47#links a, #backhome a{
48 text-decoration: none;
49 padding: 5px 10px;
50}
51#links a:hover, #backhome a{
52 -webkit-border-radius: 2px;
53 border-radius: 2px;
54 background-color: #040707;
55 color: #F1F1F1;
44} 56}
45 57
46#main #entries { 58#main #entries {
@@ -51,7 +63,12 @@ header {
51 color: rgb(46, 46, 46); 63 color: rgb(46, 46, 46);
52 position:relative; 64 position:relative;
53 background-color: #ffffff; 65 background-color: #ffffff;
54 height: 8em; 66 padding: 15px;
67 height: 6em;
68 -webkit-border-radius: 2px;
69 border-radius: 2px;
70 -webkit-box-shadow: 0px 0px 2px -1px #000;
71 box-shadow: 0px 0px 2px -1px #000;
55} 72}
56 73
57#main #entries .entrie h2 a { 74#main #entries .entrie h2 a {
@@ -67,6 +84,7 @@ header {
67 bottom: 0; 84 bottom: 0;
68 width: 100%; 85 width: 100%;
69 text-align: right; 86 text-align: right;
87 margin-left: -20px;
70} 88}
71 89
72#main a.tool { 90#main a.tool {
@@ -74,5 +92,5 @@ header {
74} 92}
75 93
76footer { 94footer {
77 text-align: right; 95 text-align: center;
78} \ No newline at end of file 96} \ No newline at end of file
diff --git a/tpl/index.html b/tpl/index.html
index 3f3b28f0..5d7baa89 100755
--- a/tpl/index.html
+++ b/tpl/index.html
@@ -14,7 +14,7 @@
14 </head> 14 </head>
15 <body class="article"> 15 <body class="article">
16 <div id="article" class="w600p"> 16 <div id="article" class="w600p">
17 <div> 17 <div id="backhome">
18 <a href="index.php" title="back to home">&larr;</a> 18 <a href="index.php" title="back to home">&larr;</a>
19 </div> 19 </div>
20 <header class="mbm"> 20 <header class="mbm">