jekyll-theme-stellar 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +63 -0
- data/README.md +132 -0
- data/_home_sections/1_introduction.md +21 -0
- data/_home_sections/2_first.md +32 -0
- data/_home_sections/3_second.md +40 -0
- data/_home_sections/4_get_started.md +18 -0
- data/_includes/footer.html +54 -0
- data/_includes/head.html +7 -0
- data/_includes/header.html +9 -0
- data/_includes/navigation.html +8 -0
- data/_includes/scripts.html +8 -0
- data/_layouts/default.html +34 -0
- data/_layouts/page.html +32 -0
- data/_layouts/post.html +5 -0
- data/_sass/base/_page.scss +51 -0
- data/_sass/base/_reset.scss +76 -0
- data/_sass/base/_typography.scss +216 -0
- data/_sass/components/_actions.scss +101 -0
- data/_sass/components/_box.scss +34 -0
- data/_sass/components/_button.scss +109 -0
- data/_sass/components/_features.scss +60 -0
- data/_sass/components/_form.scss +220 -0
- data/_sass/components/_icon.scss +130 -0
- data/_sass/components/_icons.scss +22 -0
- data/_sass/components/_image.scss +60 -0
- data/_sass/components/_list.scss +94 -0
- data/_sass/components/_row.scss +31 -0
- data/_sass/components/_section.scss +104 -0
- data/_sass/components/_spotlight.scss +93 -0
- data/_sass/components/_statistics.scss +108 -0
- data/_sass/components/_table.scss +114 -0
- data/_sass/layout/_footer.scss +60 -0
- data/_sass/layout/_header.scss +116 -0
- data/_sass/layout/_main.scss +99 -0
- data/_sass/layout/_nav.scss +96 -0
- data/_sass/layout/_wrapper.scss +21 -0
- data/_sass/libs/_breakpoints.scss +223 -0
- data/_sass/libs/_functions.scss +90 -0
- data/_sass/libs/_html-grid.scss +149 -0
- data/_sass/libs/_mixins.scss +63 -0
- data/_sass/libs/_vars.scss +60 -0
- data/_sass/libs/_vendor.scss +376 -0
- data/_sass/main.scss +70 -0
- data/_sass/noscript.scss +28 -0
- data/assets/css/font-awesome.min.css +4 -0
- data/assets/css/images/overlay.png +0 -0
- data/assets/css/main.css +3764 -0
- data/assets/css/noscript.css +18 -0
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +2671 -0
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/images/logo.svg +16 -0
- data/assets/images/pic01.jpg +0 -0
- data/assets/images/pic02.jpg +0 -0
- data/assets/images/pic03.jpg +0 -0
- data/assets/images/pic04.jpg +0 -0
- data/assets/images/pic05.jpg +0 -0
- data/assets/images/pic06.jpg +0 -0
- data/assets/images/screenshot.jpg +0 -0
- data/assets/js/breakpoints.min.js +2 -0
- data/assets/js/browser.min.js +2 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.scrollex.min.js +2 -0
- data/assets/js/jquery.scrolly.min.js +2 -0
- data/assets/js/main.js +123 -0
- data/assets/js/util.js +587 -0
- metadata +155 -0
| @@ -0,0 +1,34 @@ | |
| 1 | 
            +
            ///
         | 
| 2 | 
            +
            /// Stellar by HTML5 UP
         | 
| 3 | 
            +
            /// html5up.net | @ajlkn
         | 
| 4 | 
            +
            /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
         | 
| 5 | 
            +
            ///
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            /* Box */
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            	.box {
         | 
| 10 | 
            +
            		border-radius: _size(border-radius);
         | 
| 11 | 
            +
            		border: solid _size(border-width);
         | 
| 12 | 
            +
            		margin-bottom: _size(element-margin);
         | 
| 13 | 
            +
            		padding: 1.5em;
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            		> :last-child,
         | 
| 16 | 
            +
            		> :last-child > :last-child,
         | 
| 17 | 
            +
            		> :last-child > :last-child > :last-child {
         | 
| 18 | 
            +
            			margin-bottom: 0;
         | 
| 19 | 
            +
            		}
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            		&.alt {
         | 
| 22 | 
            +
            			border: 0;
         | 
| 23 | 
            +
            			border-radius: 0;
         | 
| 24 | 
            +
            			padding: 0;
         | 
| 25 | 
            +
            		}
         | 
| 26 | 
            +
            	}
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            	@mixin color-box($p: null) {
         | 
| 29 | 
            +
             		.box {
         | 
| 30 | 
            +
             			border-color: _palette($p, border);
         | 
| 31 | 
            +
             		}
         | 
| 32 | 
            +
            	}
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            	@include color-box;
         | 
| @@ -0,0 +1,109 @@ | |
| 1 | 
            +
            ///
         | 
| 2 | 
            +
            /// Stellar by HTML5 UP
         | 
| 3 | 
            +
            /// html5up.net | @ajlkn
         | 
| 4 | 
            +
            /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
         | 
| 5 | 
            +
            ///
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            /* Button */
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            	input[type="submit"],
         | 
| 10 | 
            +
            	input[type="reset"],
         | 
| 11 | 
            +
            	input[type="button"],
         | 
| 12 | 
            +
            	button,
         | 
| 13 | 
            +
            	.button {
         | 
| 14 | 
            +
            		@include vendor('appearance', 'none');
         | 
| 15 | 
            +
            		@include vendor('transition', (
         | 
| 16 | 
            +
            			'background-color #{_duration(transition)} ease-in-out',
         | 
| 17 | 
            +
            			'color #{_duration(transition)} ease-in-out'
         | 
| 18 | 
            +
            		));
         | 
| 19 | 
            +
            		border-radius: _size(border-radius);
         | 
| 20 | 
            +
            		border: 0;
         | 
| 21 | 
            +
            		cursor: pointer;
         | 
| 22 | 
            +
            		display: inline-block;
         | 
| 23 | 
            +
            		font-weight: _font(weight);
         | 
| 24 | 
            +
            		height: 2.75em;
         | 
| 25 | 
            +
            		line-height: 2.75em;
         | 
| 26 | 
            +
            		min-width: 9.25em;
         | 
| 27 | 
            +
            		padding: 0 1.5em;
         | 
| 28 | 
            +
            		text-align: center;
         | 
| 29 | 
            +
            		text-decoration: none;
         | 
| 30 | 
            +
            		white-space: nowrap;
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            		&.icon {
         | 
| 33 | 
            +
            			padding-left: 1.35em;
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            			&:before {
         | 
| 36 | 
            +
            				margin-right: 0.5em;
         | 
| 37 | 
            +
            			}
         | 
| 38 | 
            +
            		}
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            		&.fit {
         | 
| 41 | 
            +
            			width: 100%;
         | 
| 42 | 
            +
            		}
         | 
| 43 | 
            +
             | 
| 44 | 
            +
            		&.small {
         | 
| 45 | 
            +
            			font-size: 0.8em;
         | 
| 46 | 
            +
            		}
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            		&.large {
         | 
| 49 | 
            +
            			font-size: 1.35em;
         | 
| 50 | 
            +
            		}
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            		&.disabled,
         | 
| 53 | 
            +
            		&:disabled {
         | 
| 54 | 
            +
            			@include vendor('pointer-events', 'none');
         | 
| 55 | 
            +
            			opacity: 0.25;
         | 
| 56 | 
            +
            		}
         | 
| 57 | 
            +
             | 
| 58 | 
            +
            		@include breakpoint('<=small') {
         | 
| 59 | 
            +
            			min-width: 0;
         | 
| 60 | 
            +
            		}
         | 
| 61 | 
            +
            	}
         | 
| 62 | 
            +
             | 
| 63 | 
            +
            	@mixin color-button($p: null) {
         | 
| 64 | 
            +
            		input[type="submit"],
         | 
| 65 | 
            +
            		input[type="reset"],
         | 
| 66 | 
            +
            		input[type="button"],
         | 
| 67 | 
            +
            		button,
         | 
| 68 | 
            +
            		.button {
         | 
| 69 | 
            +
            			background-color: transparent;
         | 
| 70 | 
            +
            			box-shadow: inset 0 0 0 1px _palette($p, border);
         | 
| 71 | 
            +
            			color: _palette($p, fg-bold) !important;
         | 
| 72 | 
            +
             | 
| 73 | 
            +
            			&:hover {
         | 
| 74 | 
            +
            				background-color: _palette($p, border-bg);
         | 
| 75 | 
            +
            			}
         | 
| 76 | 
            +
             | 
| 77 | 
            +
            			&:active {
         | 
| 78 | 
            +
            				background-color: _palette($p, border2-bg);
         | 
| 79 | 
            +
            			}
         | 
| 80 | 
            +
             | 
| 81 | 
            +
            			&.icon {
         | 
| 82 | 
            +
            				&:before {
         | 
| 83 | 
            +
            					color: _palette($p, fg-light);
         | 
| 84 | 
            +
            				}
         | 
| 85 | 
            +
            			}
         | 
| 86 | 
            +
             | 
| 87 | 
            +
            			&.primary {
         | 
| 88 | 
            +
            				background-color: _palette(accent);
         | 
| 89 | 
            +
            				color: _palette(invert, bg) !important;
         | 
| 90 | 
            +
            				box-shadow: none;
         | 
| 91 | 
            +
             | 
| 92 | 
            +
            				&:hover {
         | 
| 93 | 
            +
            					background-color: lighten(_palette(accent), 3);
         | 
| 94 | 
            +
            				}
         | 
| 95 | 
            +
             | 
| 96 | 
            +
            				&:active {
         | 
| 97 | 
            +
            					background-color: darken(_palette(accent), 3);
         | 
| 98 | 
            +
            				}
         | 
| 99 | 
            +
             | 
| 100 | 
            +
            				&.icon {
         | 
| 101 | 
            +
            					&:before {
         | 
| 102 | 
            +
            						color: _palette(invert, bg) !important;
         | 
| 103 | 
            +
            					}
         | 
| 104 | 
            +
            				}
         | 
| 105 | 
            +
            			}
         | 
| 106 | 
            +
            		}
         | 
| 107 | 
            +
            	}
         | 
| 108 | 
            +
             | 
| 109 | 
            +
            	@include color-button;
         | 
| @@ -0,0 +1,60 @@ | |
| 1 | 
            +
            ///
         | 
| 2 | 
            +
            /// Stellar by HTML5 UP
         | 
| 3 | 
            +
            /// html5up.net | @ajlkn
         | 
| 4 | 
            +
            /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
         | 
| 5 | 
            +
            ///
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            /* Features */
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            	.features {
         | 
| 10 | 
            +
            		@include vendor('display', 'flex');
         | 
| 11 | 
            +
            		@include vendor('flex-wrap', 'wrap');
         | 
| 12 | 
            +
            		@include vendor('justify-content', 'center');
         | 
| 13 | 
            +
            		width: calc(100% + #{_size(element-margin)});
         | 
| 14 | 
            +
            		margin: 0 0 (_size(element-margin) * 1.5) (_size(element-margin) * -1);
         | 
| 15 | 
            +
            		padding: 0;
         | 
| 16 | 
            +
            		list-style: none;
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            		li {
         | 
| 19 | 
            +
            			width: calc(#{(100% / 3)} - #{_size(element-margin)});
         | 
| 20 | 
            +
            			margin-left: _size(element-margin);
         | 
| 21 | 
            +
            			margin-top: (_size(element-margin) * 1.5);
         | 
| 22 | 
            +
            			padding: 0;
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            			&:nth-child(1),
         | 
| 25 | 
            +
            			&:nth-child(2),
         | 
| 26 | 
            +
            			&:nth-child(3) {
         | 
| 27 | 
            +
            				margin-top: 0;
         | 
| 28 | 
            +
            			}
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            			> :last-child {
         | 
| 31 | 
            +
            				margin-bottom: 0;
         | 
| 32 | 
            +
            			}
         | 
| 33 | 
            +
            		}
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            		@include breakpoint('<=medium') {
         | 
| 36 | 
            +
            			li {
         | 
| 37 | 
            +
            				width: calc(#{(100% / 2)} - #{_size(element-margin)});
         | 
| 38 | 
            +
             | 
| 39 | 
            +
            				&:nth-child(3) {
         | 
| 40 | 
            +
            					margin-top: (_size(element-margin) * 1.5);
         | 
| 41 | 
            +
            				}
         | 
| 42 | 
            +
            			}
         | 
| 43 | 
            +
            		}
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            		@include breakpoint('<=small') {
         | 
| 46 | 
            +
            			width: 100%;
         | 
| 47 | 
            +
            			margin: 0 0 _size(element-margin) 0;
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            			li {
         | 
| 50 | 
            +
            				width: 100%;
         | 
| 51 | 
            +
            				margin-left: 0;
         | 
| 52 | 
            +
            				margin-top: _size(element-margin);
         | 
| 53 | 
            +
             | 
| 54 | 
            +
            				&:nth-child(2),
         | 
| 55 | 
            +
            				&:nth-child(3) {
         | 
| 56 | 
            +
            					margin-top: _size(element-margin);
         | 
| 57 | 
            +
            				}
         | 
| 58 | 
            +
            			}
         | 
| 59 | 
            +
            		}
         | 
| 60 | 
            +
            	}
         | 
| @@ -0,0 +1,220 @@ | |
| 1 | 
            +
            ///
         | 
| 2 | 
            +
            /// Stellar by HTML5 UP
         | 
| 3 | 
            +
            /// html5up.net | @ajlkn
         | 
| 4 | 
            +
            /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
         | 
| 5 | 
            +
            ///
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            /* Form */
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            	form {
         | 
| 10 | 
            +
            		margin: 0 0 _size(element-margin) 0;
         | 
| 11 | 
            +
            	}
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            	label {
         | 
| 14 | 
            +
            		display: block;
         | 
| 15 | 
            +
            		font-size: 0.9em;
         | 
| 16 | 
            +
            		font-weight: _font(weight-bold);
         | 
| 17 | 
            +
            		margin: 0 0 (_size(element-margin) * 0.5) 0;
         | 
| 18 | 
            +
            	}
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            	input[type="text"],
         | 
| 21 | 
            +
            	input[type="password"],
         | 
| 22 | 
            +
            	input[type="email"],
         | 
| 23 | 
            +
            	select,
         | 
| 24 | 
            +
            	textarea {
         | 
| 25 | 
            +
            		@include vendor('appearance', 'none');
         | 
| 26 | 
            +
            		border-radius: _size(border-radius);
         | 
| 27 | 
            +
            		border: solid 1px;
         | 
| 28 | 
            +
            		color: inherit;
         | 
| 29 | 
            +
            		display: block;
         | 
| 30 | 
            +
            		outline: 0;
         | 
| 31 | 
            +
            		padding: 0 1em;
         | 
| 32 | 
            +
            		text-decoration: none;
         | 
| 33 | 
            +
            		width: 100%;
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            		&:invalid {
         | 
| 36 | 
            +
            			box-shadow: none;
         | 
| 37 | 
            +
            		}
         | 
| 38 | 
            +
            	}
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            	select {
         | 
| 41 | 
            +
            		background-size: 1.25rem;
         | 
| 42 | 
            +
            		background-repeat: no-repeat;
         | 
| 43 | 
            +
            		background-position: calc(100% - 1rem) center;
         | 
| 44 | 
            +
            		height: _size(element-height);
         | 
| 45 | 
            +
            		padding-right: _size(element-height);
         | 
| 46 | 
            +
            		text-overflow: ellipsis;
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            		&:focus {
         | 
| 49 | 
            +
            			&::-ms-value {
         | 
| 50 | 
            +
            				background-color: transparent;
         | 
| 51 | 
            +
            			}
         | 
| 52 | 
            +
            		}
         | 
| 53 | 
            +
             | 
| 54 | 
            +
            		&::-ms-expand {
         | 
| 55 | 
            +
            			display: none;
         | 
| 56 | 
            +
            		}
         | 
| 57 | 
            +
            	}
         | 
| 58 | 
            +
             | 
| 59 | 
            +
            	input[type="text"],
         | 
| 60 | 
            +
            	input[type="password"],
         | 
| 61 | 
            +
            	input[type="email"],
         | 
| 62 | 
            +
            	select {
         | 
| 63 | 
            +
            		height: _size(element-height);
         | 
| 64 | 
            +
            	}
         | 
| 65 | 
            +
             | 
| 66 | 
            +
            	textarea {
         | 
| 67 | 
            +
            		padding: 0.75em 1em;
         | 
| 68 | 
            +
            	}
         | 
| 69 | 
            +
             | 
| 70 | 
            +
            	input[type="checkbox"],
         | 
| 71 | 
            +
            	input[type="radio"], {
         | 
| 72 | 
            +
            		@include vendor('appearance', 'none');
         | 
| 73 | 
            +
            		display: block;
         | 
| 74 | 
            +
            		float: left;
         | 
| 75 | 
            +
            		margin-right: -2em;
         | 
| 76 | 
            +
            		opacity: 0;
         | 
| 77 | 
            +
            		width: 1em;
         | 
| 78 | 
            +
            		z-index: -1;
         | 
| 79 | 
            +
             | 
| 80 | 
            +
            		& + label {
         | 
| 81 | 
            +
            			@include icon;
         | 
| 82 | 
            +
            			cursor: pointer;
         | 
| 83 | 
            +
            			display: inline-block;
         | 
| 84 | 
            +
            			font-size: 1em;
         | 
| 85 | 
            +
            			font-weight: _font(weight);
         | 
| 86 | 
            +
            			padding-left: (_size(element-height) * 0.6) + 0.75em;
         | 
| 87 | 
            +
            			padding-right: 0.75em;
         | 
| 88 | 
            +
            			position: relative;
         | 
| 89 | 
            +
             | 
| 90 | 
            +
            			&:before {
         | 
| 91 | 
            +
            				border-radius: _size(border-radius);
         | 
| 92 | 
            +
            				border: solid 1px;
         | 
| 93 | 
            +
            				content: '';
         | 
| 94 | 
            +
            				display: inline-block;
         | 
| 95 | 
            +
            				height: (_size(element-height) * 0.6);
         | 
| 96 | 
            +
            				left: 0;
         | 
| 97 | 
            +
            				line-height: (_size(element-height) * 0.575);
         | 
| 98 | 
            +
            				position: absolute;
         | 
| 99 | 
            +
            				text-align: center;
         | 
| 100 | 
            +
            				top: 0;
         | 
| 101 | 
            +
            				width: (_size(element-height) * 0.6);
         | 
| 102 | 
            +
            			}
         | 
| 103 | 
            +
            		}
         | 
| 104 | 
            +
             | 
| 105 | 
            +
            		&:checked + label {
         | 
| 106 | 
            +
            			&:before {
         | 
| 107 | 
            +
            				content: '\f00c';
         | 
| 108 | 
            +
            			}
         | 
| 109 | 
            +
            		}
         | 
| 110 | 
            +
            	}
         | 
| 111 | 
            +
             | 
| 112 | 
            +
            	input[type="checkbox"] {
         | 
| 113 | 
            +
            		& + label {
         | 
| 114 | 
            +
            			&:before {
         | 
| 115 | 
            +
            				border-radius: _size(border-radius);
         | 
| 116 | 
            +
            			}
         | 
| 117 | 
            +
            		}
         | 
| 118 | 
            +
            	}
         | 
| 119 | 
            +
             | 
| 120 | 
            +
            	input[type="radio"] {
         | 
| 121 | 
            +
            		& + label {
         | 
| 122 | 
            +
            			&:before {
         | 
| 123 | 
            +
            				border-radius: 100%;
         | 
| 124 | 
            +
            			}
         | 
| 125 | 
            +
            		}
         | 
| 126 | 
            +
            	}
         | 
| 127 | 
            +
             | 
| 128 | 
            +
            	::-webkit-input-placeholder {
         | 
| 129 | 
            +
            		opacity: 1.0;
         | 
| 130 | 
            +
            	}
         | 
| 131 | 
            +
             | 
| 132 | 
            +
            	:-moz-placeholder {
         | 
| 133 | 
            +
            		opacity: 1.0;
         | 
| 134 | 
            +
            	}
         | 
| 135 | 
            +
             | 
| 136 | 
            +
            	::-moz-placeholder {
         | 
| 137 | 
            +
            		opacity: 1.0;
         | 
| 138 | 
            +
            	}
         | 
| 139 | 
            +
             | 
| 140 | 
            +
            	:-ms-input-placeholder {
         | 
| 141 | 
            +
            		opacity: 1.0;
         | 
| 142 | 
            +
            	}
         | 
| 143 | 
            +
             | 
| 144 | 
            +
            	@mixin color-form($p: null) {
         | 
| 145 | 
            +
            		label {
         | 
| 146 | 
            +
            			color: _palette($p, fg-bold);
         | 
| 147 | 
            +
            		}
         | 
| 148 | 
            +
             | 
| 149 | 
            +
            		input[type="text"],
         | 
| 150 | 
            +
            		input[type="password"],
         | 
| 151 | 
            +
            		input[type="email"],
         | 
| 152 | 
            +
            		select,
         | 
| 153 | 
            +
            		textarea {
         | 
| 154 | 
            +
            			background-color: _palette($p, border-bg);
         | 
| 155 | 
            +
            			border-color: _palette($p, border);
         | 
| 156 | 
            +
             | 
| 157 | 
            +
            			&:focus {
         | 
| 158 | 
            +
            				border-color: _palette(accent);
         | 
| 159 | 
            +
            				box-shadow: 0 0 0 1px _palette(accent);
         | 
| 160 | 
            +
            			}
         | 
| 161 | 
            +
            		}
         | 
| 162 | 
            +
             | 
| 163 | 
            +
            		select {
         | 
| 164 | 
            +
            			background-image: svg-url("<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'><path d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='#{_palette($p, border)}' /></svg>");
         | 
| 165 | 
            +
             | 
| 166 | 
            +
            			option {
         | 
| 167 | 
            +
            				color: _palette($p, fg-bold);
         | 
| 168 | 
            +
            				background: _palette($p, bg);
         | 
| 169 | 
            +
            			}
         | 
| 170 | 
            +
            		}
         | 
| 171 | 
            +
             | 
| 172 | 
            +
            		input[type="checkbox"],
         | 
| 173 | 
            +
            		input[type="radio"], {
         | 
| 174 | 
            +
            			& + label {
         | 
| 175 | 
            +
            				color: _palette($p, fg);
         | 
| 176 | 
            +
             | 
| 177 | 
            +
            				&:before {
         | 
| 178 | 
            +
            					background: _palette($p, border-bg);
         | 
| 179 | 
            +
            					border-color: _palette($p, border);
         | 
| 180 | 
            +
            				}
         | 
| 181 | 
            +
            			}
         | 
| 182 | 
            +
             | 
| 183 | 
            +
            			&:checked + label {
         | 
| 184 | 
            +
            				&:before {
         | 
| 185 | 
            +
            					background-color: _palette($p, fg-bold);
         | 
| 186 | 
            +
            					border-color: _palette($p, fg-bold);
         | 
| 187 | 
            +
            					color: _palette($p, bg);
         | 
| 188 | 
            +
            				}
         | 
| 189 | 
            +
            			}
         | 
| 190 | 
            +
             | 
| 191 | 
            +
            			&:focus + label {
         | 
| 192 | 
            +
            				&:before {
         | 
| 193 | 
            +
            					border-color: _palette(accent);
         | 
| 194 | 
            +
            					box-shadow: 0 0 0 1px _palette(accent);
         | 
| 195 | 
            +
            				}
         | 
| 196 | 
            +
            			}
         | 
| 197 | 
            +
            		}
         | 
| 198 | 
            +
             | 
| 199 | 
            +
            		::-webkit-input-placeholder {
         | 
| 200 | 
            +
            			color: _palette($p, fg-light) !important;
         | 
| 201 | 
            +
            		}
         | 
| 202 | 
            +
             | 
| 203 | 
            +
            		:-moz-placeholder {
         | 
| 204 | 
            +
            			color: _palette($p, fg-light) !important;
         | 
| 205 | 
            +
            		}
         | 
| 206 | 
            +
             | 
| 207 | 
            +
            		::-moz-placeholder {
         | 
| 208 | 
            +
            			color: _palette($p, fg-light) !important;
         | 
| 209 | 
            +
            		}
         | 
| 210 | 
            +
             | 
| 211 | 
            +
            		:-ms-input-placeholder {
         | 
| 212 | 
            +
            			color: _palette($p, fg-light) !important;
         | 
| 213 | 
            +
            		}
         | 
| 214 | 
            +
             | 
| 215 | 
            +
            		.formerize-placeholder {
         | 
| 216 | 
            +
            			color: _palette($p, fg-light) !important;
         | 
| 217 | 
            +
            		}
         | 
| 218 | 
            +
            	}
         | 
| 219 | 
            +
             | 
| 220 | 
            +
            	@include color-form;
         | 
| @@ -0,0 +1,130 @@ | |
| 1 | 
            +
            ///
         | 
| 2 | 
            +
            /// Stellar by HTML5 UP
         | 
| 3 | 
            +
            /// html5up.net | @ajlkn
         | 
| 4 | 
            +
            /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
         | 
| 5 | 
            +
            ///
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            /* Icon */
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            	.icon {
         | 
| 10 | 
            +
            		@include icon;
         | 
| 11 | 
            +
            		@include vendor('transition', (
         | 
| 12 | 
            +
            			'background-color #{_duration(transition)} ease-in-out',
         | 
| 13 | 
            +
            			'color #{_duration(transition)} ease-in-out'
         | 
| 14 | 
            +
            		));
         | 
| 15 | 
            +
            		border-bottom: none;
         | 
| 16 | 
            +
            		position: relative;
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            		> .label {
         | 
| 19 | 
            +
            			display: none;
         | 
| 20 | 
            +
            		}
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            		&.major {
         | 
| 23 | 
            +
            			border: solid 1px;
         | 
| 24 | 
            +
            			display: inline-block;
         | 
| 25 | 
            +
            			border-radius: 100%;
         | 
| 26 | 
            +
            			padding: 0.65em;
         | 
| 27 | 
            +
            			margin: 0 0 _size(element-margin) 0;
         | 
| 28 | 
            +
            			cursor: default;
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            			&:before {
         | 
| 31 | 
            +
            				display: inline-block;
         | 
| 32 | 
            +
            				font-size: 6.25rem;
         | 
| 33 | 
            +
            				width: 2.25em;
         | 
| 34 | 
            +
            				height: 2.25em;
         | 
| 35 | 
            +
            				line-height: 2.2em;
         | 
| 36 | 
            +
            				border-radius: 100%;
         | 
| 37 | 
            +
            				border: solid 1px;
         | 
| 38 | 
            +
            				text-align: center;
         | 
| 39 | 
            +
            			}
         | 
| 40 | 
            +
            		}
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            		&.alt {
         | 
| 43 | 
            +
            			display: inline-block;
         | 
| 44 | 
            +
            			border: solid 1px;
         | 
| 45 | 
            +
            			border-radius: 100%;
         | 
| 46 | 
            +
             | 
| 47 | 
            +
            			&:before {
         | 
| 48 | 
            +
            				display: block;
         | 
| 49 | 
            +
            				font-size: 1.25em;
         | 
| 50 | 
            +
            				width: 2em;
         | 
| 51 | 
            +
            				height: 2em;
         | 
| 52 | 
            +
            				text-align: center;
         | 
| 53 | 
            +
            				line-height: 2em;
         | 
| 54 | 
            +
            			}
         | 
| 55 | 
            +
            		}
         | 
| 56 | 
            +
             | 
| 57 | 
            +
            		&.style1 {
         | 
| 58 | 
            +
            			color: _palette(accent1);
         | 
| 59 | 
            +
            		}
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            		&.style2 {
         | 
| 62 | 
            +
            			color: _palette(accent2);
         | 
| 63 | 
            +
            		}
         | 
| 64 | 
            +
             | 
| 65 | 
            +
            		&.style3 {
         | 
| 66 | 
            +
            			color: _palette(accent3);
         | 
| 67 | 
            +
            		}
         | 
| 68 | 
            +
             | 
| 69 | 
            +
            		&.style4 {
         | 
| 70 | 
            +
            			color: _palette(accent4);
         | 
| 71 | 
            +
            		}
         | 
| 72 | 
            +
             | 
| 73 | 
            +
            		&.style5 {
         | 
| 74 | 
            +
            			color: _palette(accent5);
         | 
| 75 | 
            +
            		}
         | 
| 76 | 
            +
             | 
| 77 | 
            +
            		@include breakpoint('<=xlarge') {
         | 
| 78 | 
            +
            			&.major {
         | 
| 79 | 
            +
            				&:before {
         | 
| 80 | 
            +
            					font-size: 5.5rem;
         | 
| 81 | 
            +
            				}
         | 
| 82 | 
            +
            			}
         | 
| 83 | 
            +
            		}
         | 
| 84 | 
            +
             | 
| 85 | 
            +
            		@include breakpoint('<=large') {
         | 
| 86 | 
            +
            			&.major {
         | 
| 87 | 
            +
            				&:before {
         | 
| 88 | 
            +
            					font-size: 4.75rem;
         | 
| 89 | 
            +
            				}
         | 
| 90 | 
            +
            			}
         | 
| 91 | 
            +
            		}
         | 
| 92 | 
            +
             | 
| 93 | 
            +
            		@include breakpoint('<=small') {
         | 
| 94 | 
            +
            			&.major {
         | 
| 95 | 
            +
            				margin: 0 0 (_size(element-margin) * 0.75) 0;
         | 
| 96 | 
            +
            				padding: 0.35em;
         | 
| 97 | 
            +
             | 
| 98 | 
            +
            				&:before {
         | 
| 99 | 
            +
            					font-size: 3.5rem;
         | 
| 100 | 
            +
            				}
         | 
| 101 | 
            +
            			}
         | 
| 102 | 
            +
            		}
         | 
| 103 | 
            +
            	}
         | 
| 104 | 
            +
             | 
| 105 | 
            +
            	@mixin color-icon($p: null) {
         | 
| 106 | 
            +
            		.icon {
         | 
| 107 | 
            +
            			&.major {
         | 
| 108 | 
            +
            				border-color: _palette($p, border);
         | 
| 109 | 
            +
             | 
| 110 | 
            +
            				&:before {
         | 
| 111 | 
            +
            					border-color: _palette($p, border);
         | 
| 112 | 
            +
            				}
         | 
| 113 | 
            +
            			}
         | 
| 114 | 
            +
             | 
| 115 | 
            +
            			&.alt {
         | 
| 116 | 
            +
             				border-color: _palette($p, border);
         | 
| 117 | 
            +
             				color: _palette($p, fg-bold);
         | 
| 118 | 
            +
             | 
| 119 | 
            +
            				&:hover {
         | 
| 120 | 
            +
            					background-color: _palette($p, border-bg);
         | 
| 121 | 
            +
            				}
         | 
| 122 | 
            +
             | 
| 123 | 
            +
            				&:active {
         | 
| 124 | 
            +
            					background-color: _palette($p, border2-bg);
         | 
| 125 | 
            +
            				}
         | 
| 126 | 
            +
             			}
         | 
| 127 | 
            +
            		}
         | 
| 128 | 
            +
            	}
         | 
| 129 | 
            +
             | 
| 130 | 
            +
            	@include color-icon;
         |