run: node start
The commandline will show you that the server is running!
Visit http://127.0.0.1:1337/ in your browser.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input[type=number]::-webkit-inner-spin-button, | |
| input[type=number]::-webkit-outer-spin-button { | |
| -webkit-appearance: none; | |
| margin: 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html class="no-js"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Testing mobile keyboards with numbers</title> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width,initial-scale=1"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1>Testing display of HTML elements</h1> | |
| <h2>This is 2nd level heading</h2> | |
| <p>This is a test paragraph.</p> | |
| <h3>This is 3rd level heading</h3> | |
| <p>This is a test paragraph.</p> | |
| <h4>This is 4th level heading</h4> | |
| <p>This is a test paragraph.</p> | |
| <h5>This is 5th level heading</h5> | |
| <p>This is a test paragraph.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function($) { | |
| $.fn.inputValidation = function(method) { | |
| var methods = { | |
| init : function(options) { | |
| this.inputValidation.settings = $.extend({}, this.inputValidation.errorMessage, options); | |
| return this.each(function() { | |
| var $element = $(this), // reference to the jQuery version of the current DOM element |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [vc_row row_type="row" use_row_as_full_screen_section="no" type="grid" text_align="center" background_image_as_pattern="without_pattern" background_color="#eeeeee" padding_top="80" padding_bottom="25" transition_delay="10ms" el_class="home_icons_wrapper"] | |
| <a href="#"> | |
| [vc_column width="1/3" css=".vc_custom_1414320534959{background-color: #eeeeee !important;}" el_class="first_column"] | |
| [vc_column_text]Accountants en Administratiekantoren[/vc_column_text | |
| ][vc_empty_space height="32px"] | |
| [icon_text box_type="normal" icon="fa-suitcase" icon_type="circle" icon_position="top" icon_size="fa-5x" use_custom_icon_size="yes" icon_animation="q_icon_animation" icon_animation_delay="2ms" title_tag="h2" icon_color="#ffffff" icon_background_color="#85bd3c" title_color="#85bd3c" text_color="#85bd3c" icon_border_color="#eeeeee" custom_icon_size="100" custom_icon_size_inner="80" text="Optimale bedrijfsprocessen"] | |
| [/vc_column] | |
| </a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git subtree push --prefix dist origin gh-pages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .element { | |
| color: #ffffff; | |
| background-color: #000000; | |
| border: 1px solid grey; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .element { | |
| font-family: Helvetica, Arial; | |
| color: #ffffff; | |
| background-color: #000000; | |
| border: 1px dashed grey; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| nav ul { | |
| margin: 0; | |
| padding: 0; | |
| list-style: none; | |
| } | |
| nav li { | |
| display: inline-block; | |
| } | |
| nav a { | |
| display: block; |
OlderNewer