Shit No One Cares About Dev Log

how it looks
1728237846820.png

how its supposed to look
1728237886829.png
 
.video {
max-width: 600px;
max-height: 300px;
width: auto;
height: auto;
}
are you fucking serious, .video? oh my god, mustard.
its video, not .video

.name = css class
#name = css id
name = css element,

p {}
body {}
etc.

you need to use video {} not .video
 
the rules are there but it's being overshadowed for some reason.
1728238486331.png

i dont know how this occurs: but this is whats overshadowing the first two parts
1728238523450.png

at which point if you edited this, which is what video {} is supposed to do, it would work. my code works i guess because it executes on top of everything else, overshadowing everything else.
then these two rules are overshadowing too
1728238586191.png


the max-width: 300px inside of the element is making it so that you can't do video {max-width: 600px}
the width and height variables inside of .bbMediaWrapper-inner video is making it so that you can't do width: auto, height: auto.

you might be asking "what is element {} is it something i can like le change in le css file?" no
its this
1728238778624.png

see that style attribute, that's what is causing it. its baked directly into the element html for some reason.
 
I appreciate your work on the site themes, that stuff is really important for usability. Thank you
 
Back
Top