Skip to main content
The Deno 2 Release Candidate is here
Learn more

import lib

import {
    f_add_css,
    f_s_css_prefixed,
    o_variables, 
    f_s_css_from_o_variables
} from "./client.module.js"
// } from "https://deno.land/x/f_add_css@[version]/mod.js"

add css by string

            f_add_css(`
                *{
                    margin:0;
                    padding:0;
                    font-family:sans
                }
            `)

add css by string, using the power of js .map and .join

            f_add_css(
                [
                [
                    `
                    *{
                        margin:0; 
                        padding: 0;
                        color: orange;
                    }`,
                    `
                        p{color:red}
                    `, 
                    `
                        h2{color:blue}
                    `, 
                ].map(s=>`.my_prefix_class ${s}`).join("\r\n")
                ].join('r\n')
            )

add a css via url

            f_add_css(`https://cdn.simplecss.org/simple.css`);

add a css to a specific document

            f_add_css(
                '*{color:red !important}',
                document?.querySelector('iframe')?.contentWindow?.document, 
            )

prefix a css string

            let s_css = `
            p{
                color:blue
            }
            *{
                color: blue
            }
            `
            let s_css_prefixed = (
                f_s_css_prefixed(
                    s_css,
                    '.all_blue'
                )
            )
            console.log(s_css_prefixed);//.all_blue p{color:blue} .all_blue *{color: blue}  
            f_add_css(
                s_css_prefixed
            )

customize

there is a also a small customizable ‘theme’

            // we need to import 
            // {
            //     o_variables, 
            //     f_s_css_from_o_variables
            // } from "https://deno.land/x/f_add_css@[version]/mod.js"

            o_variables.n_rem_font_size_base = 1. // adjust font size, other variables can also be adapted before adding the css to the dom
            o_variables.n_rem_padding_interactive_elements = 0.5; // adjust padding for interactive elements 
            f_add_css(
                f_s_css_from_o_variables(
                    o_variables
                )
            );