Browse Source

Загрузить файлы 'assets/sass'

lansmaster 1 year ago
parent
commit
98ef1f942e
3 changed files with 226 additions and 0 deletions
  1. 59 0
      assets/sass/ie8.scss
  2. 113 0
      assets/sass/ie9.scss
  3. 54 0
      assets/sass/main.scss

+ 59 - 0
assets/sass/ie8.scss

@@ -0,0 +1,59 @@
+@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+@import 'libs/skel';
+
+/*
+	Hyperspace by HTML5 UP
+	html5up.net | @ajlkn
+	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+*/
+
+/* Type */
+
+	body, input, select, textarea {
+		color: _palette(fg-bold);
+	}
+
+/* Button */
+
+	input[type="submit"],
+	input[type="reset"],
+	input[type="button"],
+	button,
+	.button {
+		position: relative;
+
+		&:after {
+			display: none;
+		}
+	}
+
+/* Features */
+
+	.features {
+		border: solid 1px;
+	}
+
+/* Form */
+
+	input[type="text"],
+	input[type="password"],
+	input[type="email"],
+	input[type="tel"],
+	select,
+	textarea {
+		background: transparent;
+		border: solid 1px;
+	}
+
+/* Split */
+
+	.split {
+		&.style1 {
+			> :first-child {
+				padding-right: 2em;
+				width: 70%;
+			}
+		}
+	}

+ 113 - 0
assets/sass/ie9.scss

@@ -0,0 +1,113 @@
+@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+@import 'libs/skel';
+
+/*
+	Hyperspace by HTML5 UP
+	html5up.net | @ajlkn
+	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+*/
+
+/* Type */
+
+	h1 {
+		&.major {
+			&:after {
+				background: _palette(accent3);
+			}
+		}
+	}
+
+/* Wrapper */
+
+	.wrapper {
+		&.fullscreen {
+			min-height: 0;
+			padding-bottom: 6em;
+			padding-top: 6em;
+
+			body.is-ie & {
+				height: auto;
+			}
+		}
+	}
+
+/* Spotlights */
+
+	.spotlights {
+		> section {
+			padding-left: 20em;
+			position: relative;
+
+			> .image {
+				height: 100%;
+				left: 0;
+				position: absolute;
+				top: 0;
+				width: 20em;
+			}
+
+			> .content {
+				width: 100%;
+			}
+		}
+	}
+
+/* Features */
+
+	.features {
+		&:after {
+			clear: both;
+			content: '';
+			display: block;
+		}
+
+		section {
+			float: left;
+		}
+	}
+
+/* Split */
+
+	.split {
+		&:after {
+			clear: both;
+			content: '';
+			display: block;
+		}
+
+		> * {
+			float: left;
+		}
+	}
+
+/* Sidebar */
+
+	#sidebar {
+		nav {
+			a {
+				&:after {
+					background-color: _palette(accent3);
+				}
+			}
+		}
+	}
+
+/* Header */
+
+	#header {
+		&:after {
+			clear: both;
+			content: '';
+			display: block;
+		}
+
+		> .title {
+			float: left;
+		}
+
+		> nav {
+			float: right;
+		}
+	}

+ 54 - 0
assets/sass/main.scss

@@ -0,0 +1,54 @@
+@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+@import 'libs/skel';
+@import 'font-awesome.min.css';
+
+/*
+	Hyperspace 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: 1.5em )
+	));
+
+// Base.
+
+	@import 'base/page';
+	@import 'base/typography';
+
+// Component.
+
+	@import 'components/box';
+	@import 'components/button';
+	@import 'components/features';
+	@import 'components/form';
+	@import 'components/icon';
+	@import 'components/image';
+	@import 'components/list';
+	@import 'components/section';
+	@import 'components/split';
+	@import 'components/spotlights';
+	@import 'components/table';
+	@import 'components/wrapper';
+
+// Layout.
+
+	@import 'layout/header';
+	@import 'layout/wrapper';
+	@import 'layout/footer';
+	@import 'layout/sidebar';
+	@import 'layout/intro';