summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-15 15:20:45 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-08-15 15:20:45 +0200
commit58716d325c235d4ae8101c13d7936da643cb8ccf (patch)
tree335baf0a31a48065553dea886125315107d0c28f /css
parent220471ab46f69ad8e6f19578c82318e41b3bc740 (diff)
optimized for a min width of 950px
Diffstat (limited to 'css')
-rw-r--r--css/news.css17
1 files changed, 16 insertions, 1 deletions
diff --git a/css/news.css b/css/news.css
index 82d687a11..677c79361 100644
--- a/css/news.css
+++ b/css/news.css
@@ -79,12 +79,27 @@ div.feed_controls {
}
div.feed_controls div.feed_title h1 {
- max-width: 450px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
+ @media all and (min-width: 1280px){
+ div.feed_controls div.feed_title h1 { max-width: 450px; }
+ }
+
+ @media all and (max-width: 1279px) and (min-width: 1024px){
+ div.feed_controls div.feed_title h1 { max-width: 230px; }
+ }
+
+ @media all and (max-width: 1023px) and (min-width: 950px){
+ div.feed_controls div.feed_title h1 { max-width: 130px; }
+ }
+
+ @media all and (max-width: 949px){
+ div.feed_controls div.feed_title h1 { display: none; }
+ }
+
div.feed_controls h1 {
font-size: 1.5em;
color: #444;