mirror of
https://gitlab.com/greenleebt/business-website.git
synced 2026-08-17 16:26:16 +00:00
init
This commit is contained in:
commit
59d5238af5
89 changed files with 6040 additions and 0 deletions
80
assets/css/main.scss
Normal file
80
assets/css/main.scss
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
---
|
||||
@import 'libs/vars';
|
||||
@import 'libs/functions';
|
||||
@import 'libs/mixins';
|
||||
@import 'libs/skel';
|
||||
@import 'font-awesome.min.css';
|
||||
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,600,600italic');
|
||||
|
||||
/*
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
*/
|
||||
|
||||
@include skel-breakpoints((
|
||||
xlarge: '(max-width: 1680px)',
|
||||
large: '(max-width: 1280px)',
|
||||
medium: '(max-width: 980px)',
|
||||
small: '(max-width: 736px)',
|
||||
xsmall: '(max-width: 480px)',
|
||||
xxsmall: '(max-width: 360px)'
|
||||
));
|
||||
|
||||
@include skel-layout((
|
||||
reset: 'full',
|
||||
boxModel: 'border',
|
||||
grid: ( gutters: 2em ),
|
||||
breakpoints: (
|
||||
large: (
|
||||
grid: ( gutters: 1.5em )
|
||||
),
|
||||
small: (
|
||||
grid: ( gutters: 1.25em )
|
||||
)
|
||||
)
|
||||
));
|
||||
|
||||
@mixin inner {
|
||||
> .inner {
|
||||
@include padding(4em, 0);
|
||||
margin: 0 auto;
|
||||
max-width: _size(inner);
|
||||
width: calc(100% - 6em);
|
||||
|
||||
@include breakpoint(small) {
|
||||
@include padding(3em, 0);
|
||||
width: calc(100% - 3em);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Base.
|
||||
|
||||
@import 'base/page';
|
||||
@import 'base/typography';
|
||||
|
||||
// Component.
|
||||
|
||||
@import 'components/section';
|
||||
@import 'components/form';
|
||||
@import 'components/box';
|
||||
@import 'components/icon';
|
||||
@import 'components/image';
|
||||
@import 'components/list';
|
||||
@import 'components/table';
|
||||
@import 'components/button';
|
||||
@import 'components/tiles';
|
||||
@import 'components/contact-method';
|
||||
@import 'components/spotlights';
|
||||
|
||||
// Layout.
|
||||
|
||||
@import 'layout/header';
|
||||
@import 'layout/banner';
|
||||
@import 'layout/main';
|
||||
@import 'layout/contact';
|
||||
@import 'layout/footer';
|
||||
@import 'layout/wrapper';
|
||||
@import 'layout/menu';
|
||||
Loading…
Add table
Add a link
Reference in a new issue