-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
223 changed files
with
916 additions
and
33,470 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
## [3.0.0] - 2018-08-15 | ||
### Added | ||
- New Structure | ||
### Removed | ||
- AnimateCSS | ||
- Parsley | ||
- HambuterCSS | ||
- MagnificPopup | ||
- Sweetalert | ||
- FontAwesome | ||
- Google Material Icons | ||
- HoverCSS | ||
- mMenu | ||
- Isotopes | ||
- CookieConsent | ||
- SocialColors | ||
### Changed | ||
- Updated jQuery | ||
- Updated Bootstrap | ||
|
||
## [1.5.0] - 2017-11-03 | ||
### Added | ||
- Isotope | ||
- CookieConsent | ||
|
||
## [1.4.0] - 2017-10-31 | ||
### Added | ||
- mmenu | ||
- clipboardjs | ||
- slickSlider | ||
|
||
## [1.3.0] - 2017-10-28 | ||
### Added | ||
- socialColors | ||
|
||
## [1.2.0] - 2017-10-25 | ||
### Added | ||
- hoverCSS | ||
|
||
## [1.1.1] - 2017-10-07 | ||
### Fixed | ||
- Fontawesome bug | ||
|
||
## [1.1.0] - 2017-10-07 | ||
### Added | ||
- Material Icons | ||
- FontAwesome | ||
- Docs | ||
|
||
### Removed | ||
- FontAwesome CDN | ||
|
||
## [1.0.0] - 2017-10-07 | ||
### Added | ||
- Initial Release |
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="de-AT"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Boilerplate</title> | ||
<link rel="stylesheet" href="less/main.css"> | ||
</head> | ||
<body> | ||
<header class="head"> | ||
|
||
</header> | ||
<main class="content"> | ||
|
||
</main> | ||
<footer class="footer"> | ||
|
||
</footer> | ||
<script src="javascript/_external/jquery/jquery.min.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$(document).ready(function () { | ||
|
||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/* | ||
* Font-Imports | ||
*/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Other Stylings & Helpers | ||
*/ | ||
.display-table { | ||
display: table; | ||
width: 100%; | ||
height: 100%; | ||
.display-table-cell { | ||
display: table-cell; | ||
width: 100%; | ||
height: 100%; | ||
vertical-align: middle; | ||
text-align: center; | ||
&.left { | ||
text-align: left; | ||
} | ||
&.right { | ||
text-align: right; | ||
} | ||
&.top { | ||
vertical-align: top; | ||
} | ||
&.bottom { | ||
vertical-align: bottom; | ||
} | ||
} | ||
} | ||
.image-align-left { | ||
img { | ||
margin: 0 auto 0 0; | ||
display: block; | ||
} | ||
} | ||
.image-align-center { | ||
img { | ||
margin: 0 auto; | ||
display: block; | ||
} | ||
} | ||
.image-align-right { | ||
img { | ||
margin: 0 0 0 auto; | ||
display: block; | ||
} | ||
} | ||
.image-scale-fullwidth { | ||
img { | ||
display: block; | ||
max-width: 100%; | ||
width: 100%; | ||
} | ||
} | ||
.spacer-small { | ||
display: block; | ||
width: 100%; | ||
margin-top: @spacingSmall; | ||
} | ||
.spacer-normal { | ||
display: block; | ||
width: 100%; | ||
margin-top: @spacingNormal; | ||
} | ||
.spacer-large { | ||
display: block; | ||
width: 100%; | ||
margin-top: @spacingLarge; | ||
} |
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Less Variables | ||
* | ||
* @colorCOLORNAME -> Colors | ||
* @fontFONTNAME -> Fonts | ||
* @spacingSPACINGNAME -> Spacings | ||
* @transitionTRANSITIONNAME -> Transitions | ||
*/ | ||
|
||
@colorBlack: #000000; | ||
@colorWhite: #ffffff; | ||
|
||
@spacingLarge: 100px; | ||
@spacingNormal: 50px; | ||
@spacingSmall: 25px; | ||
|
||
@transitionNormal: 0.2s linear; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/* | ||
* Stlings for content elements | ||
*/ |
8 changes: 8 additions & 0 deletions
8
boilerplate/less/_external/_bootstrap/bootstrap-reboot.min.css.less
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/*! | ||
* Bootstrap Reboot v4.1.0 (https://getbootstrap.com/) | ||
* Copyright 2011-2018 The Bootstrap Authors | ||
* Copyright 2011-2018 Twitter, Inc. | ||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | ||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) | ||
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important} | ||
/*# sourceMappingURL=bootstrap-reboot.min.css.map */ |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* | ||
* Footer stylings | ||
*/ | ||
.footer{ | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* | ||
* Header stylings | ||
*/ | ||
.head{ | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* | ||
* Standard stylings for the content | ||
*/ | ||
.content{ | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* | ||
* boilerplate | ||
* Copyright 2018 - Julian Seidl | ||
* Developer DEVELOPERNAME | ||
* | ||
*/ | ||
|
||
// Configuration | ||
@import "_config/fonts.less"; | ||
@import "_config/variables.less"; | ||
@import "_config/typography.less"; | ||
@import "_config/other.less"; | ||
|
||
// Structure | ||
@import "_structure/header.less"; | ||
@import "_structure/structure.less"; | ||
@import "_structure/footer.less"; | ||
|
||
// ContentElements | ||
@import "_content_elements/demo.less"; | ||
|
||
// External | ||
@import "_external/_bootstrap/bootstrap-reboot.min.css.less"; | ||
@import "_external/_bootstrap/bootstrap.min.css.less"; |
Oops, something went wrong.