Get the original Sass and JavaScript files by downloading the latest version directly from GitHub.
Download FrameworkOnce downloaded, unzip the compressed folder to see the structure of the CashCall Framework.
Sass NOTE: The Sass is broken up into easy to find categories for quick development. These Sass files are then imported into the master.scss
file in a specific order to allow proper cascading. We utilize the great advancement of Object Oriented CSS (OOCSS) in this framework with
the implementation of Sass to structure the CSS, optimize, and compile it much more efficiently.
jQuery NOTE: We've included the jquery.js for you. The Javascript plugins all require it to work correctly.
cashcall-framework/
|-- css/
| |-- global-styles.css
| |-- local-styles.css
| └── etc.
|-- fonts/
| |-- fontawesome-webfont.eot
| |-- fontawesome-webfont.svg
| └── etc.
|-- images/
| |-- favicon.ico
| |-- logo-emblem.png
| └── etc.
|-- sass/
| |-- _base.scss
| |-- _buttons.scss
| └── etc.
└── js/
|-- jquery.js
|-- jquery.localscroll.js
└── etc.
reveal.js file.tooltip.js file._reveal.scss._tooltip.scss.A look at the basic HTML template.
<!DOCTYPE html>
<html>
<head>
<title>CashCall Template</title>
<link href="css/global-styles.css" rel="stylesheet" media="screen">
<link href="css/local-styles.css" rel="stylesheet" media="screen">
</head>
<body>
<h1>Hello, world!</h1>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/tooltip.js"></script>
<script src="js/reveal.js"></script>
</body>
</html>