Getting started

Get AskaCSS framework

For obtain the framework, you can visit to Github page, or you can download the latest version here.

Content of ZIP file

The ZIP file contains the following files:

Installation of ZIP version

Uncompress ZIP file in your project resource directory. The css, js and fonts directories, is important. Use 〈link〉 tag to include the CSS file in your HTML. The askacss.min.css file, is used in production websites. askacss.css, is habitualy used for development websites.

Use 〈script〉 tag to include the JavaScript file in your HTML. The askacss.min.js file, is used in production websites. askacss.js, is habitualy used for development websites.

Usage with source files

For usage framework with source files, it is necessary to install node.js, npm, sass and typescript. The SCSS files is compile with the sass command. The TypeScript files is compile with the tsc command.

Type command, to install sass compiler :

npm -g install sass

Type command, to install typescript compiler :

npm -g install typescript

type command, to compile SCSS files :

sass scss/askacss.scss location/directory/askacss.css

Place you into ts directory and type command, to compile TypeScript files :

tsc askacss.ts
or
tsc --outFile location/askacss.js