Skip to content

Instantly share code, notes, and snippets.

View ristosstudio's full-sized avatar

Christoph Schade ristosstudio

View GitHub Profile
@ristosstudio
ristosstudio / browser-reload-01
Created October 22, 2016 14:28
browser-reload-01
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Browsersync.io Template</title>
</head>
<body>
<h1>Template für Live reload des Browsers mit NodeJS, Gulp und Browsersync.io</h1>
</body>
</html>
@ristosstudio
ristosstudio / html-structure-02
Created August 20, 2016 05:14
basic html structure
<html>
<head>
<title>Hier steht der Titel der Website</title>
</head>
<body>
Hier steht der sichtbare Teil der Website
</body>
</html>
@ristosstudio
ristosstudio / html-structure-01
Created August 20, 2016 04:59
basic html structure
<html>
<body>
Hier steht der sichtbare Teil der Website
</body>
</html>
@ristosstudio
ristosstudio / website-width-flexbox-css-01.css
Last active February 5, 2016 16:42
website-width-flexbox-css-01
/** Grundlegende Regeln zur besseren Anschauung **/
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 36px;
margin: 0 auto;
text-align: center;
width: 800px;
margin-top: 10px;
}
@ristosstudio
ristosstudio / website-layout-without-flexbox-01.html
Last active February 5, 2016 15:31
website-layout-with-flexbox-01
<body>
<div class="flex-container">
<div class="container-01">01-Main Content</div>
<div class="container-02">02-Navigation</div>
<div class="container-03">03-Footer</div>
</div>
</body>
@ristosstudio
ristosstudio / website-layout-without-flexbox.html
Created February 5, 2016 15:18
website-layout-without-flexbox
<body>
<div class="flex-container">
<div class="container-01">Navigation</div>
<div class="container-02">Main-Content</div>
<div class="container-03">Footer</div>
</div>
</body>
@ristosstudio
ristosstudio / clearfix.css
Created January 4, 2016 20:57
clearfi.css
/*=========== SHORT ==============*/
.clearfix:before,
.clearfix:after {
content:"";
display:table;
}
.clearfix:after {
clear:both;
}
.clearfix {