Slengpung.com Pictures adjusted to screen

Resizes the pictures that are too big, and fit them to the screen width.

/* ==UserStyle==
@name         Slengpung.com Pictures adjusted to screen
@description  Resizes the pictures that are too big, and fit them to the screen width.
@author       V1rgul (https://github.com/V1rgul)
@version 0.0.1.20200814212818
@namespace https://greasyfork.org/users/676264
==/UserStyle== */

@-moz-document url-prefix("http://www.slengpung.com/v3/show_photo.php") {
html,
body,
body > table {
    width: 100%;
}

body > table {
    width: 100% !important;
}
body > br {
    display: none;
}

body > table > tbody > tr:nth-child(2) > td > img {
    max-width: 100%;
    width: auto !important;
    height: auto !important;
}
}