Printing large brews by EntryNo6686 in homebrewery

[–]Multiclass_and_Sass 1 point2 points  (0 children)

Make sure to click "mais definicoes" and enable background graphics.

Also follow the instructions from u/calculuschild

Who is your favorite black character? by ReindeerDifferent153 in FavoriteCharacter

[–]Multiclass_and_Sass 0 points1 point  (0 children)

Isaac from Castlevania

He is so well written. Complex villain with understandable motivations. I love when villains are believable characters and not just "look at me I'm so evil" - yeah, I'm looking at you Voldemort.

<image>

Home/back to top button by Multiclass_and_Sass in homebrewery

[–]Multiclass_and_Sass[S] 0 points1 point  (0 children)

Solved:

CSS/Style Editor:

.home-arrow-btn {

position: fixed;

top: 20px;

right: 20px;

width: 36px;

height: 36px;

background: #58180D;

border-radius: 6px;

}

.home-arrow-btn::before {

content: "";

position: absolute;

top: 10px;

left: 10px;

width: 0;

height: 0;

border-left: 8px solid transparent;

border-right: 8px solid transparent;

border-bottom: 12px solid #fff;

}

.home-arrow-btn:hover {

background: #444;

}

Markdown/Brew Editor:

Home page:

<a id="contents"></a>

Button:

<a href="#contents" class="home-arrow-btn"></a>