What is Sweet Candy UI Kit
Sweet Candy UI Kit is a number of useful user interface components built on Bootstrap 3 framework. We did not modify any line of Bootstrap, but we rewrote some of its grid rules in our style.css
to disable responsiveness. Sweet Candy is not a responsive UI Kit.
What is included
Once purchased, unzip the compressed folder to see the directory structure of Sweet Candy UI Kit. You'll see something like this:
sweet-candy ├───docs │ ├───css │ ├───images │ └───js ├───sweet-candy-css │ ├───css │ ├───fonts │ ├───images │ │ ├───icons │ │ ├───prettyPhoto │ │ └───temp │ ├───js │ │ └───libs │ └───styles │ ├───blue │ ├───green │ └───purple └───sweet-candy-less ├───fonts ├───images │ ├───icons │ ├───prettyPhoto │ └───temp ├───js │ └───libs ├───less │ └───bootstrap └───styles ├───blue ├───green └───purple
- docs/
- contains this documentation.
- sweet-candy-css/
- contains Sweet Candy UI Kit in simple CSS format. Use it to easily start your project.
- css/
- contains all the stylesheets for CSS version of the kit.
- fonts/
- contains Bootstrap Glyphicons for CSS version of the kit.
- images/
- contains all the images for CSS version of the kit.
- images/icons/
- contains all the icons for CSS version of the kit.
- images/temp/
- contains all the temporary images for CSS version of the kit.
- js/
- contains all the JS files for CSS version of the kit.
- styles/
- contains all the stylesheets for different color schemes (CSS Version).
- styles/blue/
- contains all the images for Blue color scheme (CSS Version).
- styles/green/
- contains all the images for Green color scheme (CSS Version).
- styles/purple/
- contains all the images for Purple color scheme (CSS Version).
- sweet-candy-less/
- contains Sweet Candy UI Kit in LESS format. Use it to modify this kit in your project.
- fonts/
- contains Bootstrap Glyphicons for LESS version of the kit.
- images/
- contains all the images for LESS version of the kit.
- images/icons/
- contains all the icons for LESS version of the kit.
- images/temp/
- contains all the temporary images for LESS version of the kit.
- js/
- contains all the JS files for LESS version of the kit.
- less/
- contains all the stylesheets for LESS version of the kit.
- styles/
- contains all the stylesheets for different color schemes (LESS Version).
- styles/blue/
- contains all the images for Blue color scheme (LESS Version).
- styles/green/
- contains all the images for Green color scheme (LESS Version).
- styles/purple/
- contains all the images for Purple color scheme (LESS Version).
Note: The folders sweet-candy-css
and sweet-candy-less
is fully independent from each other, including all the images and JS files. You can use the version you prefer without pulling images or JS files from the other version of the kit.
Browser support
Since Sweet Candy UI Kit is built on Bootstrap 3 framework, it supports the same browsers as Bootstrap.
Getting Started
To start working with Sweet Candy UI Kit you can use a basic template.html
, or take the completely functional pages included in this package. Since it is built on Bootstrap, you can also use it on your project with Bootstrap 3.
We provide you both CSS and LESS standalone versions which are completely identical in design and functions.
CSS Version: You can use CSS version by dropping contents of sweet-candy-css
folder to your project folder and including style.css
file in your HTML page: <link href="style.css" media="screen" rel="stylesheet">
LESS Version: You can find it in sweet-candy-less
folder. Use LESS if you want to modify Sweet Candy UI Kit. We built it Bootstrap way so you won't find big difference. Use less/variables.less
to modify different styles, use style.less
to remove needless components.
If you want to start from scratch, the best way is to use our template where all startup files are already included and ready to be used. You can find template.html
file both for CSS and LESS version in their respective folders.
Basic Template
You can use a basic HTML template to write your code, or take completely functional pages included in this package. Basic template as well as completely functional pages are available both for CSS and LESS versions of the Sweet Candy UI Kit.
<!doctype html> <!--[if lt IE 7 ]><html lang="en" class="no-js ie6"> <![endif]--> <!--[if IE 7 ]><html lang="en" class="no-js ie7"> <![endif]--> <!--[if IE 8 ]><html lang="en" class="no-js ie8"> <![endif]--> <!--[if IE 9 ]><html lang="en" class="no-js ie9"> <![endif]--> <!--[if (gt IE 9)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]--> <head> <meta charset="utf-8"> <meta name="author" content=""> <meta name="keywords" content=""> <meta name="viewport" content="width=device-width,initial-scale=1"> <title></title> <!-- main JS libs --> <script src="js/libs/modernizr.min.js"></script> <script src="js/libs/jquery-1.10.0.js"></script> <script src="js/libs/jquery-ui.min.js"></script> <script src="js/libs/bootstrap.min.js"></script> <!-- Style CSS --> <link href="css/bootstrap.css" media="screen" rel="stylesheet"> <link href="style.css" media="screen" rel="stylesheet"> <!-- scripts --> <script src="js/general.js"></script> <!-- Include all needed stylesheets and scripts here --> <!--[if lt IE 9]><script src="js/respond.min.js"></script><![endif]--> <!--[if gte IE 9]> <style type="text/css"> .gradient {filter: none !important;} </style> <![endif]--> </head> <body> <!-- container --> <div class="container"> Start your work here. </div> <!--/ container --> </body> </html>
Typography
Sweet Candy UI Kit uses free Scada webfont available at the Google Fonts. The global default font-size is 14px, with a font-weight of 400. This is applied to the <body>
. In addition, all <p>
(paragraphs) receive bottom margin of 16px.
Also, all headings, <h1>
through <h6>
are available.
Example
Example (h1)
Example (h2)
Example (h3)
Example (h4)
Example (h5)
Example (h6)
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in dui mauris. Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in dui mauris. Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor. Ut in nulla enim. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum feugiat nisl ut dapibus.
<h1>Example (h1)</h1> <h2>Example (h2)</h2> <h3>Example (h3)</h3> <h4>Example (h4)</h4> <h5>Example (h5)</h5> <h6>Example (h6)</h6> <p>Lorem ipsum dolor sit amet.</p> <p>Lorem ipsum dolor sit amet.</p>
Buttons
Simple Buttons
Use any of the available button classes to quickly create a simple button.
Example
<a href="#" class="btn"><span>Default</span></a> <a href="#" class="btn btn-yellow"><span>Yellow</span></a> <a href="#" class="btn btn-blue"><span>Blue</span></a> <a href="#" class="btn btn-green"><span>Green</span></a> <a href="#" class="btn btn-grey"><span>Grey</span></a> <a href="#" class="btn btn-white"><span>White</span></a> <a href="#" class="btn btn-purple"><span>Purple</span></a> <a href="#" class="btn btn-yellow btn-large"><span>Yellow</span></a> <a href="#" class="btn btn-blue btn-large"><span>Blue</span></a> <a href="#" class="btn btn-green btn-large"><span>Green</span></a> <a href="#" class="btn btn-purple btn-large"><span>Purple</span></a> <a href="#" class="btn btn-grey btn-large"><span>Grey</span></a>
Buttons with rounded corners
Example
<a href="#" class="btn btn-yellow btn-round"><span>Yellow</span></a> <a href="#" class="btn btn-blue btn-round"><span>Blue</span></a> <a href="#" class="btn btn-green btn-round"><span>Green</span></a> <a href="#" class="btn btn-purple btn-round"><span>Purple</span></a> <a href="#" class="btn btn-yellow btn-round btn-large"><span>Yellow</span></a> <a href="#" class="btn btn-blue btn-round btn-large"><span>Blue</span></a> <a href="#" class="btn btn-green btn-round btn-large"><span>Green</span></a> <a href="#" class="btn btn-purple btn-round btn-large"><span>Purple</span></a>
Rounded Buttons with hover effect
Button with hover and active states. Four color styles available.
Example
<a href="#" class="btn btn-hover btn-yellow"><span>Yellow</span></a> <a href="#" class="btn btn-hover btn-blue"><span>Blue</span></a> <a href="#" class="btn btn-hover btn-green"><span>Green</span></a> <a href="#" class="btn btn-hover btn-purple"><span>Purple</span></a>
Shaped Buttons
Buttons with left and right pointers.
Example
<a href="#" class="btn btn-yellow btn-right"><span>Yellow</span></a> <a href="#" class="btn btn-blue btn-right"><span>Blue</span></a> <a href="#" class="btn btn-green btn-right"><span>Green</span></a> <a href="#" class="btn btn-purple btn-right"><span>Purple</span></a> <a href="#" class="btn btn-yellow btn-left"><span>Yellow</span></a> <a href="#" class="btn btn-blue btn-left"><span>Blue</span></a> <a href="#" class="btn btn-green btn-left"><span>Green</span></a> <a href="#" class="btn btn-purple btn-left"><span>Purple</span></a> <a href="#" class="btn btn-yellow btn-right btn-large"><span>Yellow</span></a> <a href="#" class="btn btn-blue btn-right btn-large"><span>Blue</span></a> <a href="#" class="btn btn-green btn-right btn-large"><span>Green</span></a> <a href="#" class="btn btn-purple btn-right btn-large"><span>Purple</span></a> <a href="#" class="btn btn-yellow btn-left btn-large"><span>Yellow</span></a> <a href="#" class="btn btn-blue btn-left btn-large"><span>Blue</span></a> <a href="#" class="btn btn-green btn-left btn-large"><span>Green</span></a> <a href="#" class="btn btn-purple btn-left btn-large"><span>Purple</span></a>
Buttons with Icons
Example
<a href="#" class="btn btn-icon"><span><i class="icon-statistic"></i>Statistic</span></a> <a href="#" class="btn btn-icon"><span><i class="icon-favorites"></i>Favorites</span></a> <a href="#" class="btn btn-icon"><span><i class="icon-comments"></i>Comments</span></a> <a href="#" class="btn btn-icon"><span><i class="icon-games"></i>Games</span></a> <a href="#" class="btn btn-icon"><span><i class="icon-world"></i>World</span></a> <a href="#" class="btn btn-icon"><span><i class="icon-photo"></i>Photography</span></a> <a href="#" class="btn btn-icon btn-left"><span><i class="icon-design"></i>Design</span></a> <a href="#" class="btn btn-icon btn-left"><span><i class="icon-ideas"></i>Ideas</span></a> <a href="#" class="btn btn-icon btn-right"><span><i class="icon-tv"></i>TV Show</span></a>
Buttoned Input
Wrap input type="submit"
into span
and use available button classes to create a styled Input.
Example
<span class="btn btn-hover btn-blue"><input type="submit" value="Send Message" /></span>
Ribbons
Easily highlight items with Ribbons.
Example
<div class="ribbon"><span>Default Ribbon</span></div> <div class="ribbon ribbon_blue"><span>Blue Ribbon</span></div> <div class="ribbon ribbon_green"><span>Green Ribbon</span></div> <div class="ribbon ribbon_purple"><span>Purple Ribbon</span></div>
Badges
Easily highlight items with Badges.
Example
<div class="badge"></div> <div class="badge badge_blue"></div> <div class="badge badge_green"></div> <div class="badge badge_purple"></div> <div class="badge badge-small"><span></span></div> <div class="badge badge-small badge_green"><span></span></div>
Rating Stars
Use rating stars for voting.
Example
<div class="rating"> <span class="star on"><input type="hidden" value="1"></span><!-- --><span class="star on"><input type="hidden" value="2"></span><!-- --><span class="star on"><input type="hidden" value="3"></span><!-- --><span class="star off"><input type="hidden" value="4"></span><!-- --><span class="star off"><input type="hidden" value="5"></span> </div>
Form Elements
Checkboxes
Use styled checkboxes instead of the usual ones.
Element specific usage
Attribute name
required for input
element.
Styled Checkbox require next file to be included into <head>
section of the page:
<script src="js/jquery.customInput.js"></script>
Example
<div class="input_styled checklist"> <div class="rowCheckbox"> <input name="check-1" type="checkbox" id="check-1" value="check-1"> <label for="check-1">Default Checkbox</label> </div> <div class="rowCheckbox rowCheckbox-blue"> <input name="check-2" type="checkbox" id="check-2" value="check-2"> <label for="check-2">Blue Checkbox</label> </div> <div class="rowCheckbox rowCheckbox-purple"> <input name="check-3" type="checkbox" id="check-3" value="check-3"> <label for="check-3">Purple Checkbox</label> </div> <div class="rowCheckbox rowCheckbox-yellow"> <input name="check-4" type="checkbox" id="check-4" value="check-4"> <label for="check-4">Yellow Checkbox</label> </div> <div class="rowCheckbox checkbox-large"> <input name="check-5" type="checkbox" id="check-5" value="check-5"> <label for="check-5">Switch</label> </div> </div>
Radio Buttons
Use styled radio buttons instead of the usual ones.
Element specific usage
Attribute name
required for input
element.
Styled Radio Button require next file to be included into <head>
section of the page:
<script src="js/jquery.customInput.js"></script>
Example
<div class="input_styled inlinelist"> <div class="rowRadio"> <input type="radio" name="ex-radio" value="radio-1" id="radio-1" checked> <label for="radio-1">Default Radio</label> </div> <div class="rowRadio rowRadio-blue"> <input type="radio" name="ex-radio" value="radio-2" id="radio-2"> <label for="radio-2">Blue Radio</label> </div> <div class="rowRadio rowRadio-purple"> <input type="radio" name="ex-radio" value="radio-3" id="radio-3"> <label for="radio-3">Purple Radio</label> </div> <div class="rowRadio rowRadio-yellow"> <input type="radio" name="ex-radio" value="radio-4" id="radio-4"> <label for="radio-4">Yellow Radio</label> </div> </div>
Text Inputs
All Text inputs are styled.
Element specific usage
Text Inputs with placeholders
require next file to be included into <head>
section of the page:
<script src="js/jquery.powerful-placeholder.min.js"></script>
Example
<div class="field_text"> <input type="text" name="name" id="name" placeholder="Name"> </div> <div class="field_text omega"> <input type="text" name="email" id="email" placeholder="Email"> </div>
Textareas
All Textareas are styled similar to Text inputs.
Element specific usage
Textareas with placeholders
require next file to be included into <head>
section of the page:
<script src="js/jquery.powerful-placeholder.min.js"></script>
Example
<div class="field_text field_textarea"> <textarea id="message" placeholder="Message"></textarea> </div>
Scroll Bars
Use any of the available classes to quickly create a styled Scroll Bar for your site.
Element specific usage
Styled Scroll Bar require next files to be included into <head>
section of the page:
<script src="js/jquery.mousewheel.js"></script> <script src="js/jquery.jscrollpane.min.js"></script>
Example
<div class="scrollbar"> <!--Place your content here--> </div> <div class="scrollbar style2"> <!--Place your content here--> </div> <div class="scrollbar style3"> <!--Place your content here--> </div> <div class="scrollbar style4"> <!--Place your content here--> </div> <div class="scrollbar style5"> <!--Place your content here--> </div> <div class="scrollbar style6"> <!--Place your content here--> </div>
<script type="text/javascript"> jQuery(function() { jQuery('.scrollbar').jScrollPane({ verticalDragMaxHeight: 55, verticalDragMinHeight:55 }); jQuery('.scrollbar.style2').jScrollPane({ verticalDragMaxHeight: 55, verticalDragMinHeight:55 }); jQuery('.scrollbar.style3').jScrollPane({ verticalDragMaxHeight: 16, verticalDragMinHeight:16 }); jQuery('.scrollbar.style4').jScrollPane({ verticalDragMaxHeight: 43, verticalDragMinHeight:43 }); jQuery('.scrollbar.style5').jScrollPane({ verticalDragMaxHeight: 16, verticalDragMinHeight:16 }); jQuery('.scrollbar.style6').jScrollPane({ verticalDragMaxHeight: 23, verticalDragMinHeight:23 }); }); </script>
Progress Bars
Use styled Progress Bars on your site.
Element specific usage
Styled Progress Bar require next files to be included into <head>
section of the page:
<script src="js/jquery-ui.min.js"></script> <script src="js/progressbar.js"></script>
Example
<!-- Default Progress Bar --> <div id="progressBar1" class="progressbar"> <span class="mark-left">0%</span> <span class="mark-right">100%</span> <div class="percent"></div> <div class="pbar"></div> <div class="elapsed"></div> <div class="remained"></div> </div> <!-- Progress Bar with download Bar --> <div id="progressBar2" class="progressbar style2"> <span class="mark-left">0%</span> <span class="mark-right">100%</span> <div class="percent"></div> <div class="pbar"> <div id="downloadBar2" class="downloadbar"> <div class="pbar"></div> </div> </div> <div class="elapsed"></div> <div class="remained"></div> </div>
<script type="text/javascript"> $(document).ready(function() { // Default Progress Bar $('#progressBar1').anim_progressbar({ totaltime: 600 }); // Progress Bar with download Bar $('#progressBar2').anim_progressbar({ totaltime: 800 }); $('#downloadBar2').anim_progressbar({ totaltime: 500 }); }); </script>
Range Slider
Range Slider allow users to select a value from a numerical range by simply dragging a slider.
Element specific usage
Range Slider require next files to be included into <head>
section of the page:
<script src="js/jquery-ui.min.js"></script> <script src="js/jquery.slider.bundle.js"></script> <script src="js/jquery.slider.js"></script> <link rel="stylesheet" href="css/jslider.css">
Example
<div class="range-slider"> <input id="price_range" type="text" name="price_range" value="260;800"> </div>
<script type="text/javascript" > jQuery(document).ready(function($) { $("#price_range").rangeslider({ from: 50, to: 1000, limits: false, scale: ['$50', '$1000'], heterogeneity: ['50/500'], step: 10, smooth: true, dimension: '$' }); }); </script>
Knobs
Element specific usage
Knob elements require next file to be included into <head>
section of the page:
<script type="text/javascript" src="js/knobRot-0.2.2.js"></script>
Volume Knob
Adjust volume with this element.
Example
<div class="widget-knob widget-volume"> <input type="text" value="77" autocomplete="off" id="volume" /> </div>
<script type="text/javascript"> $(document).ready(function() { $('#volume').knobRot({ 'classes': ['volume'], 'dragVertical': false, 'frameCount': 58, 'frameWidth': 80, 'frameHeight': 80, 'detent': true, 'detentThreshold': 5, 'minimumValue': 0, 'maximumValue': 100, 'hideInput': true }); }); </script>
Balance Knob
Adjust balance with this element.
Example
<div class="widget-knob widget-balance"> <input type="text" value="0" autocomplete="off" id="balance" /> </div>
<script type="text/javascript"> $(document).ready(function() { $('#balance').knobRot({ 'classes': ['balance'], 'dragVertical': false, 'frameCount': 35, 'frameWidth': 120, 'frameHeight': 120, 'detent': true, 'detentThreshold': 2, 'minimumValue': -50, 'maximumValue': 50, 'hideInput': true }); }); </script>
Navigation
Website Menu
Use it as a main menu for your site.
Example
<div class="dropdown-wrap"> <i class="dropdown-icon dropdown-icon2"></i> <ul class="dropdown clearfix"> <li><a href="#"><span>Home</span></a> <ul> <li><a href="#">Two Columns</a></li> <li><a href="#">Three Columns</a></li> <li><a href="#">Four Columns</a></li> </ul> </li> <li><a href="#"><span>About</span></a> <ul> <li><a href="#">About Page</a></li> <li><a href="#">Pricing Page</a></li> <li><a href="#">Home Pages</a> <ul> <li><a href="#">Gallery images</a></li> <li><a href="#">OneByOne Slider</a></li> <li><a href="#">Video in header</a></li> <li><a href="#">Image & Video Slider</a></li> </ul> </li> <li><a href="#">Services Page</a> <ul> <li><a href="#">Services Page (var1)</a></li> <li><a href="#">Services Page (var2)</a></li> </ul> </li> <li><a href="#">Sidebar Right</a></li> <li><a href="#">Sidebar Left</a></li> <li><a href="#">Shortcodes</a> <ul> <li><a href="#">Buttons & Lists</a> <ul> <li><a href="#">Services Page (var1)</a></li> <li><a href="#">Services Page (var2)</a></li> </ul> </li> <li><a href="#">Text & Images</a></li> <li><a href="#">Charts</a></li> </ul> </li> </ul> </li> <li><a href="#"><span>Contacts</span></a></li> <li><a href="#"><span>Services</span></a></li> <li><a href="#"><span>Portfolio</span></a></li> <li><a href="#"><span>Team</span></a></li> <li><a href="#"><span>Blog</span></a></li> <li><a href="#"><span>Shop</span></a></li> </ul> </div>
Dropdown Menu
Use it as a single item menu.
Example
<div class="dropdown-wrap styled"> <ul class="dropdown clearfix"> <li><a href="#"><span>Settings</span></a> <ul> <li><a href="#">About Page</a></li> <li><a href="#">Pricing Page</a></li> <li><a href="#">Home Pages</a> <ul> <li><a href="#">Gallery images</a></li> <li><a href="#">OneByOne Slider</a></li> <li><a href="#">Video in header</a></li> <li><a href="#">Image & Video</a></li> </ul> </li> <li><a href="#">Services Page</a></li> <li><a href="#">Sidebar Right</a></li> <li><a href="#">Sidebar Left</a></li> <li><a href="#">Shortcodes</a></li> </ul> </li> </ul> </div>
Tabs
Add quick, dynamic tab functionality to transition through panes of local content. Two different Tab styles available.
Example
Young gypsy voice

Intrepid Jonathan Trappe, 38, took off just like the 78-year-old character Carl Frederickson in the hit movie.
Toy Story 3

A cluster balloonist who became the first person to fly the English Channel has Intrepid Jonathan Trappe, 38, took off just like the 78-year-old character Carl Frederickson in the hit movie.
Young gypsy voice

A cluster balloonist who became the first person to fly the English Channel has Intrepid Jonathan Trappe, 38, took off just like the 78-year-old character Carl Frederickson in the hit movie.
<!--Tabs default style--> <div class="tabs_framed"> <div class="inner"> <ul class="tabs clearfix active_bookmark1"> <li class="active"><a href="#popular" data-toggle="tab">Popular</a></li> <li><a href="#recent" data-toggle="tab">Recent</a></li> <li><a href="#foo" data-toggle="tab">Tab 3</a></li> </ul> <div class="tab-content"> <div class="tab-pane fade in active" id="popular"> <h4>Young gypsy voice</h4> <div class="tab_image"><img src="images/temp/tabimage1.png" alt="" /></div> <p> Intrepid Jonathan Trappe, 38, took off just like the 78-year-old character Carl Frederickson in the hit movie. </p> </div> <div class="tab-pane fade" id="recent"> <h4>Toy Story 3</h4> <div class="tab_image pull-left"><img src="images/temp/tabimage2.png" alt="" /></div> <p> A cluster balloonist who became the first person to fly the English Channel has Intrepid Jonathan Trappe </p> </div> <div class="tab-pane fade" id="foo"> <h4>Young gypsy voice</h4> <div class="tab_image pull-right"><img src="images/temp/tabimage3.png" alt="" /></div> <p> A cluster balloonist who became the first person to fly the English Channel has Intrepid Jonathan Trappe </p> </div> </div> </div> <div class="bottom"></div> </div> <!--Tabs alternative style--> <div class="tabs_framed styled"> <div class="inner"> <div class="header-top"><span></span></div> <ul class="tabs clearfix active_bookmark1"> <li class="active"><a href="#events" data-toggle="tab">Events</a></li> <li><a href="#reminders" data-toggle="tab"><sup class="note">5</sup>Reminders</a></li> <li><a href="#starred" data-toggle="tab">Starred</a></li> <li><a href="#archive" data-toggle="tab">Archive</a></li> <li><a href="#tab5" data-toggle="tab">Tab5</a></li> </ul> <div class="tab-content"> <div class="tab-pane fade in active" id="events"> <div class="tab_image"><img src="images/temp/tabimage4.png" alt="" /></div> <h4>23 December</h4> <p>He made his film debut with a mirror part in Black to the Future Part II</p> <a href="#" class="btn btn-blue btn-right"><span>See more</span></a> </div> <div class="tab-pane fade" id="reminders"> <div class="tab_image"><img src="images/temp/tabimage5.png" alt="" /></div> <h4>5 November</h4> <p>He made his film debut with a mirror part in Black to the Future Part II</p> <a href="#" class="btn btn-blue btn-right"><span>See more</span></a> </div> <div class="tab-pane fade" id="starred"> <div class="tab_image"><img src="images/temp/tabimage6.png" alt="" /></div> <h4>11 October</h4> <p>He made his film debut with a mirror part in Black to the Future Part II</p> <a href="#" class="btn btn-blue btn-right"><span>See more</span></a> </div> <div class="tab-pane fade" id="archive"> <div class="tab_image"><img src="images/temp/tabimage4.png" alt="" /></div> <h4>14 September</h4> <p>He made his film debut with a mirror part in Black to the Future Part II</p> <a href="#" class="btn btn-blue btn-right"><span>See more</span></a> </div> <div class="tab-pane fade" id="tab5"> <div class="tab_image"><img src="images/temp/tabimage5.png" alt="" /></div> <h4>27 August</h4> <p>He made his film debut with a mirror part in Black to the Future Part II</p> <a href="#" class="btn btn-blue btn-right"><span>See more</span></a> </div> </div> </div> <div class="bottom"></div> </div>
Dividers
Separate content with dividers.
Example
<div class="divider"></div> <div class="divider dashed"></div>
Forms
Element specific usage
All the forms require next file to be included into <head>
section of the page:
<script src="js/jquery.powerful-placeholder.min.js"></script>
Contact Form
Element specific usage
Contact Form require next files to be included into <head>
section of the page:
<link rel="stylesheet" href="css/chosen.css"> <script src="js/jquery.chosen.min.js" type="text/javascript"></script> <script src="js/nicEdit.js"></script>
Example
<div class="add-comment styled" id="addcomments"> <div class="add-comment-title"><h3></h3></div> <div class="comment-form"> <div class="header-top"><span></span></div> <form action="#" method="post" id="commentForm" class="ajax_form"> <div class="form-inner"> <div class="field_select"> <label for="contact_name" class="label_title">Name:</label> <select name="contact_name" id="contact_name" multiple data-placeholder="Your Selection"> <option value='example1@gmail.com'>Black Sabbath</option> <option value='example2@gmail.com'>Lana Ray</option> <option value='example3@gmail.com'>Toby Lightman</option> <option value='example4@gmail.com'>Lene Marlin</option> <option value='example5@gmail.com'>Deep Purple</option> </select> </div> <div class="field_text"> <label for="email" class="label_title">Email:</label> <input type="text" name="email" id="email" value="" placeholder="Home orgoniation" class="inputtext input_middle required" /> </div> <div class="clear"></div> <div class="field_text field_textarea"> <div id="edit_buttons" class="edit_buttons"></div> <label for="styled_message" class="label_title">Message</label> <textarea name="styled_message" id="styled_message" placeholder="Hi how are you?" class="textarea textarea_middle required">Hi how are you?</textarea> </div> <div class="clear"></div> </div> <div class="rowSubmit"> <a onclick="document.getElementById('commentForm').reset();return false" href="#" class="link-reset btn"><span>Discard</span></a> <span class="btn btn-yellow btn-right"><input type="submit" id="send" value="Send Message" /></span> </div> </form> </div> </div>
<script type="text/javascript"> // Multiselect jQuery(document).ready(function() { jQuery('#contact_name').chosen({ width: "100%" }); }); // Text Editor bkLib.onDomLoaded(function() { var myNicEditor = new nicEditor({ buttonList : [ 'bold', 'italic', 'underline', 'forecolor', 'left', 'center', 'right', 'justify' ] }); myNicEditor.setPanel('edit_buttons'); myNicEditor.addInstance('styled_message'); }); setTimeout(function () { $('.nicEdit-container').css('width', '331px'); $('.nicEdit-main').css('width', '307px'); }, 2000); </script>
Search Form
Example
<!-- Default Style --> <div class="widget-container widget_search"> <div class="header-top"><span></span></div> <div class="inner"> <form method="get" id="searchform1" action="#"> <div class="clearfix"> <input class="inputField" placeholder="Type word here" value="" type="text" /> <span class="btn btn-blue btn-right omega"><input type="submit" id="searchsubmit1" value="Search" /></span> </div> </form> </div> </div> <!-- Alternative Style --> <div class="widget-container widget_search styled"> <div class="header-top"><span></span></div> <div class="inner"> <form method="get" id="searchform2" action="#"> <div class="clearfix"> <input class="inputField" placeholder="Type word here" value="" type="text" /> <span class="input_icon"></span> <span class="btn btn-blue btn-right omega"><input type="submit" id="searchsubmit2" value="Search" /></span> </div> </form> </div> </div>
Pricing
Use pricing items to announce prices for your services. Three different pricing styles available. Add class col_active
to price_col
to highlight pricing item. Add color class to price_col
class to change item color.
Available color classes are the next: price_col_green
, price_col_blue
, price_col_purple
.
Pricing Items default style
Example
-
$99/monthBasic All important futures for work
- Unlimited Traffic
- 20 gb in Cloud
- 0.5gbit/sec
-
$299/monthPremium Lots of clients & users
- Unlimited Traffic
- 50 gb in Cloud
- 1gbit/sec
-
$499/monthUltimate All important futures for work
- Unlimited Traffic
- 80 gb in Cloud
- 2gbit/sec
<div class="pricing_box clearfix"> <ul> <li class="price_col price_col_green"> <div class="price_item"> <div class="inner"> <div class="price_col_head"> <span class="ribbon2"></span> <div class="price"> <sup title="$">$</sup><!-- --><span title="99">99</span><!-- --><em title="/month">/month</em> </div> </div> <div class="price_col_body clearfix"> <div class="price_body_inner"> <div class="price_body_top"> <strong>Basic</strong> <span>All important futures for work</span> <div class="line"></div> </div> <ul> <li>Unlimited Traffic</li> <li>20 gb in Cloud</li> <li>0.5gbit/sec</li> </ul> </div> </div> </div> <div class="price_col_foot"> <div class="sign_up"> <a href="#" class="btn btn-white btn-square"><span>try a Week</span></a> </div> </div> </div> </li> ... ... ... </ul> </div>
Message Field
Example
-
William Bradley "Brad" Pitt is an American actor and film producer. Pitt has received four Academy Award nominations and five Golden Globe Award nominations.William Bradley "Brad" Pitt is an American actor and film producer. Pitt has received four
-
Elijah Wood is an American actor best known for portraying Frodo.
-
<div class="comment-list clearfix" id="comments"> <ol> <li class="comment"> <div class="comment-top"><span></span></div> <div class="comment-body"> <div class="comment-avatar"> <div class="avatar"><img src="images/temp/avatar2.png" alt="" /></div> </div> <div class="comment-text"> <div class="comment-author clearfix"> <a href="#" class="link-author">Brad Pit</a> <span class="comment-date">June 28, 2012</span> | <a href="#addcomments" class="link-reply anchor">Reply</a> </div> <div class="comment-entry"> William Bradley "Brad" Pitt is an American actor and film producer. Pitt has received four Academy Award nominations and five Golden Globe Award nominations.William Bradley "Brad" Pitt is an American actor and film producer. Pitt has received </div> </div> <div class="clear"></div> </div> <!-- comment reply --> <ul class="children"> <li class="comment"> <div class="comment-top"><span></span></div> <div class="comment-body"> <div class="comment-arrow"></div> <div class="comment-avatar"> <div class="avatar"><img src="images/temp/avatar3.png" alt="" /></div> </div> <div class="comment-text"> <div class="comment-author clearfix"> <span class="link-author">Elijah Wood</span> </div> <div class="comment-entry"> Elijah Wood is an American actor best known for portraying Frodo. </div> </div> <div class="clear"></div> </div> </li> </ul> <!--/ comment reply --> </li> </ol> </div>
Video Player
Use Video.js player to play video content.
Element specific usage
Video Player require next files to be included into <head>
section of the page:
<link href="css/video-js.css" rel="stylesheet"> <script src="js/video.js"></script>
Example
<div class="video_player"> <div class="video-top"></div> <div class="inner"> <video id="my_video_1" class="video-js vjs-default-skin" controls loop preload="auto" width="434" height="182" poster="images/temp/horse.png" data-setup="{}"> <source src="http://path-to-video/video.mp4" type='video/mp4'> </video> </div> </div>
Audio Player
Use jPlayer to play audio content. Three different player styles available.
Element specific usage
Audio Player require next files to be included into <head>
section of the page:
<link href="css/jplayer.css" rel="stylesheet"> <script src="js/jquery.jplayer.min.js"></script> <script src="js/jplayer.playlist.min.js"></script>
Large Audio Player
Example
<div class="widget-container widget-audio omega"> <div class="header-top"><span></span></div> <div class="inner"> <div id="jquery_jplayer_1" class="jp-jplayer"></div> <div id="jp_container_1" class="jp-audio"> <div class="jp-type-playlist"> <div class="jp-gui jp-interface"> <div class="divide"></div> <div class="song_title"></div> <ul class="jp-controls"> <li><a href="javascript:;" class="jp-previous disabled" tabindex="1">previous</a></li> <li><a href="javascript:;" class="jp-play" tabindex="1">play</a></li> <li><a href="javascript:;" class="jp-pause" tabindex="1">pause</a></li> <li><a href="javascript:;" class="jp-next" tabindex="1">next</a></li> <li><a href="javascript:;" class="jp-stop" tabindex="1">stop</a></li> <li><a href="javascript:;" class="jp-mute" tabindex="1" title="mute">mute</a></li> <li><a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li> <li><a href="javascript:;" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li> </ul> <div class="jp-progress"> <div class="jp-seek-bar"> <div class="jp-play-bar"></div> </div> </div> <div class="jp-volume-bar"> <div class="jp-volume-bar-value"></div> </div> <div class="jp-current-time"></div> <div class="jp-duration"></div> <ul class="jp-toggles"> <li><a href="javascript:;" class="jp-shuffle" tabindex="1" title="shuffle">shuffle</a></li> <li><a href="javascript:;" class="jp-shuffle-off" tabindex="1" title="shuffle off">shuffle off</a></li> <li><a href="javascript:;" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li> <li><a href="javascript:;" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li> </ul> </div> <div class="jp-playlist"> <ul> <li></li> </ul> </div> <div class="jp-no-solution"> <span>Update Required</span> <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a> </div> </div> </div> </div> </div>
<script type="text/javascript"> //<![CDATA[ $(document).ready(function(){ var $ = jQuery; new jPlayerPlaylist({ jPlayer: "#jquery_jplayer_1", cssSelectorAncestor: "#jp_container_1" }, [ { title:"<img src='images/temp/music-player1.png' /><span><strong>Rihanna -</strong> Only Girl</span>", mp3:"http://www.jplayer.org/audio/mp3/Miaow-03-Lentement.mp3", oga:"http://www.jplayer.org/audio/ogg/Miaow-03-Lentement.ogg" }, { title:"<img src='images/temp/music-player2.png' /><span><strong>Rihanna -</strong> Only</span>", mp3:"http://www.jplayer.org/audio/mp3/Miaow-02-Hidden.mp3", oga:"http://www.jplayer.org/audio/ogg/Miaow-02-Hidden.ogg" }, { title:"<img src='images/temp/music-player3.png' /><span><strong>Rihanna -</strong> Girl</span>", mp3:"http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3", oga:"http://www.jplayer.org/audio/ogg/TSP-01-Cro_magnon_man.ogg" } ], { swfPath: "js", supplied: "oga, mp3", wmode: "window", smoothPlayBar: false, keyEnabled: false }); }); //]]> </script>
Small Audio Player
Example
<div class="widget-container widget-audio style2"> <div class="header-top"><span></span></div> <div class="inner"> <div id="jquery_jplayer_2" class="jp-jplayer"></div> <div id="jp_container_2" class="jp-audio"> <div class="jp-type-playlist"> <div class="jp-gui jp-interface"> <div class="divide"></div> <div class="song_title"></div> <ul class="jp-controls"> <li><a href="javascript:;" class="jp-previous disabled" tabindex="1">previous</a></li> <li><a href="javascript:;" class="jp-play" tabindex="1">play</a></li> <li><a href="javascript:;" class="jp-pause" tabindex="1">pause</a></li> <li><a href="javascript:;" class="jp-next" tabindex="1">next</a></li> <li><a href="javascript:;" class="jp-stop" tabindex="1">stop</a></li> <li><a href="javascript:;" class="jp-mute" tabindex="1" title="mute">mute</a></li> <li><a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li> <li><a href="javascript:;" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li> </ul> <div class="jp-progress"> <div class="jp-seek-bar"> <div class="jp-play-bar"></div> </div> </div> <div class="jp-volume-bar"> <div class="jp-volume-bar-value"></div> </div> <div class="jp-current-time"></div> <div class="jp-duration"></div> <ul class="jp-toggles"> <li><a href="javascript:;" class="jp-shuffle" tabindex="1" title="shuffle">shuffle</a></li> <li><a href="javascript:;" class="jp-shuffle-off" tabindex="1" title="shuffle off">shuffle off</a></li> <li><a href="javascript:;" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li> <li><a href="javascript:;" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li> </ul> </div> <div class="jp-playlist"> <ul> <li></li> </ul> </div> <div class="jp-no-solution"> <span>Update Required</span> <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a> </div> </div> </div> </div> </div>
<script type="text/javascript"> //<![CDATA[ $(document).ready(function(){ var $ = jQuery; new jPlayerPlaylist({ jPlayer: "#jquery_jplayer_2", cssSelectorAncestor: "#jp_container_2" }, [ { title:"<img src='images/temp/music-player1.png' /><span><strong>Rihanna -</strong> Only Girl</span>", mp3:"http://www.jplayer.org/audio/mp3/Miaow-03-Lentement.mp3", oga:"http://www.jplayer.org/audio/ogg/Miaow-03-Lentement.ogg" }, { title:"<img src='images/temp/music-player2.png' /><span><strong>Rihanna -</strong> Only</span>", mp3:"http://www.jplayer.org/audio/mp3/Miaow-02-Hidden.mp3", oga:"http://www.jplayer.org/audio/ogg/Miaow-02-Hidden.ogg" }, { title:"<img src='images/temp/music-player3.png' /><span><strong>Rihanna -</strong> Girl</span>", mp3:"http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3", oga:"http://www.jplayer.org/audio/ogg/TSP-01-Cro_magnon_man.ogg" } ], { swfPath: "js", supplied: "oga, mp3", wmode: "window", smoothPlayBar: false, keyEnabled: false }); }); //]]> </script>
Audio Player with Playlist
Example
<div class="widget-container widget-audio style3 omega"> <div class="header-top"><span></span></div> <div class="inner"> <div id="jquery_jplayer_3" class="jp-jplayer"></div> <div id="jp_container_3" class="jp-audio"> <div class="jp-type-playlist"> <div class="jp-gui jp-interface"> <div class="divide"></div> <div class="song_title" title="Toggle Playlist"></div> <ul class="jp-controls"> <li><a href="javascript:;" class="jp-previous disabled" tabindex="1">previous</a></li> <li><a href="javascript:;" class="jp-play" tabindex="1">play</a></li> <li><a href="javascript:;" class="jp-pause" tabindex="1">pause</a></li> <li><a href="javascript:;" class="jp-next" tabindex="1">next</a></li> <li><a href="javascript:;" class="jp-stop" tabindex="1">stop</a></li> <li><a href="javascript:;" class="jp-mute" tabindex="1" title="mute">mute</a></li> <li><a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li> <li><a href="javascript:;" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li> </ul> <div class="jp-progress"> <div class="jp-seek-bar"> <div class="jp-play-bar"></div> </div> </div> <div class="jp-volume-bar"> <div class="jp-volume-bar-value"></div> </div> <div class="jp-current-time"></div> <div class="jp-duration"></div> <ul class="jp-toggles"> <li><a href="javascript:;" class="jp-shuffle" tabindex="1" title="shuffle">shuffle</a></li> <li><a href="javascript:;" class="jp-shuffle-off" tabindex="1" title="shuffle off">shuffle off</a></li> <li><a href="javascript:;" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li> <li><a href="javascript:;" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li> </ul> </div> <div class="jp-playlist"> <ul> <li></li> </ul> </div> <div class="jp-no-solution"> <span>Update Required</span> <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a> </div> </div> </div> </div> </div>
<script type="text/javascript"> //<![CDATA[ $(document).ready(function(){ var $ = jQuery; new jPlayerPlaylist({ jPlayer: "#jquery_jplayer_3", cssSelectorAncestor: "#jp_container_3" }, [ { title:"<img src='images/temp/music-player1.png' /><span><strong>Rihanna -</strong> Only Girl</span>", mp3:"http://www.jplayer.org/audio/mp3/Miaow-03-Lentement.mp3", oga:"http://www.jplayer.org/audio/ogg/Miaow-03-Lentement.ogg" }, { title:"<img src='images/temp/music-player2.png' /><span><strong>Rihanna -</strong> Only</span>", mp3:"http://www.jplayer.org/audio/mp3/Miaow-02-Hidden.mp3", oga:"http://www.jplayer.org/audio/ogg/Miaow-02-Hidden.ogg" }, { title:"<img src='images/temp/music-player3.png' /><span><strong>Rihanna -</strong> Girl</span>", mp3:"http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3", oga:"http://www.jplayer.org/audio/ogg/TSP-01-Cro_magnon_man.ogg" } ], { swfPath: "js", supplied: "oga, mp3", wmode: "window", smoothPlayBar: false, keyEnabled: false }); }); //]]> </script>
Sliders
Image Slider
This slideshow is based on Bootstrap's carousel.js
Example
<div class="widget-container widget_gallery"> <div class="header-top"><span></span></div> <div class="inner"> <div id="myCarousel" class="carousel slide" data-interval="20000"> <!-- Carousel items --> <div class="carousel-inner"> <div class="active item"> <img src="images/temp/post_img18.jpg" alt="" /> <div class="carousel-title"><h6>Brave</h6><p>Change your fate</p></div> </div> <div class="item"> <img src="images/temp/post_img3.jpg" alt="" /> <div class="carousel-title"><h6>Horton</h6><p>Change your fate</p></div> </div> ... ... ... </div> <!-- Carousel indicators --> <ol class="carousel-indicators"> <li data-target="#myCarousel" data-slide-to="0" class="active"></li> <li data-target="#myCarousel" data-slide-to="1"></li> ... ... ... </ol> <!-- Carousel nav --> <a class="carousel-control left" href="#myCarousel" data-slide="prev"></a> <a class="carousel-control right" href="#myCarousel" data-slide="next"></a> </div> </div> </div>
Calendar
Calendar allow users to select multiple dates.
Element specific usage
Calendar require next files to be included into <head>
section of the page:
<script src="js/libs/jquery-ui.min.js"></script> <script src="js/jquery-ui.multidatespicker.js"></script> <link href="css/jquery-ui-1.8.20.custom.css" rel="stylesheet">
Example
<div class="widget-container widget_calendar"> <div class="inner"> <input type="text" name="date_departure" class="inputField" id="date_departure"> </div> </div>
<script> // <![CDATA[ jQuery(document).ready(function($) { var daysRange = 5; function assignCalendar(id){ $('<div class="calendar" />') .insertAfter( $(id) ) .multiDatesPicker({ dateFormat: 'yy-mm-dd', minDate: new Date(), maxDate: '+1y', altField: id, firstDay: 1, showOtherMonths: true }).prev().hide(); } assignCalendar('#date_departure'); }); // ]]> </script>
User Profile
Display information about user in a styled box.
Example
<div class="widget-container widget_avatar"> <div class="header-top"><span></span></div> <div class="inner"> <div class="avatar"><img src="images/temp/avatar.png" alt="" /></div> <h5>Jim Carrey</h5> <span class="subtitle">Comedian actor</span> <div class="followers"> <div class="counter">895</div> <span>Followers</span> </div> <div class="follow"> <div class="plus"></div> <a href="#" class="btn btn-blue btn-right"><span>Follow</span></a> </div> <div class="clear"></div> <div class="bottom"></div> </div> </div>
Simple Graph
Build graphs with Flot - attractive JavaScript plotting for jQuery.
Element specific usage
Flot require next files to be included into <head>
section of the page:
<!--[if lte IE 8]> <script type="text/javascript" src="js/excanvas.min.js"></script> <![endif]--> <script type="text/javascript" src="js/jquery.flot.js"></script> <script type="text/javascript" src="js/jquery.flot.resize.js"></script>
Example
<!-- Simple Graph Boxed --> <div class="widget-container widget_graph"> <div class="header-top"><span></span></div> <div class="inner"> <div id="graph" class="graph"></div> <div class="bottom"></div> </div> </div> <!-- Simple Graph --> <div class="widget-container widget_graph no-bg"> <div class="header-top"><span></span></div> <div class="inner"> <div id="graph2" class="graph"></div> <div class="bottom"></div> </div> </div>
<!-- Simple Graph Boxed --> <script type="text/javascript"> $(function() { var d1 = [[0, 9], [1, 23], [1.8, 7], [2.2, 24], [2.8, 18], [4, 36]]; var graphholder = $("#graph"); var plot = $.plot(graphholder, [d1], { colors: ["#68aec2", "#afd8f8", "#cb4b4b", "#4da74d", "#9440ed"], series: { lines: { show: true, lineWidth: 2, fill: true, fillColor: "rgba(50,196,245,0.2)" }, points: { show: true, radius: 5, lineWidth: 1, } }, grid: { hoverable: true, clickable: true, margin: 12, backgroundColor: null, color: "#BBB", borderColor: "#d3d3d3" }, shadowSize: 0 }); function showTooltip(x, y, contents) { $("<div id='graph-tooltip' class='graph-tooltip'>" + contents + "</div>").css({top: y - 42, left: x - 20}).appendTo("body").fadeIn(200); }; var previousPoint = null; $("#graph").bind("plothover", function (event, pos, item) { if (item) { if (previousPoint != item.dataIndex) { previousPoint = item.dataIndex; $("#graph-tooltip").remove(); var x = item.datapoint[0].toFixed(2), y = item.datapoint[1].toFixed(2); showTooltip(item.pageX, item.pageY, '$ ' + y*100); } } else { $("#graph-tooltip").remove(); previousPoint = null; } }); }); </script> <!-- Simple Graph --> <script type="text/javascript"> $(function() { var d1 = [[0, 9], [1, 18], [1.8, 7], [2.2, 24], [2.8, 17], [4, 36]]; var graphholder = $("#graph2"); var plot = $.plot(graphholder, [d1], { colors: ["#ffc70a", "#afd8f8", "#cb4b4b", "#4da74d", "#9440ed"], series: { lines: { show: true, lineWidth: 2, fill: true, fillColor: "rgba(247,176,10,0.2)" }, points: { show: true, radius: 5, lineWidth: 1, } }, grid: { hoverable: true, clickable: true, margin: 12, backgroundColor: "#fbfbfb", color: "#d3ccbd", borderColor: "#d3d3d3" }, shadowSize: 0 }); function showTooltip(x, y, contents) { $("<div id='graph-tooltip2' class='graph-tooltip'>" + contents + "</div>").css({top: y - 45, left: x - 20}).appendTo("body").fadeIn(200); }; var previousPoint = null; $("#graph2").bind("plothover", function (event, pos, item) { if (item) { if (previousPoint != item.dataIndex) { previousPoint = item.dataIndex; $("#graph-tooltip2").remove(); var x = item.datapoint[0].toFixed(2), y = item.datapoint[1].toFixed(2); showTooltip(item.pageX, item.pageY, '$ ' + y*100); } } else { $("#graph-tooltip2").remove(); previousPoint = null; } }); }); </script>