bungeoppang cat and jindo choco taco :)))

Origami Around

#extradirty

pixel skylines
Monterey Bay Aquarium

JVL
h

Love Begins
Xuebing Du
occasionally subtle

gracie abrams
Cosmic Funnies
"I'm Dorothy Gale from Kansas"
noise dept.

blake kathryn
Mike Driver

Kiana Khansmith
𓃗

★
will byers stan first human second
seen from United States

seen from Malaysia

seen from United States
seen from Germany
seen from United States

seen from United States
seen from United States

seen from Malaysia

seen from Netherlands

seen from United States
seen from United States
seen from United States

seen from United Kingdom
seen from United States
seen from United States

seen from Canada

seen from United States
seen from United States
seen from South Korea

seen from Germany
@pxneapple
bungeoppang cat and jindo choco taco :)))

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Xiao Yang's custom prosthetic leg by YVMIN (2021)
Okimono [19th Century] unknown artist Russell-Cotes Art Gallery & Museum
I’ve been asked how I made my red + black and white gifsets for No Way Home and Black Widow so I made a tutorial.
Tutorials included: [A] colouring a gif to remove all the other colours and enhance the red + [B] colouring a gif to change the background to one colour. I also have a tutorial to make colourful gifs here for scenes with dark backgrounds.
Knowledge needed: basic PS skills (how to make a gif, sharpening), I am using PS 2021 but I am sure this tutorial works fine with other photoshops!
Keep reading
The Hunter and The Warlock
The story of a man who hunts warlocks, their battle on a cold winter night, and the aftermath. But the Warlock is tender hearted and rather than stumble away into the cold tundra, turns back to help….
Prints are available on INPRNT

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Tutorial: Creating a Modal/Popup using <dialog>
In this tutorial, I’ll be sharing with you on how to create a popup/modal (herein states as modal) using <dialog>. Base code shall be provided for you to practise. Also, while it is rather a straightforward tutorial, it is recommended for you to have some knowledge of CSS and HTML as I will assume that you know a little bit about them.
[DEMO] [BASE CODE]
To create a modal, there are five parts that I’ll be explaining which are:
The script
The open button
The modal + the close button
The backdrop
The Fade effect [Optional]
1. The Script
To ensure that your modal works, we need to add a script into our code. All you need to do is copy the code below and paste it before </body>:
<script> /// MODAL SCRIPT BY JASMIN @ https://phantasyreign.tumblr.com/ const body = document.querySelector("body"); const popup = document.querySelector("#modal"); const openModal = document.querySelector(".open-modal"); const closeModal = document.querySelector(".close-modal"); openModal.addEventListener("click", () => { modal.showModal(); body.style.overflow = "hidden"; }); modal.addEventListener("keydown", e => { if(e.keyCode === 27){ e.preventDefault() } }) closeModal.addEventListener("click", () => { modal.close(); body.style.overflow = "auto"; }); </script>
This script tells us three things:
When you click the open button, the modal will appear and you cannot scroll down the contents behind the modal;
When you press the esc key, it won’t work;*
When you click the close button, the modal will disappear and you can scroll the blog as per usual.
*The reason why I include this part is because in the event if the blog contains a scroll bar, if a person press the esc key instead of clicking the close button, such scroll bar will not appear.
2. The Open Button
HTML
To add an open button, simply add the code below and paste it at the desired placement:
<button class="button open-modal">Open Modal</button>
Tips: If the design of your open and close button are the same, then I recommend if you include another class value of button inside your class attribute so that it’ll be easier for you to code.
TAKE NOTE: Do not change the name of the open-modal.
CSS
If you know CSS, there are many ways to code a button. Nevertheless, for the purpose of this tutorial, I have customised the button (both the open and close button) as follows:
.button{ /*BASIC*/ background-color:white; border:1px solid #eee; border-radius:inherit; width:100px; outline:0; padding:.25rem .5rem; /*FONTS*/ font-family:karla; text-transform:uppercase; /*DO NOT TOUCH UNLESS YOU KNOW WHAT YOU'RE DOING*/ cursor:pointer; }
You can also use .open-modal instead of .button if you want to.
3. The Modal + The Close Button
HTML
To create the modal, we will be using <dialog>. To achieve it, we need to add the HTML before </body> and the <script>. Don’t worry if you’re confused, you can refer back to the base code to understand what I mean by before </body> and the <script>.
<dialog id="modal"> <p>This is your content <button class="button close-modal"> Close Modal </button> </dialog>
Depending on where you want to position your close button, you may need to change the position of your close button’s HTML code before or after the content.
CSS
By default, the modal will not be shown without the open button and the script. However, since we have included the script as well as the open button, you can see that once you click the open button, the modal appears! To beautify it a little bit more, you can customise the modal as follow:
/*MODAL CONTENT*/ #modal{ /*BASICS*/ width:50%; background:rgb(238 238 238 / 0.9); border:1px solid lightyellow; border-radius:10px; padding:1rem 2rem; outline:0; /*DO NOT TOUCH UNLESS YOU KNOW WHAT YOU'RE DOING*/ max-height:50vh; overflow:auto; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); }
For the close button, feel free to use your own creativity to customise it! You can also use the same design as your open button as what you’ve seen inside the demo. If the position of your close button is the same as what has been shown in the demo, to center it, I added the following code:
.close-modal{ margin:0 auto; display:block; }
4. The Backdrop
We can think of backdrop as something similar as a lightbox in a photoset. By default, you can see that when a modal is opened, everything except for the modal turns darker. To customise the said backdrop, all you need to do is add this code:
/*MODAL BACKGROUND*/ #modal::backdrop{ backdrop-filter:blur(10px); background:rgb(238 238 238 / 0.25); }
Of course, you can also add background image and the likes if you know how to do so.
The Fade Effect [Optional]
In order to create the fade effect, we need to use the animation property. As such simply add the following code inside #modal and #modal::backdrop:
animation:1s fade ease-in-out;
As such, the both codes will look like this:
/*MODAL CONTENT*/ #modal{ /*BASICS*/ width:50%; background:rgb(238 238 238 / 0.9); border:1px solid #eee; border-radius:10px; padding:1rem 2rem; outline:0; /*DO NOT TOUCH UNLESS YOU KNOW WHAT YOU'RE DOING*/ max-height:50vh; overflow:auto; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); animation:1s fade ease-in-out; } /*MODAL BACKGROUND*/ #modal::backdrop{ backdrop-filter:blur(10px); background:rgb(238 238 238 / 0.25); animation:1s fade ease-in-out; }
After that, add this code after #modal::backdrop :
@keyframes fade{0%{opacity:0;}50%{opacity:1;}}
With that, you’re done! Please like and/or reblog this if you found this tutorial helpful! Kindly credit me if you use this tutorial :)
Milk
A revamp/re-imagining of my (very outdated) theme Milky
preview + install
Aside from the obvious difference of a milk carton shaped sidebar vs a container, here are some more features in this theme:
Search bar
Custom colors
Drop down menu
Larger, more readable posts
Responsive
NPF compatible
theme 223 static previews: sidebar image / sidebar icon code: pastebin / github buy me a coffee?
i strongly recommend that you reset defaults before using it, so the new settings won’t have conflict with your current theme, but it will work if you don’t do it anyway
sidebar settings in the appearance
as default you can change: font type (you can pick any from google fonts. just type their name in the appearance. e.g.: Open Sans), color, size, font weight, font style, text transform, position, word and letter spacing regarding text for posts, date info, tags, and all sidebar content
4 sidebar links, icons or normal text, option to use them or not
you can edit font style, size, position, text transform, word and letter spacing for sidebar title, description and links
sidebar image size 268px, option to use or not
sidebar icon 60px up to 100px, and 160px with circle or square icon style, option to use or not
option to hide description
use or not sidebar title
use or not switch theme color
how to change the link icons on sidebar!
in the appearance, you’ll see boxes with Icon on their names: Home Icon, Ask Icon, Sidebar Link 1 Icon, etc
enter here on cappuccicons and choose an icon. you’ll only need their name. e.g.: acorn-o, then add that in the appearance
*NEW: Feather Icons as standard icons*: enter here on feather icons and choose an icon. you’ll only need their name. e.g.: grid, then add that in the appearance
posts settings
sizes 540px, 500px, 400px
tumblr dashboard captions or regular captions (with blockquote). also have an option to use custom icon in front of the username or tumblr’s user avatar
also an option to use the original post username
change background color, border, and box shadow of the sidebar and posts
custom background, text, link color for asks and “show more info” posts
option to disable the “Show more info” click, also use text instead of icon
box-shadow, and customize color and opacity
dark mode customization
in the appearance you’ll see the colors of the theme, light is default (the first one). if you scroll down a bit, there will be the dark option for them, all with “Dark” in front of their name
other options
option to use underline on links
custom controls on click or use tumblr’s default
option to use images black and white
add background image
anything else you need you can send me an ask or message
Design graphics Geya Shvecova (Balanced frequency) Archive_301222
Restocked my psyduck prints, and added some new prints and stickers to my shop!

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Steampunk Theme: Live Preview | Code
The most complicated theme I have ever made. Based on the Steampunk aesthetic, this theme is full of moving parts and detail galore. The only downside is it may take a while for the page to load the first time you view it, but it’s totally worth it.
Features:
Contains a ‘functional’ cog, pulley and weight system that moves with the page as you scroll.
Custom background colour.
Unlimited links. Your first 6 links display as fancy buttons to the right of your description. If you have more than 6 links, the rest display below your description.
Optional infinite scroll.
Custom sidebar image. Upload any square image and it’ll resize to fit.
Border and link colours are customisable.
Description scrolls when it gets too long.
Special formatting for the new reblogged asks.
Like buttons and reblog buttons on every post.
Works on all major browsers (yes, even IE).
A lot of images have been used to make this theme, from all over the internet. Take time to check out the page where I have credited them all.
FUCKEN
WIMDY
the importance of fashion accessories and hairstyle by 六一不是猫
Crusher Joe The Movie (1983)
I designed the characters for McDonald's Japan's limited menu and created package illustrations for three types of hamburgers. Please try them when you come to Japan!

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Weapon fairy no. 10
Anise swallowtail, saffron, pole axe