summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-15 16:24:08 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-08-15 16:24:08 +0200
commit084d70a217420b17ca3642f94599cd11f0d079af (patch)
tree87d2d3821a1df979a6838cbfe541a4ba6469f920
parentf38a28d6213b7e4f048540cb4f167b464b7921d7 (diff)
made the item heading the same size as the feed heading
-rw-r--r--css/news.css14
-rw-r--r--templates/main.php2
2 files changed, 6 insertions, 10 deletions
diff --git a/css/news.css b/css/news.css
index 4e13a0ad3..3a9ee7fb5 100644
--- a/css/news.css
+++ b/css/news.css
@@ -82,6 +82,10 @@ div.feed_controls {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
+ font-size: 1.2em;
+ line-height: 2.6em;
+ font-weight: bold;
+ color: #333;
}
@media all and (min-width: 1280px){
@@ -100,12 +104,6 @@ div.feed_controls {
div.feed_controls div.feed_title h1 { display: none; }
}
- div.feed_controls h1 {
- font-size: 1.5em;
- color: #444;
- padding-top: .5em;
- }
-
div.feed_controls .controls {
float: right;
}
@@ -122,7 +120,7 @@ div.feed_controls {
bottom: 0;
}
- #leftcontent h3 {
+ #leftcontent h1 {
background-color: #DBDBDB;
border-bottom: 1px solid #CCCCCC;
border-top: 1px solid #D4D4D4;
@@ -134,11 +132,9 @@ div.feed_controls {
padding: 0 0.8em;
text-shadow: 0 1px 0 #F8F8F8;
line-height: 2.6em;
- height: 3.3em;
}
#feeds {
- clear: both;
background-color: #f8f8f8;
position: absolute;
top: 3.3em;
diff --git a/templates/main.php b/templates/main.php
index 1f84520db..61cfc5ec9 100644
--- a/templates/main.php
+++ b/templates/main.php
@@ -10,7 +10,7 @@ echo $this->inc("part.items.header");
?>
<div id="leftcontent" class="leftcontent">
- <h3><?php echo $l->t('Subscriptions'); ?></h3>
+ <h1><?php echo $l->t('Subscriptions'); ?></h1>
<div id="feeds">
<ul>
<?php echo $this->inc("part.feeds"); ?>