<Mein Blog
"Our day’s pass, our stars go.
What stay’s when the time is running against us."
@yestexday K.M.S.
"That’s what people do who love you. They put their arms around you and love you when you’re not so lovable."
narnia:
“ “love is forever” bullshit.
- Mr Robot (2015)
”
"Give me a reason to forgive or to forget you."
"Jeder Mensch macht Fehler, auch der Typ von nebenan. Wichtig ist nur, ob man mit den Fehlern leben kann."
Sido (via wetter-leuchten)
"Wir sind am Ende, schreien gegen Wände, die Hoffnung trägt uns, die Zeit erschlägt uns, Stück für Stück und es gibt kein zurück."
"Irgendwann wirst du verstehen dass manche Leute in deinem Herzen bleiben können aber nicht mehr in deinem Leben."
"Warum mögen wir immer die Menschen, denen wir egal sind?"
x-engel-der-nacht-x (via x-engel-der-nacht-x)
"Don’t let people treat you like a cigarette, they only use you when they’re bored and step on you when they’re done. Be like drugs, let them die for you."
(via marieacc)
"Erst jetzt ist mir klar geworden, dass die schönen Erinnerungen die man mit jemandem hat so viel mehr weh tun als die schlechten, wenn alles vorbei ist."
25.05.2016 (via vodka-traenen)
"Jeder von uns hat ein Kapitel in seinem Leben, dass er niemanden vorliest."
Joe-roehl (via joe-roehl)
"Egal was du tust, lauf nie zu dem zurück der dich kaputt gemacht hat."
12.05.2016 (via vodka-traenen)
// ==UserScript== // @name Tumblr theme update fix borders and header - oct30 // @namespace http://userstyles.org // @description edits and fixes after the new Tumblr update - borders, header // @author low-key // @homepage http://userstyles.org/styles/106746 // @include https://www.tumblr.com* // @include http://www.tumblr.com* // @run-at document-start // ==/UserScript== (function() { var css = "/*borders*/\n.post_content_inner.clearfix{margin-left: 12px!important;margin-right:12px!important;}\n.post.post_full {width: 564px!important;} #posts.posts {margin: 0px 0px 0px 86px;}\n.post.post_full .post_header, .post.post_full .post_footer, .post.post_full .post_tags, .post.post_full .post_answer {padding-right: 12px;padding-left: 12px;}\n.post.post_full .post_body, .post.post_full .post_title {padding-right: 0px;padding-left: 0px;}\n.notification {width: 564px!important;} .post_full.is_note .post_body .note_item, .post-composer_note-post .note_item {width: 480px!important;}\n\n\n/*padding and margin and alignments*/\n#right_column.right_column{padding-top:10px!important;}\n.identity-refresh .l-container {padding-top: 62px!important;}\n#dashboard_controls {font-size: 16px!important;line-height: 1;height: 12px;padding-top: 10px;margin-bottom: 10px;}#pagination {margin-top: 0;padding-bottom: 13px;margin-right: 12px;}\n.identity-refresh .post_avatar {margin-left: 10px;}#posts.posts>.post_container {margin: 0 0 20px -10px;}\n.identity-refresh .l-container .l-content {padding: 8px;}\n\n/*header*/\n.l-header-container--refresh {box-shadow: none!important;background:none!important;position:absolute;width: 100%;height:52px!important;}\n.l-header {position:absolute;width:960px!important;max-width:960px!important;padding: 0 30px 0 40px!important;}\n.compose-button{display:none!important;}\n\n/*red notifications*/\n.identity-refresh .inbox_notice_container, .identity-refresh .new_post_notice_container {border: 0px;}\n.identity-refresh .selected .tab_notice {background:#D95E40!important;}\n.identity-refresh .tab_notice {background: #d95e40!important;}\n.l-header-container--refresh .tab_notice {padding: 0 3px;border-radius: 2px;height: 18px;min-width:18px;font-size: 12px;}\n.identity-refresh .tab_notice .tab_notice_value {color: #fff!important;}\n.identity-refresh .inbox_notice_container {background:#D95E40!important;}"; if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); var heads = document.getElementsByTagName("head"); if (heads.length > 0) { heads[0].appendChild(node); } else { // no head yet, stick it whereever document.documentElement.appendChild(node); } } })();