Преглед на файлове

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

lansmaster преди 1 година
родител
ревизия
d91d8c689e
променени са 4 файла, в които са добавени 394 реда и са изтрити 0 реда
  1. 57 0
      assets/sass/components/_icon.scss
  2. 60 0
      assets/sass/components/_image.scss
  3. 236 0
      assets/sass/components/_list.scss
  4. 41 0
      assets/sass/components/_section.scss

+ 57 - 0
assets/sass/components/_icon.scss

@@ -0,0 +1,57 @@
+///
+/// Hyperspace by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Icon */
+
+	.icon {
+		@include icon;
+		border-bottom: none;
+		position: relative;
+
+		> .label {
+			display: none;
+		}
+
+		&.major {
+			width: 2.5em;
+			height: 2.5em;
+			display: block;
+			background: _palette(fg-bold);
+			border-radius: 100%;
+			color: _palette(bg);
+			text-align: center;
+			line-height: 2.5em;
+			margin: 0 0 (_size(element-margin) * 0.65) 0;
+
+			&:before {
+				font-size: 1.25em;
+
+				.wrapper.style1 & {
+					color: _palette(accent1);
+				}
+
+				.wrapper.style1-alt & {
+					color: _palette(accent1-alt);
+				}
+
+				.wrapper.style2 & {
+					color: _palette(accent2);
+				}
+
+				.wrapper.style2-alt & {
+					color: _palette(accent2-alt);
+				}
+
+				.wrapper.style3 & {
+					color: _palette(accent3);
+				}
+
+				.wrapper.style3-alt & {
+					color: _palette(accent3-alt);
+				}
+			}
+		}
+	}

+ 60 - 0
assets/sass/components/_image.scss

@@ -0,0 +1,60 @@
+///
+/// Hyperspace by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Image */
+
+	.image {
+		border-radius: _size(border-radius);
+		border: 0;
+		display: inline-block;
+		position: relative;
+
+		img {
+			border-radius: _size(border-radius);
+			display: block;
+		}
+
+		&.left,
+		&.right {
+			max-width: 40%;
+
+			img {
+				width: 100%;
+			}
+		}
+
+		&.left {
+			float: left;
+			margin: 0 1.5em 1em 0;
+			top: 0.25em;
+		}
+
+		&.right {
+			float: right;
+			margin: 0 0 1em 1.5em;
+			top: 0.25em;
+		}
+
+		&.fit {
+			display: block;
+			margin: 0 0 _size(element-margin) 0;
+			width: 100%;
+
+			img {
+				width: 100%;
+			}
+		}
+
+		&.main {
+			display: block;
+			margin: 0 0 (_size(element-margin) * 1.5) 0;
+			width: 100%;
+
+			img {
+				width: 100%;
+			}
+		}
+	}

+ 236 - 0
assets/sass/components/_list.scss

@@ -0,0 +1,236 @@
+///
+/// Hyperspace by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* List */
+
+	ol {
+		list-style: decimal;
+		margin: 0 0 _size(element-margin) 0;
+		padding-left: 1.25em;
+
+		li {
+			padding-left: 0.25em;
+		}
+	}
+
+	ul {
+		list-style: disc;
+		margin: 0 0 _size(element-margin) 0;
+		padding-left: 1em;
+
+		li {
+			padding-left: 0.5em;
+		}
+
+		&.alt {
+			list-style: none;
+			padding-left: 0;
+
+			li {
+				border-top: solid _size(border-width) _palette(border);
+				padding: 0.5em 0;
+
+				&:first-child {
+					border-top: 0;
+					padding-top: 0;
+				}
+			}
+		}
+
+		&.icons {
+			cursor: default;
+			list-style: none;
+			padding-left: 0;
+
+			li {
+				display: inline-block;
+				padding: 0 0.75em 0 0;
+
+				&:last-child {
+					padding-right: 0;
+				}
+
+				> a, > span {
+					border: 0;
+					@include icon;
+
+					.label {
+						display: none;
+					}
+				}
+			}
+		}
+
+		&.actions {
+			cursor: default;
+			list-style: none;
+			padding-left: 0;
+
+			li {
+				display: inline-block;
+				padding: 0 (_size(element-margin) * 0.5) 0 0;
+				vertical-align: middle;
+
+				&:last-child {
+					padding-right: 0;
+				}
+			}
+
+			&.small {
+				li {
+					padding: 0 (_size(element-margin) * 0.25) 0 0;
+				}
+			}
+
+			&.vertical {
+				li {
+					display: block;
+					padding: (_size(element-margin) * 0.5) 0 0 0;
+
+					&:first-child {
+						padding-top: 0;
+					}
+
+					> * {
+						margin-bottom: 0;
+					}
+				}
+
+				&.small {
+					li {
+						padding: (_size(element-margin) * 0.25) 0 0 0;
+
+						&:first-child {
+							padding-top: 0;
+						}
+					}
+				}
+			}
+
+			&.fit {
+				display: table;
+				margin-left: (_size(element-margin) * -0.5);
+				padding: 0;
+				table-layout: fixed;
+				width: calc(100% + #{(_size(element-margin) * 0.5)});
+
+				li {
+					display: table-cell;
+					padding: 0 0 0 (_size(element-margin) * 0.5);
+
+					> * {
+						margin-bottom: 0;
+					}
+				}
+
+				&.small {
+					margin-left: (_size(element-margin) * -0.25);
+					width: calc(100% + #{(_size(element-margin) * 0.25)});
+
+					li {
+						padding: 0 0 0 (_size(element-margin) * 0.25);
+					}
+				}
+			}
+
+			@include breakpoint(xsmall) {
+				margin: 0 0 _size(element-margin) 0;
+
+				li {
+					padding: (_size(element-margin) * 0.5) 0 0 0;
+					display: block;
+					text-align: center;
+					width: 100%;
+
+					> * {
+						width: 100%;
+						margin: 0 !important;
+
+						&.icon {
+							&:before {
+								margin-left: -2em;
+							}
+						}
+					}
+
+					.button {
+						padding: 0;
+					}
+
+					&:first-child {
+						padding-top: 0;
+					}
+				}
+
+				&.small {
+					li {
+						padding: (_size(element-margin) * 0.25) 0 0 0;
+
+						&:first-child {
+							padding-top: 0;
+						}
+					}
+				}
+			}
+		}
+
+		&.contact {
+			list-style: none;
+			padding: 0;
+
+			> li {
+				padding: 0;
+				margin: 1.5em 0 0 0;
+
+				&:first-child {
+					margin-top: 0;
+				}
+			}
+		}
+
+		&.menu {
+			list-style: none;
+			padding: 0;
+
+			> li {
+				border-left: solid 1px _palette(border);
+				display: inline-block;
+				line-height: 1;
+				margin-left: 1.5em;
+				padding: 0 0 0 1.5em;
+
+				&:first-child {
+					border-left: 0;
+					margin: 0;
+					padding-left: 0;
+				}
+			}
+
+			@include breakpoint(xsmall) {
+				> li {
+					border-left: 0;
+					display: block;
+					line-height: inherit;
+					margin: 0.5em 0 0 0;
+					padding-left: 0;
+				}
+			}
+		}
+	}
+
+	dl {
+		margin: 0 0 _size(element-margin) 0;
+
+		dt {
+			display: block;
+			font-weight: _font(weight-bold);
+			margin: 0 0 (_size(element-margin) * 0.5) 0;
+		}
+
+		dd {
+			margin-left: _size(element-margin);
+		}
+	}

+ 41 - 0
assets/sass/components/_section.scss

@@ -0,0 +1,41 @@
+///
+/// Hyperspace by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Section/Article */
+
+	section, article {
+		&.special {
+			text-align: center;
+		}
+	}
+
+	header {
+		p {
+			color: _palette(fg-light);
+			position: relative;
+			margin: 0 0 (_size(element-margin) * 0.75) 0;
+		}
+
+		h2 + p {
+			font-size: 1.25em;
+			margin-top: (_size(element-margin) * -0.5);
+			line-height: 1.5em;
+		}
+
+		h3 + p {
+			font-size: 1.1em;
+			margin-top: (_size(element-margin) * -0.4);
+			line-height: 1.5em;
+		}
+
+		h4 + p,
+		h5 + p,
+		h6 + p {
+			font-size: 0.9em;
+			margin-top: (_size(element-margin) * -0.3);
+			line-height: 1.5em;
+		}
+	}