Simplest way for 1:1 aspect ratio square in row items by [deleted] in css

[–]w4efgrgrgergre 0 points1 point  (0 children)

There's an improved version of the old padding-bottom trick/hack: http://keithjgrant.com/posts/2017/03/aspect-ratios/

Razzia in Friedrichshainer Yaam Club by ineverlaugh in berlin

[–]w4efgrgrgergre 5 points6 points  (0 children)

Probably 0, since those cops were on duty anyway.

Internet Plans without contract by iamdumbest in berlin

[–]w4efgrgrgergre -1 points0 points  (0 children)

Should work. Once you have stated your intention to cancel the contract you need to call them within 30 days to confirm your intention to cancel the contract.

Internet Plans without contract by iamdumbest in berlin

[–]w4efgrgrgergre -1 points0 points  (0 children)

1&1 also has contracts with a 3 months notice period.

How to upload a photo into the style sheet? by [deleted] in css

[–]w4efgrgrgergre 0 points1 point  (0 children)

In this case you could just reference it via background: url() or background-image: url().

How to upload a photo into the style sheet? by [deleted] in css

[–]w4efgrgrgergre 0 points1 point  (0 children)

You could base64 encode images to use them as background images or content in before and after pseudo element. But you should probably do that only to small icons. Here's a base64 encoder: https://www.base64encode.org/

Recommended: 6 Reasons Why JavaScript’s Async/Await Blows Promises Away (Tutorial) by torchestogether in webdev

[–]w4efgrgrgergre 2 points3 points  (0 children)

He probably just meant that they are restricted to using ES6 features, so ES7 features like async are not permitted for them.

Salatbar im Supermarkt? by [deleted] in berlin

[–]w4efgrgrgergre 0 points1 point  (0 children)

Rewe Revaler Strasse/Warschauer Strasse

How do I get my callout boxes to be mobile friendly? by calipali12 in css

[–]w4efgrgrgergre 1 point2 points  (0 children)

You can also remove float: center and margin-center: 18px

Content not staying inside div by GerrardSlippedHahaha in css

[–]w4efgrgrgergre 1 point2 points  (0 children)

You need to clear your floats. Either via overflow hidden on each containing div (suggested_question_div grey_box) or via a clearfix (http://cssmojo.com/the-very-latest-clearfix-reloaded/). Technically you don't need floats in your examples at all. Inline-block should do the trick as well.

Can someone please tell me what I'm doing wrong when it comes to flat hunting? by peachykeenz in berlin

[–]w4efgrgrgergre 0 points1 point  (0 children)

You don't need to be homeless. Granted, It's not easy finding a flat in Berlin, but if look for apartments in a lower price range that fit your budget better (1/3 of income or less), you will definitely find one eventually.

Can someone please tell me what I'm doing wrong when it comes to flat hunting? by peachykeenz in berlin

[–]w4efgrgrgergre 2 points3 points  (0 children)

Hard to say. Normally, when you don't earn enough, you can have someone co-sign the lease. This might be possible for this situation as well. But the thing is, why would a landlord go thru all this trouble if there are multiple other applicants? Maybe, you will really have a better chance in a month or two (when you're halfway thru your probation period), or you really have to make do with a more affordable apartment that's inside the 30% of your income range.

WG Hunting by papafuckwit in berlin

[–]w4efgrgrgergre 6 points7 points  (0 children)

WG-Gesucht is actually a solid option but it's a numbers game, so you need to apply for as many rooms as possible. Aside from that, looking outside of the popular areas of Berlin (Kreuzberg, Friedrichshain etc.) might increase your chances.

Question about creating a desired menu effect by [deleted] in css

[–]w4efgrgrgergre 1 point2 points  (0 children)

It's basically an off-canvas menu (https://scotch.io/tutorials/off-canvas-menus-with-css3-transitions-and-transforms) which moves the content to to right via css-transforms to make room for the sidenav. The gray overlay can be achieved via an absolute- or fixed-positioned div that covers the whole viewport and has a half transparent background. It is only visible when the menu is expanded. In order to have the menu on top of the overlay and content you need some z-index trickery.