Archpawn

joined 2 years ago
[–] [email protected] 2 points 1 day ago

Why did she tell him that? Now he can do anything.

[–] [email protected] 7 points 4 days ago

Ophanim only have two wheels and they don't have wings. Why are biblically accurate angels never biblically accurate?

[–] [email protected] 11 points 1 week ago (1 children)

Here's a source that suggests he does.

Although there is no explicit evidence in the Gospels, we have reason to suggest that he also may have worn phylacteries.

[–] [email protected] 14 points 3 weeks ago

Sadly, the elf only knows Common and Elven.

[–] [email protected] 5 points 3 weeks ago

Caltrops do a flat one damage. Which is still enough to kill one in eight Commoners.

[–] [email protected] 1 points 1 month ago

The reason to use more plastic is so you can properly close it. It's still not very much plastic.

[–] [email protected] 9 points 1 month ago

This has been animated on Youtube several times, so instead of linking to a video, here's a search for all of them.

[–] [email protected] 3 points 1 month ago (3 children)

But what about when you die fighting the Dark Lord because you're not overlevelled from doing all the sidequests?

[–] [email protected] 3 points 1 month ago

Personally, I don't like it. I'm a completionist. And it's a lot easier when I can play the whole game in one playthrough.

[–] [email protected] 7 points 1 month ago (1 children)

It sounds cool, but remember, you could learn True Polymorph and make a clay golem every day. Or learn True Resurrection and bring back a legendary hero (or big bad, if you prefer). Or Gate and summon your opponent into a room full of Glyphs of Warding just because you know their name. Or Wish and make a new Clone or Simulacrum or bind a demon for 100 days or whatever other crazy exploits you can find. Is being able to deal a bunch of damage from a mile away once a day really worth it?

[–] [email protected] 2 points 1 month ago

How long since you've had six hours of sleep with two hours of light activity like keeping watch or reading?

 

I asked for help making the expanded images fully expand here. They got something workable, but it gets rid of the sidebar. I'm hoping for something where the image just covers the sidebar.

I found the class, but I don't know how to write the CSS to make it go all the way across the screen regardless of the parent. So it would start with .img-expanded:not(.banner):not(.avatar-overlay) { } but I need to know what goes in the brackets.

20
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]
 

Right now, the only method I found is to click on the expando, then right click on the image and open it in a new tab. Is there a way to make it so I can just click it once? I can't imagine any possible scenario where I'd want to see a large but not full size image.

I'm using the browser on my computer if that's relevant.

Edit: I got it to work using the Stylus addon and:

.img-expanded:not(.banner, .avatar-overlay) {
    max-height: unset;
    max-width: 100vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    outline: auto;
    outline-color: black;
    z-index: 1;
}

I also made it outline any expandos with:

/*Note: Links are exactly the same except without bg-transparent, so using not(bg-transparent) instead will outline the links instead of the expandos. Also, they're outlined orange unless you change it, so you could take that off, give them all outlines, and you can tell which they are based on the color.*/
.thumbnail.rounded.overflow-hidden.d-inline-block.position-relative.p-0.border-0.bg-transparent {
    outline: auto;
}
view more: next ›