SQL styles
UPDATE styles SET background = '#23054d', color = 'white', "font-size" = 'large', padding = '16px', "font-family" = '"Raleway", sans-serif', "line-height" = '1.6' WHERE element = 'body'; UPDATE styles SET color = '#F73D93' WHERE element = 'a'; UPDATE styles SET color = '#7AF2DF' WHERE class = 'highlight'; UPDATE styles SET border = '1px solid gray', "border-radius" = '4px' WHERE element = 'code';
CSS output
body { background: #23054d; color: white; font-size: large; padding: 16px; font-family: "Raleway", sans-serif; line-height: 1.6; } a { color: #F73D93; } .highlight { color: #7AF2DF; } code { border: 1px solid gray; border-radius: 4px; }
 ▶