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
@echo off | |
set sourceMapping=X: | |
set sourceUNC=\\Server\folder | |
set sourceUser=user | |
set destination=C:\folder | |
set folderBackup=Backup | |
set folderError=Error | |
set folder=Folder | |
set filemask=*.* |
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
@echo off | |
set folder=X:\ | |
set filemask=*.log | |
set daysToKeep=20 | |
set command="del" | |
set runOnDays=WED,SUN | |
set runOnTime=23:00:00 | |
set taskname=deleteLogs |
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
/** | |
* List of horizontal scrollers | |
*/ | |
* { box-sizing: border-box; } | |
#artikelliste { | |
width: 825px; /*6 Items * 100 px + 200px title + 25px scroll button (the other one is outside)*/ | |
margin-left: auto; |
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(){ | |
"use strict"; | |
var originalHeader = document.getElementById('header-to-replace'); | |
var originalContent = originalHeader.innerHTML; | |
var newHeader= document.createElement('header'); | |
newHeader.id = 'replaced-header' | |
originalContent = originalContent.replace('{Test}','Lorem Ipsum'); | |
originalContent = originalContent.replace('{UserButtons}', '<button>Other Stuff</button><button>my Account</button><button>Shop</button>'); | |
originalContent = originalContent.replace('{nav}','<ul><li><a href="#">Link 1</a></li><li><a href="#">Link 2</a></li></ul>'); | |
originalContent = originalContent.replace('{searchBox}','searchInput'); |
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
/** | |
* PowerConsoleLayoutRewrite | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
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
/* | |
Two columns | |
*/ | |
html, body, .wrapper { | |
margin:0; | |
border:0; | |
outline: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
/** | |
* Absolute positioning | |
*/ | |
div { | |
margin:0; | |
padding:0; | |
border:0; | |
position: relative; | |
background-color: red; | |
min-width: 1px; |
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
/** | |
* Absolute positioned stretching div | |
*/ | |
.parent{ | |
margin:0; | |
padding:0; | |
position: relative; | |
background-color: red; | |
min-width: 1px; | |
min-height:1px; |
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
/** | |
* Marquee | |
*/ | |
/* @group Marquee */ | |
body,html, p { | |
margin: 0; | |
padding: 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
/** | |
* Image centering layout | |
*/ | |
html, body { | |
margin: 10px; | |
padding:0; | |
} |