14 lines
341 B
JavaScript
14 lines
341 B
JavaScript
import { DispCSS } from '../VariablesAndData.js';
|
|
|
|
/**
|
|
* This function creates a CSS style that stores certain standard CSS classes used by CookieMonster
|
|
|
|
*/
|
|
export default function CreateCssArea() {
|
|
DispCSS = document.createElement('style');
|
|
DispCSS.type = 'text/css';
|
|
DispCSS.id = 'CMCSS';
|
|
|
|
document.head.appendChild(DispCSS);
|
|
}
|