diff --git a/demo/main.css b/demo/main.css index 5161f63..f150f2c 100644 --- a/demo/main.css +++ b/demo/main.css @@ -1,3 +1,10 @@ +body { + color: #626262; + font-family: "Segoe UI",Arial,sans-serif; + font-size: 14px; + font-weight: normal; + letter-spacing: 0.01em; +} .validation-valid { color: #0074D9; } @@ -23,6 +30,10 @@ opacity: 1; } +.m-l-10 { + margin-left: 10px; +} + pre, pre code { font-size: 13px; } @@ -53,6 +64,10 @@ pre { background: none; } +.container > nav { + margin: 0px 40px; +} + .navbar-default .navbar-brand { color: #0A7C71; } @@ -83,14 +98,7 @@ pre { color: #fff; text-align: center; background-color: #0A7C71; - background-image: -webkit-gradient(linear,left top,left bottom,from(#0A7C71),to(#10CFBD)); - background-image: -webkit-linear-gradient(top,#0A7C71 - 0,#10CFBD 100%); - background-image: -o-linear-gradient(top,#0A7C71 - 0,#10CFBD 100%); - background-image: linear-gradient(to bottom,#0A7C71 - 0,#10CFBD 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0A7C71', endColorstr='#10CFBD', GradientType=0); + background-image: linear-gradient(to bottom,#0A7C78 0,#0A7C75 100%); background-repeat: repeat-x; } @@ -98,6 +106,10 @@ pre { text-align: left; } +.bs-docs-header .container > p { + color: #ccc; +} + .bs-docs-decs { font-size: 16px; padding: 10px; diff --git a/dist/bundle.js b/dist/bundle.js new file mode 100644 index 0000000..5ea9060 --- /dev/null +++ b/dist/bundle.js @@ -0,0 +1,61 @@ +/******/ (function(modules) { // webpackBootstrap +/******/ // The module cache +/******/ var installedModules = {}; + +/******/ // The require function +/******/ function __webpack_require__(moduleId) { + +/******/ // Check if module is in cache +/******/ if(installedModules[moduleId]) +/******/ return installedModules[moduleId].exports; + +/******/ // Create a new module (and put it into the cache) +/******/ var module = installedModules[moduleId] = { +/******/ exports: {}, +/******/ id: moduleId, +/******/ loaded: false +/******/ }; + +/******/ // Execute the module function +/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); + +/******/ // Flag the module as loaded +/******/ module.loaded = true; + +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } + + +/******/ // expose the modules object (__webpack_modules__) +/******/ __webpack_require__.m = modules; + +/******/ // expose the module cache +/******/ __webpack_require__.c = installedModules; + +/******/ // __webpack_public_path__ +/******/ __webpack_require__.p = ""; + +/******/ // Load entry module and return exports +/******/ return __webpack_require__(0); +/******/ }) +/************************************************************************/ +/******/ ([ +/* 0 */ +/***/ function(module, exports, __webpack_require__) { + + module.exports = __webpack_require__(1); + + +/***/ }, +/* 1 */ +/***/ function(module, exports) { + + 'use strict'; + + angular.module('validation', ['validation.provider', 'validation.directive']); + angular.module('validation.provider', []); + angular.module('validation.directive', ['validation.provider']); + +/***/ } +/******/ ]); \ No newline at end of file diff --git a/index.html b/index.html index be1a401..8581fcd 100644 --- a/index.html +++ b/index.html @@ -30,21 +30,21 @@