Responsive Navigation (CSS only)
A Pen by Raymon Schouwenaar on CodePen.
input[type=number]::-webkit-inner-spin-button, | |
input[type=number]::-webkit-outer-spin-button { | |
-webkit-appearance: none; | |
margin: 0; | |
} |
<!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"> |
<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> |
(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 |
[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> |
git subtree push --prefix dist origin gh-pages |
run: node start
The commandline will show you that the server is running!
Visit http://127.0.0.1:1337/ in your browser.
.element { | |
color: #ffffff; | |
background-color: #000000; | |
border: 1px solid grey; | |
} |
.element { | |
font-family: Helvetica, Arial; | |
color: #ffffff; | |
background-color: #000000; | |
border: 1px dashed grey; | |
} |