├── .gitignore ├── assets ├── img │ ├── bg.jpg │ ├── mask.png │ ├── cover_4.jpg │ ├── dulau.jpg │ ├── favicon.png │ ├── mockup.png │ ├── new_logo.png │ ├── tim_80x80.png │ ├── apple-icon.png │ ├── carousel_red.png │ ├── cover_4_blur.jpg │ ├── carousel_blue.png │ ├── carousel_green.png │ ├── carousel_orange.png │ └── blurred-black-cover.jpeg ├── sass │ ├── gsdk │ │ ├── mixins │ │ │ ├── _tabs.scss │ │ │ ├── _navbars.scss │ │ │ ├── _inputs.scss │ │ │ ├── _transparency.scss │ │ │ ├── _labels.scss │ │ │ ├── _buttons.scss │ │ │ └── _vendor-prefixes.scss │ │ ├── _mixins.scss │ │ ├── _carousel.scss │ │ ├── _alerts.scss │ │ ├── _collapse.scss │ │ ├── _modal.scss │ │ ├── _dropdown.scss │ │ ├── _labels-and-progress-bars.scss │ │ ├── _typography.scss │ │ ├── _buttons.scss │ │ ├── _misc.scss │ │ ├── _tooltips.scss │ │ ├── _inputs.scss │ │ ├── _tabs-navs-pagination.scss │ │ ├── _sliders.scss │ │ ├── _checkbox-radio-switch.scss │ │ ├── _variables.scss │ │ ├── _responsive.scss │ │ └── _navbars.scss │ └── gsdk.scss ├── js │ ├── custom.js │ ├── gsdk-checkbox.js │ ├── get-shit-done.js │ ├── gsdk-radio.js │ ├── gsdk-bootstrapswitch.js │ └── jquery-ui-1.10.4.custom.min.js └── css │ └── demo.css ├── bootstrap3 ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── css │ ├── bootstrap-theme.min.css │ └── bootstrap-theme.css └── js │ └── bootstrap.min.js ├── genezio.yaml ├── LICENSE.md ├── template.html ├── README.md ├── notification.html ├── navbar-transparent.html └── tutorial.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore dummyapp folder 2 | /gsdk/dummyapp 3 | -------------------------------------------------------------------------------- /assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/bg.jpg -------------------------------------------------------------------------------- /assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/mask.png -------------------------------------------------------------------------------- /assets/img/cover_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/cover_4.jpg -------------------------------------------------------------------------------- /assets/img/dulau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/dulau.jpg -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/mockup.png -------------------------------------------------------------------------------- /assets/img/new_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/new_logo.png -------------------------------------------------------------------------------- /assets/img/tim_80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/tim_80x80.png -------------------------------------------------------------------------------- /assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/apple-icon.png -------------------------------------------------------------------------------- /assets/img/carousel_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/carousel_red.png -------------------------------------------------------------------------------- /assets/img/cover_4_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/cover_4_blur.jpg -------------------------------------------------------------------------------- /assets/sass/gsdk/mixins/_tabs.scss: -------------------------------------------------------------------------------- 1 | @mixin pill-style($color){ 2 | border: 1px solid $color; 3 | color: $color; 4 | } -------------------------------------------------------------------------------- /assets/img/carousel_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/carousel_blue.png -------------------------------------------------------------------------------- /assets/img/carousel_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/carousel_green.png -------------------------------------------------------------------------------- /assets/img/carousel_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/carousel_orange.png -------------------------------------------------------------------------------- /bootstrap3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/bootstrap3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/img/blurred-black-cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/assets/img/blurred-black-cover.jpeg -------------------------------------------------------------------------------- /bootstrap3/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/bootstrap3/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /bootstrap3/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/bootstrap3/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /bootstrap3/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/bootstrap3/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /bootstrap3/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/bootstrap3/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap3/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/bootstrap3/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap3/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/get-shit-done/HEAD/bootstrap3/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/js/custom.js: -------------------------------------------------------------------------------- 1 | var transparentDemo = true; 2 | var fixedTop = false; 3 | 4 | $(window).scroll(function(e) { 5 | oVal = ($(window).scrollTop() / 170); 6 | $(".blur").css("opacity", oVal); 7 | 8 | }); 9 | 10 | -------------------------------------------------------------------------------- /assets/sass/gsdk/mixins/_navbars.scss: -------------------------------------------------------------------------------- 1 | @mixin navbar-color($color){ 2 | background-color: $color; 3 | } 4 | 5 | @mixin center-item(){ 6 | left: 0; 7 | right: 0; 8 | margin-right: auto; 9 | margin-left: auto; 10 | position: absolute; 11 | } -------------------------------------------------------------------------------- /genezio.yaml: -------------------------------------------------------------------------------- 1 | name: get-shit-done 2 | region: us-east-1 3 | frontend: 4 | # Specifies the path of your code. 5 | path: . 6 | # Specifies the folder where the build is located. 7 | # This is the folder that will be deployed. 8 | publish: . 9 | yamlVersion: 2 10 | -------------------------------------------------------------------------------- /assets/sass/gsdk/_mixins.scss: -------------------------------------------------------------------------------- 1 | //Utilities 2 | 3 | @import "mixins/transparency"; 4 | @import "mixins/vendor-prefixes"; 5 | 6 | //Components 7 | 8 | @import "mixins/buttons"; 9 | @import "mixins/inputs"; 10 | @import "mixins/labels"; 11 | @import "mixins/tabs"; 12 | @import "mixins/navbars"; 13 | 14 | -------------------------------------------------------------------------------- /assets/sass/gsdk/mixins/_inputs.scss: -------------------------------------------------------------------------------- 1 | @mixin input-size($padding-vertical, $padding-horizontal, $height){ 2 | padding: $padding-vertical $padding-horizontal; 3 | height: $height; 4 | } 5 | 6 | @mixin placeholder($color, $opacity){ 7 | color: $color; 8 | @include opacity(1); 9 | } 10 | 11 | @mixin light-form(){ 12 | border-radius: 0; 13 | border:0; 14 | padding: 0; 15 | background-color: transparent; 16 | 17 | } -------------------------------------------------------------------------------- /assets/sass/gsdk/mixins/_transparency.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: #{alpha(opacity=$opacity-ie)}; 8 | } 9 | 10 | @mixin black-filter($opacity){ 11 | top: 0; 12 | left: 0; 13 | height: 100%; 14 | width: 100%; 15 | position: absolute; 16 | background-color: rgba(17,17,17,$opacity); 17 | display: block; 18 | content: ""; 19 | z-index: 1; 20 | } -------------------------------------------------------------------------------- /assets/sass/gsdk/_carousel.scss: -------------------------------------------------------------------------------- 1 | .carousel-control{ 2 | // width: 8%; 3 | &.left, 4 | &.right{ 5 | background-image: none; 6 | } 7 | .fa{ 8 | font-size: 35px; 9 | } 10 | .fa, 11 | .icon-prev, 12 | .icon-next{ 13 | display: inline-block; 14 | position: absolute; 15 | top: 50%; 16 | z-index: 5; 17 | margin-top: -17px; 18 | margin-left: -9px; 19 | } 20 | } 21 | .carousel-inner > .item { 22 | transition: left 1200ms cubic-bezier(0.455, 0.03, 0.4, 0.955) 0s; 23 | -webkit-transition: left 1200ms cubic-bezier(0.455, 0.03, 0.4, 0.955) 0s; 24 | } -------------------------------------------------------------------------------- /assets/sass/gsdk/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | @mixin label-style(){ 2 | padding: $padding-label-vertical $padding-label-horizontal; 3 | border: 1px solid $default-color; 4 | border-radius: $border-radius-small; 5 | color: $default-color; 6 | font-weight: $font-weight-semi; 7 | font-size: $font-size-small; 8 | text-transform: uppercase; 9 | display: inline-block; 10 | vertical-align: middle; 11 | } 12 | 13 | @mixin label-color($color){ 14 | border-color: $color; 15 | color: $color; 16 | } 17 | @mixin label-color-fill($color){ 18 | border-color: $color; 19 | color: $white-color; 20 | background-color: $color; 21 | } -------------------------------------------------------------------------------- /assets/sass/gsdk/_alerts.scss: -------------------------------------------------------------------------------- 1 | .alert{ 2 | border: 0; 3 | border-radius: 0; 4 | color: #FFFFFF; 5 | padding: 10px 15px; 6 | font-size: 14px; 7 | 8 | .container &{ 9 | border-radius: 4px; 10 | 11 | } 12 | .navbar &{ 13 | border-radius: 0; 14 | left: 0; 15 | position: absolute; 16 | right: 0; 17 | top: 85px; 18 | width: 100%; 19 | z-index: 3; 20 | } 21 | .navbar:not(.navbar-transparent) &{ 22 | top: 70px; 23 | } 24 | } 25 | .alert-info{ 26 | background-color: $azure-navbar; 27 | } 28 | .alert-success { 29 | background-color: $green-navbar; 30 | } 31 | .alert-warning { 32 | background-color: $orange-navbar; 33 | } 34 | .alert-danger { 35 | background-color: $red-navbar; 36 | } 37 | 38 | -------------------------------------------------------------------------------- /assets/sass/gsdk/_collapse.scss: -------------------------------------------------------------------------------- 1 | .panel-group{ 2 | .panel { 3 | border: 0; 4 | border-bottom: 1px solid $medium-gray; 5 | box-shadow: none; 6 | } 7 | .panel-default > .panel-heading { 8 | background-color: $white-color; 9 | border-color: $white-color; 10 | } 11 | .panel{ 12 | border-radius: 0; 13 | } 14 | .panel-title{ 15 | font-size: $font-size-h5; 16 | } 17 | .panel-title a:hover, .panel-title a:focus{ 18 | text-decoration: none; 19 | } 20 | .gsdk-collapse{ 21 | display: block; 22 | height: 0px; 23 | visibility: visible; 24 | overflow: hidden; 25 | transition: all 400ms; 26 | } 27 | .panel-title a:hover, 28 | .panel-title a:focus{ 29 | color: $default-states-color; 30 | } 31 | .panel-default > .panel-heading + .panel-collapse.gsdk-collapse > .panel-body { 32 | box-shadow: inset 0 7px 10px -7px rgba(0,0,0,0.14); 33 | } 34 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Creative Tim (http://creative-tim.com/) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /assets/sass/gsdk/_modal.scss: -------------------------------------------------------------------------------- 1 | .modal-header { 2 | border: 0 none; 3 | } 4 | .modal-content { 5 | border: 0 none; 6 | border-radius: 10px; 7 | box-shadow: 0 0 15px rgba(0, 0, 0, 0.15), 0 0 1px 1px rgba(0, 0, 0, 0.1); 8 | } 9 | .modal-dialog { 10 | padding-top: 60px; 11 | } 12 | .modal-footer { 13 | border-top: 0 none; 14 | padding: 5px 10px; 15 | text-align: right; 16 | .btn{ 17 | font-size: 16px; 18 | } 19 | .btn-default.btn-simple{ 20 | font-weight: 400; 21 | } 22 | .divider { 23 | background-color: #DDDDDD; 24 | display: inline-block; 25 | float: inherit; 26 | height: 26px; 27 | margin: 8px -3px; 28 | position: absolute; 29 | width: 1px; 30 | } 31 | 32 | 33 | } 34 | .modal-footer .modal-footer 35 | .modal.fade .modal-dialog { 36 | transform: none; 37 | -webkit-transform: none; 38 | -moz-transform: none; 39 | } 40 | .modal.in { 41 | // opacity: 0.25; 42 | .modal-dialog { 43 | transform: none; 44 | -webkit-transform: none; 45 | -moz-transform: none; 46 | } 47 | } 48 | 49 | .modal-footer 50 | .modal.fade .modal-dialog { 51 | transform: none; 52 | } 53 | 54 | -------------------------------------------------------------------------------- /assets/sass/gsdk/_dropdown.scss: -------------------------------------------------------------------------------- 1 | .dropdown-menu{ 2 | margin: 0; 3 | padding: 0; 4 | border-radius: $border-radius-extreme; 5 | z-index: 9000; 6 | @include box-shadow($dropdown-shadow); 7 | 8 | > li > a { 9 | padding: $padding-base-vertical $padding-base-horizontal; 10 | color: #333333; 11 | } 12 | > li > a:focus{ 13 | outline: 0 !important; 14 | } 15 | 16 | > li:first-child > a{ 17 | border-top-left-radius: $border-radius-extreme; 18 | border-top-right-radius: $border-radius-extreme; 19 | } 20 | 21 | > li:last-child > a{ 22 | border-bottom-left-radius: $border-radius-extreme; 23 | border-bottom-right-radius: $border-radius-extreme; 24 | } 25 | 26 | > li > a:hover, 27 | > li > a:focus { 28 | background-color: $smoke-bg; 29 | color: #333333; 30 | opacity: 1; 31 | text-decoration: none; 32 | } 33 | 34 | > .active > a{ 35 | &, 36 | &:focus, 37 | &:hover{ 38 | background-color: $info-bg; 39 | } 40 | } 41 | } 42 | 43 | 44 | //fix bug for the select items in btn-group 45 | .btn-group.select{ 46 | overflow: hidden; 47 | } 48 | .btn-group.select.open{ 49 | overflow: visible; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /assets/sass/gsdk.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | ========================================================= 4 | * Get Shit Done Kit - v1.4.1.0 5 | ========================================================= 6 | 7 | * Product Page: http://www.creative-tim.com/product/get-shit-done-kit 8 | * Copyright 2017 Creative Tim (http://www.creative-tim.com) 9 | * Licensed under MIT (https://github.com/timcreative/get-shit-done/blob/master/LICENSE.md) 10 | 11 | ========================================================= 12 | 13 | * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 14 | 15 | */ 16 | 17 | 18 | @import "gsdk/variables"; 19 | @import "gsdk/mixins"; 20 | @import "gsdk/typography"; 21 | 22 | // Core CSS 23 | @import "gsdk/misc"; 24 | @import "gsdk/buttons"; 25 | @import "gsdk/inputs"; 26 | @import "gsdk/sliders"; 27 | @import "gsdk/alerts"; 28 | @import "gsdk/labels-and-progress-bars"; 29 | @import "gsdk/tooltips"; 30 | @import "gsdk/checkbox-radio-switch"; 31 | @import "gsdk/navbars"; 32 | 33 | 34 | // Fancy Stuff 35 | @import "gsdk/dropdown"; 36 | @import "gsdk/tabs-navs-pagination"; 37 | @import "gsdk/collapse"; 38 | @import "gsdk/carousel"; 39 | @import "gsdk/modal"; 40 | @import "gsdk/responsive"; 41 | 42 | -------------------------------------------------------------------------------- /assets/sass/gsdk/_labels-and-progress-bars.scss: -------------------------------------------------------------------------------- 1 | /* Labels & Progress-bar */ 2 | .label{ 3 | padding: 0.2em 0.6em 0.2em; 4 | border: 1px solid #999999; 5 | border-radius: 3px; 6 | color: #999999; 7 | background-color: #FFFFFF; 8 | font-weight: 500; 9 | font-size: 11px; 10 | text-transform: uppercase; 11 | display: inline-block; 12 | margin-bottom: 3px; 13 | } 14 | .label-primary{ 15 | border-color: $primary-color; 16 | color: $primary-color; 17 | } 18 | .label-info{ 19 | border-color: $info-color; 20 | color: $info-color; 21 | } 22 | .label-success{ 23 | border-color: $success-color; 24 | color: $success-color; 25 | } 26 | .label-warning{ 27 | border-color: $warning-color; 28 | color: $warning-color; 29 | } 30 | .label-danger{ 31 | border-color: $danger-color; 32 | color: $danger-color; 33 | } 34 | .label.label-fill{ 35 | color: #FFFFFF; 36 | } 37 | .label-primary.label-fill, .progress-bar, .progress-bar-primary{ 38 | background-color: $primary-color; 39 | } 40 | .label-info.label-fill, .progress-bar-info{ 41 | background-color: $info-color; 42 | } 43 | .label-success.label-fill, .progress-bar-success{ 44 | background-color: $success-color; 45 | } 46 | .label-warning.label-fill, .progress-bar-warning{ 47 | background-color: $warning-color; 48 | } 49 | .label-danger.label-fill, .progress-bar-danger{ 50 | background-color: $danger-color; 51 | } 52 | .label-default.label-fill{ 53 | background-color: #999999; 54 | } 55 | .progress { 56 | background-color: #E5E5E5; 57 | border-radius: 3px; 58 | box-shadow: none; 59 | height: 4px; 60 | } 61 | .progress-thin{ 62 | height: 2px; 63 | } -------------------------------------------------------------------------------- /assets/sass/gsdk/mixins/_buttons.scss: -------------------------------------------------------------------------------- 1 | // Mixin for generating new styles 2 | @mixin btn-styles($btn-color, $btn-states-color) { 3 | border-color: $btn-color; 4 | color: $btn-color; 5 | 6 | &:hover, 7 | &:focus, 8 | &:active, 9 | &.active, 10 | &:active:focus, 11 | &:active:hover, 12 | &.active:focus, 13 | &.active:hover, 14 | .open > &.dropdown-toggle, 15 | .open > &.dropdown-toggle:focus, 16 | .open > &.dropdown-toggle:hover { 17 | background-color: $transparent-bg; 18 | color: $btn-states-color; 19 | border-color: $btn-states-color; 20 | } 21 | 22 | &.disabled, 23 | &:disabled, 24 | &[disabled], 25 | fieldset[disabled] & { 26 | &, 27 | &:hover, 28 | &:focus, 29 | &.focus, 30 | &:active, 31 | &.active { 32 | background-color: $transparent-bg; 33 | border-color: $btn-color; 34 | } 35 | } 36 | 37 | 38 | &.btn-fill { 39 | color: $white-color; 40 | background-color: $btn-color; 41 | @include opacity(1); 42 | 43 | &:hover, 44 | &:focus, 45 | &:active, 46 | &.active, 47 | .open > &.dropdown-toggle{ 48 | background-color: $btn-states-color; 49 | color: $white-color; 50 | } 51 | 52 | .caret{ 53 | border-top-color: $white-color; 54 | } 55 | } 56 | 57 | .caret{ 58 | border-top-color: $btn-color; 59 | } 60 | } 61 | 62 | 63 | @mixin btn-size($padding-vertical, $padding-horizontal, $font-size, $border){ 64 | font-size: $font-size; 65 | border-radius: $border; 66 | padding: $padding-vertical $padding-horizontal; 67 | 68 | &.btn-round{ 69 | padding: $padding-vertical + 1 $padding-horizontal; 70 | } 71 | 72 | &.btn-simple{ 73 | padding: $padding-vertical + 2 $padding-horizontal; 74 | } 75 | 76 | } -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
96 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
97 | 98 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
96 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
97 | 98 |