summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorluca-marie <ml.kochsiek@fu-berlin.de>2016-08-29 17:39:46 +0200
committerthea <ta.kupler@gmail.com>2016-09-01 12:09:37 +0200
commitea3fc6ffbb8f90aff28ce56fe4432a8d3ff18caa (patch)
tree0cd03af6e30206c272c9fe2b8cd78fdc51c17b24 /app/assets
parente3af6664f997d4dff227fdcd0246eff516520e96 (diff)
Changes mainly on CSS 'fine tuning' and shortening the Twitter API credentials,
- only bearer token is needed to access Twitter API
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/twitter.scss55
1 files changed, 25 insertions, 30 deletions
diff --git a/app/assets/stylesheets/twitter.scss b/app/assets/stylesheets/twitter.scss
index 6b74cf7..b0ce982 100644
--- a/app/assets/stylesheets/twitter.scss
+++ b/app/assets/stylesheets/twitter.scss
@@ -1,21 +1,15 @@
.twitter {
position: relative;
- // top: 0;
- // right: 10px;
- // bottom: 0;
- // overflow: auto;
- // width: 250px;
}
+
.twitter_header {
- padding-top: 8px;
- height: 30px;
- font-size: 20px ;
- text-align: center;
- margin-bottom: 20px;
+ font-size: 20px;
+ text-align: left;
+ margin-bottom: 30px;
}
.twitter_list {
- position: relative;
+ box-sizing: border-box;
}
.tweet:hover {
@@ -25,33 +19,35 @@
.tweet {
border-bottom-style: solid;
border-color: #bfbfbf;
- // display: inline;
- // height: 32px;
- // width: 100%;
- // position: absolute;
- // text-align: center;
+ padding: 10px 8px;
+}
+
+.tweet_title {
+ position: relative;
+ height: 40px;
+ margin-bottom: 10px;
}
.tweet_pic {
display: block;
- float: left;
- width: 28px;
- height: 33px;
- padding-left: 8px;
- padding-top: 8px;
- // background: hsl(0, 0%, 30%);
-}
+ width: 40px;
+ height: 40px;
+ overflow: hidden;
+ position: absolute;
+ left: 0;
+ top: 0;
+ }
.tweet_name {
- padding-left: 45px;
- padding-top: 16px;
- // border-bottom-style: solid;
- // border-color: #00bfff;
+ padding-left: 50px;
+ line-height: 40px;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
}
.tweet_text {
- padding-left: 8px;
- padding-top: 15px;
+box-sizing: border-box;
}
.tweet_text_date {
@@ -67,7 +63,6 @@
width: 40px;
height: 40px;
overflow: hidden;
- position: relative;
}
.twitter_image_frame > img {