I TANK 3000 W DOOHAN- H EΠΑΝΑΣΤΑΣΗ ΣΤΑ ΗΛΕΚΤΡΙΚΑ ΔΙΚΥΚΛΑ!!
- Δημιουργήθηκε : Παρασκευή, 22 Μαρτίου 2013 13:47
- Τελευταία ενημέρωση : Κυριακή, 28 Απριλίου 2024 10:43
- Εμφανίσεις: 9458
- Κατηγορία: Site Content
Pricing Tables Designs
- Δημιουργήθηκε : Πέμπτη, 21 Μαρτίου 2013 08:39
- Τελευταία ενημέρωση : Πέμπτη, 21 Μαρτίου 2013 14:34
- Εμφανίσεις: 7457
Welcome to Kallyas Joomla Template, a wonderful and premium product for multipurpose websites
Pricing table - Red Skin
Pricing table - Blue Skin with Rounded corners
Pricing table - Green Skin
Pricing table - Turquoise Skin
Pricing table - Orange Skin
Pricing table - Purple Skin
Pricing table - Yellow Skin
Pricing table - Green Lemon Skin
Pricing table - Dark Skin
Pricing table - Light Skin
- Κατηγορία: Site Content
Button Designs
- Δημιουργήθηκε : Πέμπτη, 21 Μαρτίου 2013 08:39
- Τελευταία ενημέρωση : Πέμπτη, 21 Μαρτίου 2013 11:49
- Εμφανίσεις: 5517
Default buttons
Button styles can be applied to anything with the .btn class applied. However, typically you'll want to apply these to only <a> and <button> elements for the best rendering.
| Button | class="" | Description |
|---|---|---|
btn |
Standard gray button with gradient | |
btn btn-primary |
Provides extra visual weight and identifies the primary action in a set of buttons | |
btn btn-info |
Used as an alternative to the default styles | |
btn btn-success |
Indicates a successful or positive action | |
btn btn-warning |
Indicates caution should be taken with this action | |
btn btn-danger |
Indicates a dangerous or potentially negative action | |
btn btn-inverse |
Alternate dark gray button, not tied to a semantic action or use | |
btn btn-link |
Deemphasize a button by making it look like a link while maintaining button behavior |
Cross browser compatibility
IE9 doesn't crop background gradients on rounded corners, so we remove it. Related, IE9 jankifies disabled button elements, rendering text gray with a nasty text-shadow that we cannot fix.
BUTTONS SHORTCODES
[btn size="" type="" class="" class="" disabled="" link="" target="" icon="" icontheme=""][/btn]
type: primary / info / success / warning / danger / inverse / link / flat
size: primary / large / small / mini
disabled: yes / no
icon: add the icon type without the " icon- "
icontheme: white / black
[btn size="" type="" class="" class="" disabled="" link="" target="" icon="" icontheme=""][/btn]
Button sizes
Fancy larger or smaller buttons? Add .btn-large, .btn-small, or .btn-mini for additional sizes.
<p> <button class="btn btn-large btn-primary" type="button">Large button</button> <button class="btn btn-large" type="button">Large button</button> </p> <p> <button class="btn btn-primary" type="button">Default button</button> <button class="btn" type="button">Default button</button> </p> <p> <button class="btn btn-small btn-primary" type="button">Small button</button> <button class="btn btn-small" type="button">Small button</button> </p> <p> <button class="btn btn-mini btn-primary" type="button">Mini button</button> <button class="btn btn-mini" type="button">Mini button</button> </p>
Create block level buttons—those that span the full width of a parent— by adding .btn-block.
<button class="btn btn-large btn-block btn-primary" type="button">Block level button</button> <button class="btn btn-large btn-block" type="button">Block level button</button>
Disabled state
Make buttons look unclickable by fading them back 50%.
Anchor element
Add the .disabled class to <a> buttons.
<a href="#" class="btn btn-large btn-primary disabled">Primary link</a> <a href="#" class="btn btn-large disabled">Link</a>
Heads up! We use .disabled as a utility class here, similar to the common .active class, so no prefix is required. Also, this class is only for aesthetic; you must use custom JavaScript to disable links here.
Button element
Add the disabled attribute to <button> buttons.
<button type="button" class="btn btn-large btn-primary disabled" disabled="disabled">Primary button</button> <button type="button" class="btn btn-large" disabled>Button</button>
One class, multiple tags
Use the .btn class on an <a>, <button>, or <input> element.
<a class="btn" href="/">Link</a> <button class="btn" type="submit">Button</button> <input class="btn" type="button" value="Input"> <input class="btn" type="submit" value="Submit">
As a best practice, try to match the element for your context to ensure matching cross-browser rendering. If you have an input, use an <input type="submit"> for your button.
SOCIAL ICONS
<ul class="social-icons fixclear"> <li class="social-twitter"><a href="#">Twitter</a></li> <li class="social-dribbble"><a href="#">Dribbble</a></li> <li class="social-facebook"><a href="#">Facebook</a></li> ... </ul>
SOCIAL ICONS - Colored
<ul class="social-icons colored fixclear"> <li class="social-twitter"><a href="#">Twitter</a></li> ... </ul>
SOCIAL ICONS - Colored only on :hover
<ul class="social-icons coloredHov fixclear"> <li class="social-twitter"><a href="#">Twitter</a></li> ... </ul>
or Shortcode:
type: normal / colored
[socialicons class="" type="" style="" ]
[socialicon network="" url="#"]
[/socialicons]
- Κατηγορία: Site Content
Table Designs
- Δημιουργήθηκε : Πέμπτη, 21 Μαρτίου 2013 08:38
- Τελευταία ενημέρωση : Πέμπτη, 21 Μαρτίου 2013 11:40
- Εμφανίσεις: 5254
Default styles
For basic styling—light padding and only horizontal dividers—add the base class .table to any <table>.
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry | the Bird |
<table class="table"> … </table>
Optional classes
Add any of the following classes to the .table base class.
.table-striped
Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE7-IE8).
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry | the Bird |
<table class="table table-striped"> … </table>
.table-bordered
Add borders and rounded corners to the table.
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| Mark | Otto | @TwBootstrap | |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry the Bird | ||
<table class="table table-bordered"> … </table>
.table-hover
Enable a hover state on table rows within a <tbody>.
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry the Bird | ||
<table class="table table-hover"> … </table>
.table-condensed
Makes tables more compact by cutting cell padding in half.
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry the Bird | ||
<table class="table table-condensed"> … </table>
Optional row classes
Use contextual classes to color table rows.
| Class | Description |
|---|---|
.success |
Indicates a successful or positive action. |
.error |
Indicates a dangerous or potentially negative action. |
.warning |
Indicates a warning that might need attention. |
.info |
Used as an alternative to the default styles. |
| # | Product | Payment Taken | Status |
|---|---|---|---|
| 1 | TB - Monthly | 01/04/2012 | Approved |
| 2 | TB - Monthly | 02/04/2012 | Declined |
| 3 | TB - Monthly | 03/04/2012 | Pending |
| 4 | TB - Monthly | 04/04/2012 | Call in to confirm |
...
<tr class="success">
<td>1</td>
<td>TB - Monthly</td>
<td>01/04/2012</td>
<td>Approved</td>
</tr>
...
Supported table markup
List of supported table HTML elements and how they should be used.
| Tag | Description |
|---|---|
<table> |
Wrapping element for displaying data in a tabular format |
<thead> |
Container element for table header rows (<tr>) to label table columns |
<tbody> |
Container element for table rows (<tr>) in the body of the table |
<tr> |
Container element for a set of table cells (<td> or <th>) that appears on a single row |
<td> |
Default table cell |
<th> |
Special table cell for column (or row, depending on scope and placement) labels Must be used within a <thead> |
<caption> |
Description or summary of what the table holds, especially useful for screen readers |
<table>
<caption>...</caption>
<thead>
<tr>
<th>...</th>
<th>...</th>
</tr>
</thead>
<tbody>
<tr>
<td>...</td>
<td>...</td>
</tr>
</tbody>
</table>
- Κατηγορία: Site Content
GET IN TOUCH WITH US
Address: Street Address nr 100, 4536534, Your Town, United States
Phone: (212) 555 55 00 // Email: office@yourwebsite.com // Web: www.yourwebsite.com
Open in Google Maps
Our Team
- Δημιουργήθηκε : Τρίτη, 19 Μαρτίου 2013 11:27
- Τελευταία ενημέρωση : Σάββατο, 28 Νοεμβρίου 2020 21:47
- Εμφανίσεις: 3613
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Nam vitae metus a orci iaculis facilisis. Maecenas dapibus tristique nunc.
- Κατηγορία: Site Content
Our Services
- Δημιουργήθηκε : Τρίτη, 19 Μαρτίου 2013 11:27
- Τελευταία ενημέρωση : Τετάρτη, 20 Μαρτίου 2013 15:35
- Εμφανίσεις: 4135
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Nam vitae metus a orci iaculis facilisis. Maecenas dapibus tristique nunc.
Documentation include with explanations for most of the options. With just a few clicks you can add any color you want. Great custom shortcodes which are ment to ease up your work.
![]()
Εξουσιοδοτημένο service:
![]()
Προσαρμοζόμαστε στις ανάγκες σας !!!
![]()
Διαλέξτε τον τρόπο πληρωμής που σας ταιριάζει και κερδίστε από την νέα μας γνωριμία δώρα όπως:
![]()
Web Design Services
Morbi in ipsum sit amet pede facilisis laoreet. Donec lacus nunc, viverra nec, blandit vel, egestas et, augue.![]()
Graphic Design Services
Morbi in ipsum sit amet pede facilisis laoreet. Donec lacus nunc, viverra nec, blandit vel, egestas et, augue.![]()
Internet Marketing
Morbi in ipsum sit amet pede facilisis laoreet. Donec lacus nunc, viverra nec, blandit vel, egestas et, augue. WHY CHOOSE US
WHY CHOOSE THIS THEME
WELL DOCUMENTED
UNLIMITED COLORS
CUSTOM SHORTCODES
- Κατηγορία: Site Content
Client Testimonials
- Δημιουργήθηκε : Τρίτη, 19 Μαρτίου 2013 11:26
- Τελευταία ενημέρωση : Τετάρτη, 20 Μαρτίου 2013 08:25
- Εμφανίσεις: 3414
There are several testimonials styles:
Style option #1
Style option #2
Style option #3
I'm very happy with your services. I have an excellent website built from scratch and I'm 100% happy.
John Doe - General Manager
Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum. Donec id elit non mi porta gravida at eget metus.
Andrew Smith - Strategic Coordinator
Style option #4
I'm very happy with your services. I have an excellent website built from scratch and I'm 100% happy.
John Doe // General Manager
I'm very happy with your services. I have an excellent website built from scratch and I'm 100% happy.
John Doe // General Manager
I'm very happy with your services. I have an excellent website built from scratch and I'm 100% happy.
John Doe // General Manager
- Κατηγορία: Site Content

0

