Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
denniserdmann committed Aug 1, 2016
0 parents commit be4bb0a
Show file tree
Hide file tree
Showing 32 changed files with 3,213 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# OS
.DS_Store
Thumbs.db

# IDEs
.buildpath
.project
.settings/
.build/
.idea/
nbproject/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Basis Contao Framework
35 changes: 35 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "erdmannfreunde/euf_nutshell",
"description": "Contao Extension to create grid-layouts",
"keywords": ["contao", "nutshell", "euf nutshell", "base framework"],
"type": "contao-module",
"homepage": "https://github.com/ErdmannFreunde/euf_nutshell",
"license": "GPL-3.0+",
"authors":[
{
"name":"Erdmann & Freunde",
"homepage":"http://erdmann-freunde.de",
"role":"Developer"
}
],
"support":{
"email": "moin@erdmann-freunde.de",
"issues":"https://github.com/ErdmannFreunde/euf_nutshell/issues",
"source":"https://github.com/ErdmannFreunde/euf_nutshell"
},
"require": {
"php": ">=5.3",
"contao/core-bundle": ">=3.5,<=3.5.9999",
"contao-community-alliance/composer-plugin":"^2.3.0 || 3.*"
},
"replace": {
"contao-legacy/euf_grid": "self.version"
},
"extra": {
"contao": {
"sources": {
"": "files/nutshell"
}
}
}
}
9 changes: 9 additions & 0 deletions files/nutshell/fonts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Blank page</title>
</head>
<body>
</body>
</html>
9 changes: 9 additions & 0 deletions files/nutshell/img/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Blank page</title>
</head>
<body>
</body>
</html>
9 changes: 9 additions & 0 deletions files/nutshell/js/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Blank page</title>
</head>
<body>
</body>
</html>
63 changes: 63 additions & 0 deletions files/nutshell/scss/_variables.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// *
// * Erdmann & Freunde - Nutshell
// * BASE Contao Framework
// * erdmann-freunde.de/nutshell/
// *
// * Lizenziert unter MIT OPEN SOURCE
// *

//
// VARIABLES
// --------------------------------------------------
$ce_prefix: "ce_" !default;
$mod_prefix: "mod_" !default;

// General Colors
$color-default: #ff5636 !default;
$color-gray-dark: #222 !default;
$color-gray: #555 !default;
$color-gray-light: #ccc !default;

$color-brand: $color-default !default;
$color-highlight: $color-brand;

// Page
$color-page-background: #fff !default;
$color-text: $color-gray-dark !default;
$color-text--inverted: $color-page-background !default;

// Links
$color-links: $color-highlight !default;

// Buttons
$color-btn: $color-links;
$color-btn-text: #fff !default;

// Base Font Settings
$base-font-size--xs: 0.875rem !default;
$base-font-size: 1rem !default;
$base-font-size--xl: 1.125rem !default;

$base-line-height: 1.625 !default;

$base-font-family: "Helvetica", "Helvetica Neue" !default;

// Base Spacing Units
$base-spacing-unit: 1rem !default;

$base-spacing-unit--xs: $base-spacing-unit / 4 !default;
$base-spacing-unit--sm: $base-spacing-unit / 2 !default;

$base-spacing-unit--lg: $base-spacing-unit * 2 !default;
$base-spacing-unit--xl: $base-spacing-unit * 4 !default;

// deprecated
$base-spacing-unit--small: $base-spacing-unit--sm !default;
$base-spacing-unit--large: $base-spacing-unit--lg !default;

// Base Border Settings
$base-border-radius: 4px !default !default;
$base-border-width: 1px !default !default;
$base-border-color: $color-gray-light !default;

$base-border: $base-border-width solid $base-border-color !default;
Loading

0 comments on commit be4bb0a

Please sign in to comment.