So, while using Kajukkkd template, I am trying to make background of all elements and child elements transparent (like notes, alerts, boxes) except for text, iframes, videos and photos.

So, while testing many things, I found that this code changes opacity of all elements:
#dokuwiki__site:not(img){
opacity:0.9;
}
But I cannot manage it to prevent targeting certain elements and the code below doesn't work either
#dokuwiki__content:not(img){
opacity:0.5;
}