This file contains 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
* { | |
/* should only be used on mobile webkit browser cause it disables zoom on webkit desktop browsers */ | |
-webkit-text-size-adjust: none; | |
-webkit-text-stroke: 0; | |
/* works with safari5+ and iOS4+ */ | |
-webkit-font-smoothing: antialiased; | |
/* http://css-infos.net/property/-webkit-touch-callout */ |
This file contains 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
<div class="box">Setting the "spread" value in box-shadow disables the rendering of box-shadow on iphone 6 plus</div> | |
<div class="box1">Setting a background-color with rgba and an alpha value other than 1 disables the rendering of box-shadow on iphone 6 plus</div> | |
<div class="box2">Box-shadow should be displayed as it should</div> | |
<p>If you need both values and still want to have a box-shadow, setting border-radius: .1px; is the workaround you will need.</p> | |
<p>Tested on iphone 6 plus and iOS 8.3 and 8.4 beta</p> |
This file contains 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
<div class="row row--alt survey_chbx"> | |
<input id="policy" type="checkbox" name="policy" class="checkbox" required> | |
<label for="policy"><em title="Pflichtfeld">*</em> Ich bin mit den <a href="#">Nutzungsbedingungen</a> sowie mit der | |
<a href="#">Erhebung meiner Daten</a> einverstanden. | |
</label> | |
</div> | |
<br><br><br> |
This file contains 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
var path = require('path'); | |
var fs = require('fs'); | |
module.exports = function (grunt) { | |
'use strict'; | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), |
This file contains 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
{ | |
"workbench.colorTheme": "Cobalt2", | |
"typescript.check.npmIsInstalled": false, | |
"editor.fontSize": 13, | |
"editor.fontFamily": "Fira Mono", | |
"editor.tabSize": 2, | |
"editor.detectIndentation": true, | |
"editor.fontLigatures": true, | |
"files.insertFinalNewline": false, | |
"files.trimTrailingWhitespace": true, |