summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-09-09 22:21:40 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-09-09 22:21:40 +0200
commitff528b18df31085263c6362feae89e3dc7f62c1b (patch)
treec96e73bdf84ab71bd39d2b8ed58c18d2ff6d5bb6 /css
parent638ca54359d002b90e12ee461444259a6e070e2a (diff)
fix settings
Diffstat (limited to 'css')
-rw-r--r--css/content.css49
1 files changed, 29 insertions, 20 deletions
diff --git a/css/content.css b/css/content.css
index a51b6037b..256bb3822 100644
--- a/css/content.css
+++ b/css/content.css
@@ -33,7 +33,7 @@
display: none;
}
-#app-content-wrapper:after {
+#app-content:after {
content: '';
display: block;
height: 100%;
@@ -51,9 +51,11 @@
* Rules for a single feed item
*/
#app-content .item {
- min-height: 120px;
cursor: default;
- border-top: 1px solid #eee;
+}
+
+#app-content .item:last-child .article {
+ border-bottom: 0;
}
/**
@@ -165,6 +167,10 @@
color: #aaa;
}
+ #app-content .utils .source a:hover {
+ text-decoration: underline;
+ }
+
/**
* Timestamp
*/
@@ -178,7 +184,9 @@
* Actual content
*/
#app-content .article {
- padding: 30px 45px 30px 45px;
+ min-height: 69px;
+ padding: 25px 45px 45px 45px;
+ border-bottom: 1px solid #eee;
}
/**
@@ -188,27 +196,11 @@
padding: 14px 42px 0 49px;
}
-/**
- * Author
- */
-#app-content .author {
- color: #aaa;
- font-size: 15px;
-}
-
- #app-content .author a {
- color: inherit;
- }
-
- #app-content .author a:hover {
- text-decoration: underline;
- }
/**
* Article body
*/
#app-content .body {
- margin-top: 15px;
max-width: 770px;
font-size: 14px;
clear: both;
@@ -309,3 +301,20 @@
}
+
+/**
+ * Author
+ */
+#app-content .author {
+ color: #aaa;
+ font-size: 15px;
+ padding: 20px 0 10px 0;
+}
+
+ #app-content .author a {
+ color: inherit;
+ }
+
+ #app-content .author a:hover {
+ text-decoration: underline;
+ } \ No newline at end of file