#PseudoClasses
Explore tagged Tumblr posts
innovatecodeinstitute · 1 year ago
Text
Mastering Series: CSS Styling
In this article, we delve into the intricacies of CSS, discussing various styling techniques, selectors, declarations, properties, and values.
1 note · View note
mikascreations · 5 months ago
Text
Tumblr media
drew some of my roblox ocs, didnt color them in because im too lazy to
Tumblr media Tumblr media
here is them in cac btw
0 notes
fashionsfromhistory · 2 years ago
Text
Tumblr media Tumblr media
Costume Armour
c.1788-1790
Pageants in pseudoclassical dress were popular in Europe from the sixteenth through the eighteenth century. An elaborate costume of the kind displayed here may have been worn for a theatrical performance or a court festivity, such as a ball or carousel in which the theme was taken from classical mythology or history. The embroidered tunic represents an embossed bronze cuirass of the type worn by high-ranking Roman officers. The stylized Greek helmet is richly decorated with mythological and allegorical figures. Inside the helmet is the original paper label that identifies the Parisian maker as Halle dit Mercier and advertises his ability to provide helmets, shields, masks, costumes, and scenery for any occasion.
The MET (Accession Number: 1988.65.1–.2)
298 notes · View notes
oscarjcarlisle · 2 years ago
Text
I won’t lie to you. I’m a twitter refugee. But I’m weird I swear. Here look, a pseudoclassical possum that’s pretty wild right
Tumblr media
55 notes · View notes
xpc-web-dev · 2 years ago
Text
Daily Journey : Day 3 and Day 4
Tumblr media
Hey Everyone.
Yesterday I was without internet and then without time to post here.
DAY 3:
We learned about selectors, font, color and background, position , flexbox, grid , responsibility, pseudoclasses and animations.
And in the end we were talking about strange tastes.
UHEHUEHUE. Was cool.
+++ I didn't have any negative points that day.
DAY 4:
Yesterday we started with the teacher giving examples of grid and flex.
We did a group exercise with a figma layout.
We have received the first task for delivery.
Negative points:
It was a group of 4 to 6 but just me and two more that we talked a lot. One of them being another woman.
And today, reflecting, I understood how wrong I was in not pulling the other woman in the group in the sense of pulling into conversation. (there were 3 of us) Of course she should speak for herself, but I learned and remembered that I have to make the space more welcoming for other women.
I just got an earful from one of the support guys because I was talking about github. It was just a github project organization tip, not a git lesson. But I lowered my head, after all, if they guide me and I'm wrong, I'll deal with it.
That's it folks.
In the most, I wish who is reading this are well and if they are not, be well.
Have a nice day ou nigth.
9 notes · View notes
eightyonekilograms · 2 years ago
Text
Never mind, this doesn't work. A bunch of fics only use part of the title in the download URL. Just get the download link right from the button element instead of messing around.
const title = document.title.split('-')[0].trim(); let downloadUrl = null; for (const a of document.querySelectorAll("a")) { if (a.innerText === "EPUB") { downloadUrl = a.href; break; } } if (title && downloadUrl) { // ... }
(also it's wild to me that there's still not a selector for matching inner text so you can do this with one line without a loop. People claim jQuery is useless now but jQuery definitely had that. Supposedly there was a proposal for a :contains() pseudoclass but it got rejected)
If you're on an AO3 work, you can get the title and download URL for the e-book of the work you're on with this (extremely hacky, probably very failure-prone) JavaScript:
const match = window.location.href.match(/\/works\/(\d+)/); const workNumber = match[1];
const titleParts = document.title.split('-'); const title = titleParts[0].trim(); const encodedTitle = encodeURIComponent(title);
const downloadUrl = https://archiveofourown.org/downloads/${workNumber}/${encodedTitle}.epub;
Combine this with your favorite automation tooling (Greasemonkey, Apple Shortcuts, whatever) to get a one-click way to download AO3 e-books. I use it to send them directly to my e-reader.
33 notes · View notes
pseudo-classes · 4 years ago
Text
For New Batches "2021-2022"
Tumblr media
0 notes
seyche · 5 years ago
Photo
Tumblr media
theme five: honeysuckle — a theme aimed at text-heavy and writing blogs, but works with any kind of posts. focuses on readable text and larger post sizes. (updated may 5, 2020)
preview / code: pastebin, github
features:
optional 70px x 70px icon
post sizes: 450px, 500px, 540px, 600px, 650px
optional search bar
show/hide/hover tags, show/hide note count on index page
NEW: improved options for text styling — option for left or justified text, more colours, and more
NEW: improved compatibility for npf photosets, and will convert the first npf photoset in a post to a regular photoset
up to 5 custom links, all colours customizable
responsive for mobile devices
FIXES: fixed issue where sidebar wasn’t scrolling properly when content overflowed, fixed issue where mobile slide-in sidebar would sometimes disappear after resizing the browser window
note: tumblr’s customize page is buggy as hell. if something doesn’t look right, try switching all the options on and off, and then save and exit. it should look fine on your actual blog.
credits:
css photosets by annasthms and espoirthemes
tippy.js tooltips by atomiks
remove redirects by magnusthemes
outicons by anton saputro
responsive videos by nouvae
npf photosets by codematurgy
npf photoset conversion by annasthms
full list of credits here
2K notes · View notes
venovenous · 7 months ago
Text
got put on an Incomplete Assignment Plan or whatnot for this pseudoclass I need to take to get my bachelor's godd. I shouldve just used chatgpt or what have you to turn in everything on time. I'm collapsing into nothing. at least they're being nice and understanding and I don't have to take the class again. I have like three small assignments I need to turn in by next week and I'll be fine and pass the class with a A. fuck 12.
I love to turn Assignment in Late
2 notes · View notes
nyehilismwriting · 3 years ago
Note
hello again! do you have any resources for text styling in Sugarcube? i'm looking through the Sugarcube documentation but don't see anything about it, and can only seem to find things for Harlowe for some reason. thank you!
yeah so here is the basic styling markup for sugarcube - bold, italics etc. for anything more advanced, you can create a new class style in your css and apply it inline - for example, to have certain text always show up in red & capitalised, you would first create a new class in your css (named "red" in this example):
.red {
text-transform: uppercase;
color: red;
}
then, in your passages, you'd denote that specific text required this class using @@.classname; - so for this example:
this text is normal. @@.red;this text is red.@@
would print:
this text is normal. THIS TEXT IS RED.
this essentially creates the equivalent of <span class="red">inline text with style applied</span> but in sugarcube syntax (you can also just use the html) - here is the sugarcube documentation on this.
you can also apply pseudoclasses to these style classes - before/after/hover etc
70 notes · View notes
didinj-blog · 6 years ago
Link
CSS3 Styling Table with Pseudoclasses is a new feature in CSS 3 that make your style more advanced and programmable.
0 notes
codematurgy · 6 years ago
Text
forbidden web development show me the IE9 compatible focus-within pseudoclass
1 note · View note
titleleaf · 7 years ago
Text
I don’t have to do one of those ask memes to tell you what flimsily draped pseudoclassical figure in art I would be -- just paint me dumping out the contents of a basket full of pears and plums and grapes and figs and shit like the fucking klutz I am, my hair is a mess, my entire cheek region is flushed like I just hit the gym and lifted two whole 15-pound weights several times, my face looks like I’m fucking pissed bc I am, maybe I’m underage, maybe I’m just a chubby lumpkins with a tiny neoclassical dick, who knows, I am fingering a rotten fig with the fury and intensity of a college freshman, there’s a lute or some shit somewhere in the background to signify that I’m a respectable Biblical figure but dude you know I’m not
10 notes · View notes
touhou-memories · 7 years ago
Audio
Orphic Poetry ~ Pseudoclassic (MIDI)
Kioh Gyoku
Mei and Mai’s theme.
7 notes · View notes
bukbot · 7 years ago
Note
4. Stylized popular speech by making a salad of the famous three styles (low, medium elevation, high) dear to the pseudoclassical archaists and adding the ingredients of Russian romanticists with a pinch of parody.
Broken leg chicken is this fuckery.
5 notes · View notes
arxt1 · 3 years ago
Text
Generalized Mathisson-Papapetrou-Tulczyjew-Dixon Equations. (arXiv:2204.11430v1 [gr-qc])
We derive two generalizations of Mathisson-Papapetrou-Tulczyjew-Dixon equations from Casalbuoni-Brink-Schwarz type pseudoclassical Lagrangians of Majorana spinors on a Riemann-Cartan spacetime. One has a "color" freedom, which makes the equations of motion also be a generalization of Wong equations. The other is a spinor model coupled with a Rarita-Schwinger field to preserve the supersymmetry. The coupling to the torsion is modified due to the existence of the Rarita-Schwinger field. In both extensions, the Tulczyjew condition is automatically satisfied.
from gr-qc updates on arXiv.org https://ift.tt/z4jfn3S
0 notes