Adam McCoy
  • Overview
  • Sales

Recent Activity

  • New sale ($15)
    Admin Template
    3 min ago
  • You edited the file
    Documentation.doc
    15 min ago
  • Project deleted
    Line Icon Set
    4 hours ago

Online Friends

  • Judy Ford
    Copywriter
  • Jeffrey Shaw
    Web Developer
  • Megan Fuller
    Web Designer
  • Sara Fields
    Photographer
  • Jose Mills
    Graphic Designer

Quick Settings

Online Status


Auto Updates


Application Alerts


API

Sales
22.030
Balance
$4.589,00
Today
$996
  • New sale! + $249
    3 min ago
  • New sale! + $129
    50 min ago
  • New sale! + $119
    2 hours ago
  • New sale! + $499
    3 hours ago
Yesterday
$765
  • New sale! + $249
    26 hours ago
  • Product Purchase - $50
    28 hours ago
  • New sale! + $119
    29 hours ago
  • Paypal Withdrawal - $300
    37 hours ago
  • New sale! + $129
    39 hours ago
  • New sale! + $119
    45 hours ago
  • New sale! + $499
    46 hours ago
Load More..
ne 4.3
Default Amethyst City Flat Modern Smooth
Sidebar Light Sidebar Dark
Header Light Header Dark
  • Dashboard
  • User Interface
  • Blocks
    • Styles
    • Options
    • Forms
    • Themed
    • API
  • Elements
    • Grid
    • Typography
    • Icons
    • Buttons
    • Button Groups
    • Dropdowns
    • Tabs
    • Navigation
    • Horizontal Navigation
    • Progress
    • Alerts
    • Tooltips
    • Popovers
    • Modals
    • Images Overlay
    • Timeline
    • Ribbons
    • Animations
    • Color Themes
  • Tables
    • Styles
    • Responsive
    • Helpers
    • Pricing
    • DataTables
  • Forms
    • Elements
    • Custom Controls
    • Layouts
    • Input Groups
    • Plugins
    • Editors
    • Validation
    • Wizard
  • Develop
  • Components
    • Loaders
    • Image Cropper
    • Appear
    • Charts
    • Calendar
    • Sliders
    • Syntax Highlighting
    • Rating
    • Google Maps
    • Vector Maps
    • Dialogs
    • Notifications
    • Gallery
  • Layout
    • Page
      • Default
      • Flipped
      • Native Scrolling
    • Main Content
      • Full Width
      • Narrow
      • Boxed
    • Header
      • Fixed
      • Light
      • Dark
      • Static
      • Light
      • Dark
    • Sidebar
      • Mini
      • Light
      • Dark
      • Hidden
    • Side Overlay
      • Visible
      • Hover Mode
      • No Page Overlay
    • API
  • Multi Level Menu
    • Link 1-1
    • Link 1-2
    • Sub Level 2
      • Link 2-1
      • Link 2-2
      • Sub Level 3
        • Link 3-1
        • Link 3-2
        • Sub Level 4
          • Link 4-1
          • Link 4-2
          • Sub Level 5
            • Link 5-1
            • Link 5-2
            • Sub Level 6
              • Link 6-1
              • Link 6-2
  • Pages
  • Generic
    • Blank
    • Blank (Block)
    • Search
    • Profile
    • Inbox
    • Invoice
    • FAQ
    • Team
    • Contact
    • Support
    • Upgrade Plan
    • Maintenance
    • Status
    • Coming Soon
  • Page Packs
    • Forum
      • Categories
      • Topics
      • Discussion
    • e-Commerce Store
      • Home
      • Search Results
      • Products List
      • Product Page
      • Checkout
    • Blog
      • Classic
      • List
      • Grid
      • Story
      • Story Cover
    • e-Learning
      • Courses
      • Course
      • Lesson
  • Authentication
    • All
    • Sign In
    • Sign In 2
    • Sign Up
    • Sign Up 2
    • Lock Screen
    • Lock Screen 2
    • Pass Reminder
    • Pass Reminder 2
  • Error Pages
    • All
    • 400
    • 401
    • 403
    • 404
    • 500
    • 503
User Options
Inbox 3 Profile 1 Settings
Actions
Lock Account Log Out
Notifications
  • You have a new follower
    15 min ago
  • 1 new sale, keep it up
    22 min ago
  • Update failed, restart server
    26 min ago
  • 2 new sales, keep it up
    33 min ago
  • You have a new subscriber
    41 min ago
  • You have a new follower
    42 min ago
Load More..

Highlight.js Beautiful syntax highlighting to showcase your code.

  1. Components
  2. Syntax Highlighting

HTML

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">

        <title>Title</title>
    </head>
    <body>
        <!-- Your content -->
    </body>
</html>

CSS

/*
=================================================================
SECTION
=================================================================
*/

/* Sub section 1 */
selector {

}

/* Sub section 2 */
selector {

}

/*
=================================================================
SECTION
=================================================================
*/

/* Sub section 1 */
selector {

}

/* Sub section 2 */
selector {

}

SCSS

$font-stack: Helvetica, sans-serif;
$primary-color: #333;

body {
  font: 100% $font-stack;
  color: $primary-color;
}

Less

@base: #f938ab;

.box-shadow(@style, @c) when (iscolor(@c)) {
    -webkit-box-shadow: @style @c;
    box-shadow:         @style @c;
}

.box-shadow(@style, @alpha: 50%) when (isnumber(@alpha)) {
    .box-shadow(@style, rgba(0, 0, 0, @alpha));
}

.box {
    color: saturate(@base, 5%);
    border-color: lighten(@base, 30%);
    div { .box-shadow(0 0 5px, 30%) }
}

JavaScript

/*
 *  Document   : app.js
 *  Author     : pixelcave
 */

var App = function() {

    // User Interface init
    var uiInit = function() {

    };

    return {
        init: function() {
            uiInit();
        }
    };
}();

// Initialize app when page loads
jQuery(function(){ App.init(); });

PHP

<?php
class App {
    function home()
    {
        // ...
    }

    function profile()
    {
        // ...
    }

    function settings()
    {
        // ...
    }
}

Ruby

# Output "I love Ruby"
say = "I love Ruby"
puts say

# Output "I *LOVE* RUBY"
say['love'] = "*love*"
puts say.upcase

# Output "I *love* Ruby"
# five times
5.times { puts say }

Python

name = raw_input('What is your name?\n')

print 'Hi, %s.' % name

JSON

{
    "menu": {
        "id": "file",
        "value": "File",
        "popup": {
            "menuitem": [
                {"value": "New", "onclick": "CreateNewDoc()"},
                {"value": "Open", "onclick": "OpenDoc()"},
                {"value": "Close", "onclick": "CloseDoc()"}
            ]
        }
    }
}
Crafted with by pixelcave
OneUI 4.3 ©

Apps

CRM

Products

Sales

Payments