seriously_simple_static_starter 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +39 -0
  4. data/_includes/cards.html +27 -0
  5. data/_includes/feature-block.html +24 -0
  6. data/_includes/footer.html +11 -0
  7. data/_includes/ga-lite.html +5 -0
  8. data/_includes/head.html +39 -0
  9. data/_includes/header.html +34 -0
  10. data/_includes/latest-posts.html +28 -0
  11. data/_includes/navbar.html +40 -0
  12. data/_includes/slider.html +41 -0
  13. data/_layouts/base.html +22 -0
  14. data/_layouts/default.html +4 -0
  15. data/_layouts/flow.html +25 -0
  16. data/_layouts/page.html +5 -0
  17. data/_layouts/post.html +11 -0
  18. data/_sass/_animation.scss +68 -0
  19. data/_sass/_feature-block.scss +5 -0
  20. data/_sass/_fontello.scss +46 -0
  21. data/_sass/_header.scss +7 -0
  22. data/_sass/_highlighter.scss +84 -0
  23. data/_sass/_inherited.scss +39 -0
  24. data/_sass/_navbar.scss +188 -0
  25. data/_sass/_theme.scss +397 -0
  26. data/_sass/_variables.scss +3 -0
  27. data/_sass/animate.scss +3625 -0
  28. data/_sass/bootstrap/_alert.scss +51 -0
  29. data/_sass/bootstrap/_badge.scss +47 -0
  30. data/_sass/bootstrap/_breadcrumb.scss +38 -0
  31. data/_sass/bootstrap/_button-group.scss +166 -0
  32. data/_sass/bootstrap/_buttons.scss +143 -0
  33. data/_sass/bootstrap/_card.scss +270 -0
  34. data/_sass/bootstrap/_carousel.scss +191 -0
  35. data/_sass/bootstrap/_close.scss +34 -0
  36. data/_sass/bootstrap/_code.scss +56 -0
  37. data/_sass/bootstrap/_custom-forms.scss +297 -0
  38. data/_sass/bootstrap/_dropdown.scss +131 -0
  39. data/_sass/bootstrap/_forms.scss +333 -0
  40. data/_sass/bootstrap/_functions.scss +86 -0
  41. data/_sass/bootstrap/_grid.scss +52 -0
  42. data/_sass/bootstrap/_images.scss +42 -0
  43. data/_sass/bootstrap/_input-group.scss +159 -0
  44. data/_sass/bootstrap/_jumbotron.scss +16 -0
  45. data/_sass/bootstrap/_list-group.scss +115 -0
  46. data/_sass/bootstrap/_media.scss +8 -0
  47. data/_sass/bootstrap/_mixins.scss +42 -0
  48. data/_sass/bootstrap/_modal.scss +168 -0
  49. data/_sass/bootstrap/_nav.scss +118 -0
  50. data/_sass/bootstrap/_navbar.scss +311 -0
  51. data/_sass/bootstrap/_pagination.scss +77 -0
  52. data/_sass/bootstrap/_popover.scss +183 -0
  53. data/_sass/bootstrap/_print.scss +124 -0
  54. data/_sass/bootstrap/_progress.scss +33 -0
  55. data/_sass/bootstrap/_reboot.scss +482 -0
  56. data/_sass/bootstrap/_root.scss +19 -0
  57. data/_sass/bootstrap/_tables.scss +180 -0
  58. data/_sass/bootstrap/_tooltip.scss +115 -0
  59. data/_sass/bootstrap/_transitions.scss +36 -0
  60. data/_sass/bootstrap/_type.scss +125 -0
  61. data/_sass/bootstrap/_utilities.scss +14 -0
  62. data/_sass/bootstrap/_variables.scss +894 -0
  63. data/_sass/bootstrap/bootstrap-grid.scss +32 -0
  64. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  65. data/_sass/bootstrap/bootstrap.scss +42 -0
  66. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  67. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  68. data/_sass/bootstrap/mixins/_badge.scss +12 -0
  69. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  70. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  71. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  72. data/_sass/bootstrap/mixins/_buttons.scss +109 -0
  73. data/_sass/bootstrap/mixins/_caret.scss +65 -0
  74. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  75. data/_sass/bootstrap/mixins/_float.scss +11 -0
  76. data/_sass/bootstrap/mixins/_forms.scss +137 -0
  77. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  78. data/_sass/bootstrap/mixins/_grid-framework.scss +67 -0
  79. data/_sass/bootstrap/mixins/_grid.scss +52 -0
  80. data/_sass/bootstrap/mixins/_hover.scss +39 -0
  81. data/_sass/bootstrap/mixins/_image.scss +36 -0
  82. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  83. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  84. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  85. data/_sass/bootstrap/mixins/_navbar-align.scss +10 -0
  86. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  87. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  88. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  89. data/_sass/bootstrap/mixins/_screen-reader.scss +35 -0
  90. data/_sass/bootstrap/mixins/_size.scss +6 -0
  91. data/_sass/bootstrap/mixins/_table-row.scss +30 -0
  92. data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
  93. data/_sass/bootstrap/mixins/_text-hide.scss +9 -0
  94. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  95. data/_sass/bootstrap/mixins/_transition.scss +9 -0
  96. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  97. data/_sass/bootstrap/utilities/_align.scss +8 -0
  98. data/_sass/bootstrap/utilities/_background.scss +19 -0
  99. data/_sass/bootstrap/utilities/_borders.scss +59 -0
  100. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  101. data/_sass/bootstrap/utilities/_display.scss +38 -0
  102. data/_sass/bootstrap/utilities/_embed.scss +52 -0
  103. data/_sass/bootstrap/utilities/_flex.scss +46 -0
  104. data/_sass/bootstrap/utilities/_float.scss +9 -0
  105. data/_sass/bootstrap/utilities/_position.scss +36 -0
  106. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  107. data/_sass/bootstrap/utilities/_sizing.scss +12 -0
  108. data/_sass/bootstrap/utilities/_spacing.scss +51 -0
  109. data/_sass/bootstrap/utilities/_text.scss +52 -0
  110. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  111. data/assets/css/critical.scss +5 -0
  112. data/assets/css/dist.scss +47 -0
  113. data/assets/fonts/fontello/fontello.eot +0 -0
  114. data/assets/fonts/fontello/fontello.svg +12 -0
  115. data/assets/fonts/fontello/fontello.ttf +0 -0
  116. data/assets/fonts/fontello/fontello.woff +0 -0
  117. data/assets/fonts/fontello/fontello.woff2 +0 -0
  118. data/assets/fonts/lato/bold/bold.eot +0 -0
  119. data/assets/fonts/lato/bold/bold.svg +2835 -0
  120. data/assets/fonts/lato/bold/bold.ttf +0 -0
  121. data/assets/fonts/lato/bold/bold.woff +0 -0
  122. data/assets/fonts/lato/bold/bold.woff2 +0 -0
  123. data/assets/fonts/lato/regular/regular.eot +0 -0
  124. data/assets/fonts/lato/regular/regular.svg +435 -0
  125. data/assets/fonts/lato/regular/regular.ttf +0 -0
  126. data/assets/fonts/lato/regular/regular.woff +0 -0
  127. data/assets/fonts/lato/regular/regular.woff2 +0 -0
  128. data/assets/images/abstract-bg.jpg +0 -0
  129. data/assets/images/abstract-lines.jpg +0 -0
  130. data/assets/images/marketing.jpg +0 -0
  131. data/assets/images/ssss-resized.png +0 -0
  132. data/assets/images/ssss.png +0 -0
  133. data/assets/images/tech-1495181_1920.jpg +0 -0
  134. data/assets/js/app/main.js +64 -0
  135. data/assets/js/bundle.js +7 -0
  136. data/assets/js/vendor/_popper.js +5 -0
  137. data/assets/js/vendor/bootstrap.js +7 -0
  138. data/assets/js/vendor/clipboard.js +7 -0
  139. data/assets/js/vendor/jquery.js +2 -0
  140. data/assets/js/vendor/lazysizes.min.js +1 -0
  141. data/assets/js/vendor/ls.unveilhooks.min.js +2 -0
  142. metadata +283 -0
@@ -0,0 +1,5 @@
1
+ .feature__block {
2
+ .block__image img {
3
+ border-radius: 5px;
4
+ }
5
+ }
@@ -0,0 +1,46 @@
1
+ /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
2
+ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
3
+ /*
4
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
5
+ @font-face {
6
+ font-family: 'fontello';
7
+ src: url('../font/fontello.svg?53614618#fontello') format('svg');
8
+ }
9
+ }
10
+ */
11
+
12
+ [class^="icon-"]:before, [class*=" icon-"]:before {
13
+ font-family: "fontello";
14
+ font-style: normal;
15
+ font-weight: normal;
16
+ speak: none;
17
+ display: inline-block;
18
+ text-decoration: inherit;
19
+ width: 1em;
20
+ margin-right: .2em;
21
+ text-align: center;
22
+ /* opacity: .8; */
23
+
24
+ /* For safety - reset parent styles, that can break glyph codes*/
25
+ font-variant: normal;
26
+ text-transform: none;
27
+
28
+ /* fix buttons height, for twitter bootstrap */
29
+ line-height: 1em;
30
+
31
+ /* Animation center compensation - margins should be symmetric */
32
+ /* remove if not needed */
33
+ margin-left: .2em;
34
+
35
+ /* you can be more comfortable with increased icons size */
36
+ /* font-size: 120%; */
37
+
38
+ /* Font smoothing. That was taken from TWBS */
39
+ -webkit-font-smoothing: antialiased;
40
+ -moz-osx-font-smoothing: grayscale;
41
+
42
+ /* Uncomment for 3D effect */
43
+ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
44
+ }
45
+
46
+ .icon-up-open:before { content: '\e800'; } /* '' */
@@ -0,0 +1,7 @@
1
+ header {
2
+ .jumbotron {
3
+ h1 {
4
+ padding-top:100px;
5
+ }
6
+ }
7
+ }
@@ -0,0 +1,84 @@
1
+ .highlight pre { background-color: #272822; color:white; }
2
+ .highlight .hll { background-color: #272822; }
3
+ .highlight .c { color: #75715e } /* Comment */
4
+ .highlight .err { color: #960050; background-color: #1e0010 } /* Error */
5
+ .highlight .k { color: #66d9ef } /* Keyword */
6
+ .highlight .l { color: #ae81ff } /* Literal */
7
+ .highlight .n { color: #f8f8f2 } /* Name */
8
+ .highlight .o { color: #f92672 } /* Operator */
9
+ .highlight .p { color: #f8f8f2 } /* Punctuation */
10
+ .highlight .cm { color: #75715e } /* Comment.Multiline */
11
+ .highlight .cp { color: #75715e } /* Comment.Preproc */
12
+ .highlight .c1 { color: #75715e } /* Comment.Single */
13
+ .highlight .cs { color: #75715e } /* Comment.Special */
14
+ .highlight .ge { font-style: italic } /* Generic.Emph */
15
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
16
+ .highlight .kc { color: #66d9ef } /* Keyword.Constant */
17
+ .highlight .kd { color: #66d9ef } /* Keyword.Declaration */
18
+ .highlight .kn { color: #f92672 } /* Keyword.Namespace */
19
+ .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
20
+ .highlight .kr { color: #66d9ef } /* Keyword.Reserved */
21
+ .highlight .kt { color: #66d9ef } /* Keyword.Type */
22
+ .highlight .ld { color: #e6db74 } /* Literal.Date */
23
+ .highlight .m { color: #ae81ff } /* Literal.Number */
24
+ .highlight .s { color: #e6db74 } /* Literal.String */
25
+ .highlight .na { color: #a6e22e } /* Name.Attribute */
26
+ .highlight .nb { color: #f8f8f2 } /* Name.Builtin */
27
+ .highlight .nc { color: #a6e22e } /* Name.Class */
28
+ .highlight .no { color: #66d9ef } /* Name.Constant */
29
+ .highlight .nd { color: #a6e22e } /* Name.Decorator */
30
+ .highlight .ni { color: #f8f8f2 } /* Name.Entity */
31
+ .highlight .ne { color: #a6e22e } /* Name.Exception */
32
+ .highlight .nf { color: #a6e22e } /* Name.Function */
33
+ .highlight .nl { color: #f8f8f2 } /* Name.Label */
34
+ .highlight .nn { color: #f8f8f2 } /* Name.Namespace */
35
+ .highlight .nx { color: #a6e22e } /* Name.Other */
36
+ .highlight .py { color: #f8f8f2 } /* Name.Property */
37
+ .highlight .nt { color: #f92672 } /* Name.Tag */
38
+ .highlight .nv { color: #f8f8f2 } /* Name.Variable */
39
+ .highlight .ow { color: #f92672 } /* Operator.Word */
40
+ .highlight .w { color: #f8f8f2 } /* Text.Whitespace */
41
+ .highlight .mf { color: #ae81ff } /* Literal.Number.Float */
42
+ .highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
43
+ .highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
44
+ .highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
45
+ .highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
46
+ .highlight .sc { color: #e6db74 } /* Literal.String.Char */
47
+ .highlight .sd { color: #e6db74 } /* Literal.String.Doc */
48
+ .highlight .s2 { color: #e6db74 } /* Literal.String.Double */
49
+ .highlight .se { color: #ae81ff } /* Literal.String.Escape */
50
+ .highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
51
+ .highlight .si { color: #e6db74 } /* Literal.String.Interpol */
52
+ .highlight .sx { color: #e6db74 } /* Literal.String.Other */
53
+ .highlight .sr { color: #e6db74 } /* Literal.String.Regex */
54
+ .highlight .s1 { color: #e6db74 } /* Literal.String.Single */
55
+ .highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
56
+ .highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
57
+ .highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
58
+ .highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
59
+ .highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
60
+ .highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
61
+
62
+ .highlight .gh { } /* Generic Heading & Diff Header */
63
+ .highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
64
+ .highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
65
+ .highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
66
+
67
+
68
+ pre.highlight {
69
+ padding: 15px;
70
+ position: relative;
71
+ }
72
+ pre.highlight::-webkit-scrollbar{
73
+ height: 10px;
74
+ width: 4px;
75
+ background: #d9d9da;
76
+ }
77
+ pre.highlight::-webkit-scrollbar-thumb:horizontal{
78
+ background: #212528;
79
+ border-radius: 0;
80
+ }
81
+
82
+ .highlight pre {
83
+ background-color: #212528;
84
+ }
@@ -0,0 +1,39 @@
1
+ $z-index-navbar: 10;
2
+ $footer-height: 60px;
3
+
4
+
5
+ .site-header {
6
+ left: 0;
7
+ position: fixed;
8
+ right: 0;
9
+ top: 0;
10
+ z-index: $z-index-navbar;
11
+ }
12
+
13
+ body > .site-header + .container {
14
+ padding: 60px 15px 0;
15
+ }
16
+
17
+ .container {
18
+ max-width: 720px;
19
+ }
20
+
21
+ .site-footer {
22
+ background-color: #ccc;
23
+ bottom: 0;
24
+ height: $footer-height;
25
+ line-height: 60px;
26
+ position: absolute;
27
+ width: 100%;
28
+
29
+ ul {
30
+ display: inline-block;
31
+ padding: 0;
32
+ margin: 0;
33
+
34
+ > li {
35
+ display: inline-block;
36
+ list-style-type: none;
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,188 @@
1
+
2
+ header {
3
+ overflow:hidden;
4
+ height: auto;
5
+ background-color: $primary;
6
+ background-color: #36a1f0;
7
+ background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20enable-background%3D%22new%200%200%202560%201600%22%20version%3D%221.1%22%20viewBox%3D%220%200%202560%201600%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cstyle%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st0%7Bfill%3A%2336a1f0%3B%7D%0D%0A%20%20%20%20.st1%7Bfill%3Aurl%28%23a%29%3B%7D%0D%0A%20%20%20%20polygon%7Bfill%3A%2352a7e7%7D%3B%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpattern%20id%3D%22a%22%20width%3D%22319.998%22%20height%3D%22319.998%22%20overflow%3D%22visible%22%20patternUnits%3D%22userSpaceOnUse%22%20viewBox%3D%220%20-399.997%20319.998%20319.998%22%3E%0D%0A%09%09%3Crect%20class%3D%22st0%22%20y%3D%22-400%22%20width%3D%22320%22%20height%3D%22320%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22240%20-79.999%20240%200%20160%20-79.999%20160%20-160%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22320%20-160%20240%20-79.999%20240%20-160%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%2279.999%20-79.999%2079.999%200%200%20-79.999%200%20-160%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22160%20-160%2079.999%20-79.999%2079.999%20-160%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22320%20-240%20320%20-160%20240%20-240%20240%20-320%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22160%20-240%20160%20-160%2079.999%20-240%2079.999%20-320%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22240%20-320%20160%20-240%20160%20-320%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22240%20-240%20240%20-160%20160%20-160%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%2279.999%20-320%200%20-240%200%20-320%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%2279.999%20-240%2079.999%20-160%200%20-160%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22240%20-400%20240%20-320%20160%20-400%20160%20-480%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22320%20-400%20320%20-320%20240%20-320%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%2279.999%20-400%2079.999%20-320%200%20-400%200%20-480%22%2F%3E%0D%0A%09%09%09%3Cpolygon%20points%3D%22160%20-400%20160%20-320%2079.999%20-320%22%2F%3E%0D%0A%3C%2Fpattern%3E%0D%0A%3Crect%20class%3D%22st1%22%20width%3D%222560%22%20height%3D%221600%22%2F%3E%0D%0A%3C%2Fsvg%3E");
8
+ .jumbotron {
9
+ background-color: transparent;
10
+ padding-left: 0px;
11
+ padding-right:0px;
12
+ }
13
+ &.background_image {
14
+ background: transparent !important;
15
+ img.header__image {
16
+ filter: brightness(0.4);
17
+ position: absolute;
18
+ z-index: -1;
19
+ height: 100%;
20
+ width: 100%;
21
+ object-fit: cover;
22
+ }
23
+ }
24
+ }
25
+ img.navbar-brand {
26
+ height: 40px;
27
+ padding: 0 0;
28
+ }
29
+
30
+ @-webkit-keyframes fadeInUp {
31
+ from {
32
+ opacity: 0;
33
+ -webkit-transform: translate3d(0, 10px, 0);
34
+ transform: translate3d(0, 10px, 0);
35
+ }
36
+
37
+ to {
38
+ opacity: 1;
39
+ -webkit-transform: translate3d(0, 0, 0);
40
+ transform: translate3d(0, 0, 0);
41
+ }
42
+ }
43
+
44
+ @keyframes fadeInUp {
45
+ from {
46
+ opacity: 0;
47
+ -webkit-transform: translate3d(0, 10px, 0);
48
+ transform: translate3d(0, 10px, 0);
49
+ }
50
+
51
+ to {
52
+ opacity: 1;
53
+ -webkit-transform: translate3d(0, 0, 0);
54
+ transform: translate3d(0, 0, 0);
55
+ }
56
+ }
57
+
58
+ #main_container {
59
+ padding-top: 70px;
60
+ background-color: #fff;
61
+ }
62
+ .navbar {
63
+ border-radius: 0;
64
+ -webkit-transition: all 0.3s ease-out;
65
+ -moz-transition: all 0.3s ease-out;
66
+ -o-transition: all 0.3s ease-out;
67
+ transition: all 0.3s ease-out;
68
+ background-color: transparent;
69
+ @include media-breakpoint-down(sm) {
70
+ a.dropdown-item {
71
+ padding: 1rem 0.5rem;
72
+ }
73
+ }
74
+ .nav-link {
75
+ font-size: 1.4rem;
76
+ &.dropdown-toggle{
77
+ &:hover + .dropdown-menu {
78
+ -webkit-animation-name: fadeInUp;
79
+ animation-name: fadeInUp;
80
+ }
81
+ }
82
+ }
83
+ .dropdown.show {
84
+ .dropdown-menu {
85
+ opacity: 1;
86
+ }
87
+ }
88
+ .dropdown-menu {
89
+ opacity: 0;
90
+ -webkit-box-shadow: 0px 0px 27px -7px rgba(0,0,0,0.75);
91
+ -moz-box-shadow: 0px 0px 27px -7px rgba(0,0,0,0.75);
92
+ box-shadow: 0px 0px 27px -7px rgba(0,0,0,0.75);
93
+ &:hover {
94
+ opacity: 1;
95
+ }
96
+ &::before {
97
+ border-color: rgba(184, 184, 184, 0);
98
+ border-bottom-color: #b8b8b8;
99
+ border-width: 6px;
100
+ background-clip: padding-box;
101
+ bottom: 100%;
102
+ right: 15px;
103
+ border: solid transparent;
104
+ content: " ";
105
+ height: 0;
106
+ width: 0;
107
+ position: absolute;
108
+ pointer-events: none;
109
+ }
110
+ }
111
+
112
+ padding-top: 30px;
113
+ padding-bottom: 30px;
114
+ .dropdown-toggle::after {
115
+ display: none;
116
+ }
117
+ }
118
+ .icon-bar {
119
+ width: 22px;
120
+ height: 2px;
121
+ background-color: #fff;
122
+ display: block;
123
+ transition: all 0.2s;
124
+ margin-top: 4px
125
+ }
126
+ nav.navbar.navbar-dark.navbar-expand-md.fixed-top.bg-faded:hover {
127
+ background-color:$primary;
128
+ }
129
+ .navbar-toggler {
130
+ border: none;
131
+ background: transparent !important;
132
+ }
133
+
134
+ .navbar-toggler .top-bar {
135
+ transform: rotate(45deg);
136
+ transform-origin: 10% 10%;
137
+ }
138
+
139
+ .navbar-toggler .middle-bar {
140
+ opacity: 0;
141
+ }
142
+
143
+ .navbar-toggler .bottom-bar {
144
+ transform: rotate(-45deg);
145
+ transform-origin: 10% 90%;
146
+ }
147
+
148
+ .navbar-toggler.collapsed .top-bar {
149
+ transform: rotate(0);
150
+ }
151
+
152
+ .navbar-toggler.collapsed .middle-bar {
153
+ opacity: 1;
154
+ }
155
+
156
+ .navbar-toggler.collapsed .bottom-bar {
157
+ transform: rotate(0);
158
+ }
159
+ .affix {
160
+ position: fixed;
161
+ top: 0;
162
+ right: 0;
163
+ left: 0;
164
+ z-index: 1030;
165
+ padding-top: 15px;
166
+ padding-bottom: 15px;
167
+ }
168
+ /* fixed to top styles */
169
+ .affix.navbar {
170
+ background-color: $primary;
171
+ }
172
+ .affix.navbar .nav-item>a,
173
+ .affix.navbar .navbar-brand {
174
+ color: #fff;
175
+ }
176
+ /* navbar collapsing */
177
+ @media(max-width:34em) {
178
+ .navbar .navbar-nav>.nav-item {
179
+ float: none;
180
+ margin-left: .1rem;
181
+ }
182
+ .navbar .navbar-nav {
183
+ float:none !important;
184
+ }
185
+ .navbar .collapse.in, .navbar .collapsing {
186
+ clear:both;
187
+ }
188
+ }
data/_sass/_theme.scss ADDED
@@ -0,0 +1,397 @@
1
+ ::-moz-selection { background: $primary; }
2
+ ::selection { background: $primary; }
3
+
4
+ // .btn {
5
+ // font-size: 1rem;
6
+ // padding: 10px 30px;
7
+ // }
8
+ .card {
9
+ margin-top:30px;
10
+ }
11
+ .card__block {
12
+ padding: 0 50px;
13
+ .card {
14
+ .card-img-top {
15
+ overflow: hidden;
16
+ }
17
+ overflow: hidden;
18
+ &:hover {
19
+ margin-top: 25px;
20
+ -webkit-box-shadow: 0px 0px 27px -7px rgba(0,0,0,0.75);
21
+ -moz-box-shadow: 0px 0px 27px -7px rgba(0,0,0,0.75);
22
+ box-shadow: 0px 0px 27px -7px rgba(0,0,0,0.75);
23
+ img {
24
+ filter: brightness(100%);
25
+ }
26
+ }
27
+ img {
28
+ &:hover {
29
+ filter: brightness(100%);
30
+ }
31
+ filter: brightness(90%);
32
+ transition: all 1s ease-in-out;
33
+ }
34
+ transition: all 300ms ease-in-out;
35
+ }
36
+ }
37
+ .padded {
38
+ padding: 50px 15px;
39
+ }
40
+ section.container ul {
41
+ font-size: 20px;
42
+ }
43
+ section.container p {
44
+ font-size: 22px;
45
+ }
46
+ .container {
47
+ max-width: 1200px !important;
48
+ }
49
+ body{
50
+ font-family: 'Dosis';
51
+ background-color: #fff;
52
+ }
53
+ .dropdown-menu {
54
+ margin-top: -1px;
55
+ }
56
+ .container .col-md-4 a:hover {
57
+ text-decoration: none;
58
+ }
59
+
60
+ .container .col-md-4 a:hover img {
61
+ opacity: .8;
62
+ }
63
+
64
+ .jumbotron{
65
+ background-color: #353940;
66
+ }
67
+ div#main-container {
68
+ background-color: white;
69
+ }
70
+ #wrapper .site-footer {
71
+ background-color: #212528;
72
+ height: 100%;
73
+ }
74
+ #wrapper .site-footer {
75
+ position: relative;
76
+ }
77
+ #wrapper .darken:after {
78
+ content:"";
79
+ display:block;
80
+ position:absolute;
81
+ top:0;
82
+ bottom:0;
83
+ left:0;
84
+ right:0;
85
+ background:rgba(0,0,0,0.7);
86
+ }
87
+ // Scroll to Top
88
+ /* .testheight Not required - unless testing ;) */
89
+ .testheight {
90
+ height:1200px;
91
+ font-size:20px;
92
+ text-align:center;
93
+ padding:100px 20px;
94
+ }
95
+ .scrolltop {
96
+ display:none;
97
+ width:100%;
98
+ margin:0 auto;
99
+ position:fixed;
100
+ bottom:20px;
101
+ right:10px;
102
+ }
103
+ .scroll {
104
+ position: absolute;
105
+ right: -5px;
106
+ bottom: -15px;
107
+ background: #212529;
108
+ padding: 20px;
109
+ color: white;
110
+ text-align: center;
111
+ margin: 0 0 0 0;
112
+ cursor: pointer;
113
+ transition: 0.5s;
114
+ -moz-transition: 0.5s;
115
+ -webkit-transition: 0.5s;
116
+ -o-transition: 0.5s;
117
+ }
118
+ .scroll:hover {
119
+ background:$gray-800;
120
+ transition: 0.5s;
121
+ -moz-transition: 0.5s;
122
+ -webkit-transition: 0.5s;
123
+ -o-transition: 0.5s;
124
+ }
125
+ .scroll:hover .fa {
126
+ padding-top:-10px;
127
+ }
128
+ .scroll .fa {
129
+ font-size:30px;
130
+ margin-top:-5px;
131
+ margin-left:1px;
132
+ transition: 0.5s;
133
+ -moz-transition: 0.5s;
134
+ -webkit-transition: 0.5s;
135
+ -o-transition: 0.5s;
136
+ }
137
+ body{
138
+ font-family: 'Lato', sans-serif !important;
139
+ }
140
+ //Scroll Bar
141
+ body::-webkit-scrollbar {
142
+ width: 1em;
143
+ }
144
+ body::-webkit-scrollbar-track {
145
+ background-color: #000;
146
+ }
147
+ body::-webkit-scrollbar-thumb {
148
+ background-color: $gray-900;
149
+ }
150
+ .dropdown-menu.collapsing {
151
+ display:block;
152
+ }
153
+
154
+ /* ANIMATED X */
155
+ .navbar-toggler {
156
+ border-color: none;
157
+ }
158
+ .navbar-toggler .top-bar {
159
+ transform: rotate(45deg);
160
+ transform-origin: 10% 10%;
161
+ }
162
+
163
+ .navbar-toggler .middle-bar {
164
+ opacity: 0;
165
+ }
166
+
167
+ .navbar-toggler .bottom-bar {
168
+ transform: rotate(-45deg);
169
+ transform-origin: 10% 90%;
170
+ }
171
+
172
+ /* ANIMATED X COLLAPSED */
173
+
174
+ .navbar-toggler.collapsed .top-bar {
175
+ transform: rotate(0);
176
+ }
177
+
178
+ .navbar-toggler.collapsed .middle-bar {
179
+ opacity: 1;
180
+ }
181
+
182
+ .navbar-toggler.collapsed .bottom-bar {
183
+ transform: rotate(0);
184
+ }
185
+ /* END ANIMATED X */
186
+
187
+ .icon-bar {
188
+ width: 22px;
189
+ height: 2px;
190
+ background-color: #B6B6B6;
191
+ display: block;
192
+ transition: all 0.2s;
193
+ margin-top: 4px
194
+ }
195
+
196
+ .navbar-toggler {
197
+ border: none;
198
+ background: transparent !important;
199
+ }
200
+ //navbar
201
+ .bg-dark{
202
+ background-color: $gray-900 !important;
203
+ }
204
+ .bg-up {
205
+ background-position-y: -300px !important;
206
+ }
207
+
208
+ h2.title {
209
+ font-size: 42px;
210
+ }
211
+ .row.jumbotron.jumbotron-fluid {
212
+ background-position-x: center !important;
213
+ background-attachment: fixed !important;
214
+ background-size: cover !important;
215
+ margin-bottom: 0px;
216
+ background-repeat: no-repeat !important;
217
+ }
218
+ .bg-image {
219
+ background-size: cover !important;
220
+ background-repeat: no-repeat;
221
+ background-position: center center;
222
+ width: 100%;
223
+ height: 100%;
224
+ position: absolute;
225
+ }
226
+ .carousel-item > div{
227
+ height: 400px;
228
+ background-position:center center !important;
229
+ background-size:cover !important;
230
+ }
231
+ button.navbar-toggler {
232
+ outline: none;
233
+ }
234
+ #wrapper a.nav-link:hover {
235
+ color:$primary;
236
+ }
237
+ .navbar-collapse.show, .navbar-collapse.collapsing {
238
+ text-align: center;
239
+ }
240
+
241
+ .navbar-collapse.show .dropdown-menu, .navbar-collapse.collapsing .dropdown-menu {
242
+ text-align: center;
243
+ }
244
+ .dropdown:hover>.dropdown-menu {
245
+ display: block;
246
+ }
247
+ .carousel-item p {
248
+ font-size: 32px;
249
+ }
250
+
251
+ .carousel-item h4 {
252
+ font-size: 40px;
253
+ }
254
+ .flex-content {
255
+ display: flex;
256
+ flex-direction: column;
257
+ align-items: center;
258
+ }
259
+ .flex-container {
260
+ display: flex;
261
+ align-items: center;
262
+ justify-content: center;
263
+ }
264
+ #wrapper ul.services-list li {
265
+ display: block;
266
+ line-height: 23px;
267
+ }
268
+ .site-footer h3 {
269
+ color:#e9e9e9;
270
+ margin-top: 20px;
271
+ }
272
+
273
+ ul.services-list li {
274
+ color:#e9e9e9;
275
+ font-size: 18px;
276
+ }
277
+ #wrapper .strip .col-md-6 {
278
+ color:#e9e9e9;
279
+ }
280
+ #wrapper .strip .col-md-6.left {
281
+ text-align: left;
282
+ }
283
+ #wrapper .strip .col-md-6.right {
284
+ text-align: right;
285
+ }
286
+ #wrapper .strip .col-md-6 span {
287
+ color:#e9e9e9 !important;
288
+ }
289
+ @include media-breakpoint-down(sm) {
290
+ #wrapper .center-sm {
291
+ text-align: center !important;
292
+ }
293
+ .responsive-text {
294
+ font-size: 22px !important;
295
+ }
296
+ .responsive-text-large {
297
+ font-size: 28px !important;
298
+ }
299
+ #wrapper #usp-block p.responsive-text-small {
300
+ font-size: 18px !important;
301
+ }
302
+ .bg-up {
303
+ background-position-y: center !important;
304
+ }
305
+ }
306
+ .site-footer ul > li {
307
+ display: inline-block;
308
+ list-style-type: none;
309
+ margin: 0 2px;
310
+ }
311
+ #wrapper #usp-block p {
312
+ font-size: 24px;
313
+ }
314
+ $spaceamounts: (5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 75, 100); // Adjust this to include the pixel amounts you need.
315
+ $sides: (top, bottom, left, right); // Leave this variable alone
316
+
317
+ @each $space in $spaceamounts {
318
+ @each $side in $sides {
319
+ .m-#{str-slice($side, 0, 1)}-#{$space} {
320
+ margin-#{$side}: #{$space}px !important;
321
+ }
322
+
323
+ .p-#{str-slice($side, 0, 1)}-#{$space} {
324
+ padding-#{$side}: #{$space}px !important;
325
+ }
326
+ }
327
+ }
328
+ p {
329
+ font-size: 18px;
330
+ }
331
+ img.col-image {
332
+ width: auto;
333
+ height: 125px;
334
+ }
335
+ .no-padding {
336
+ padding: 0;
337
+ }
338
+ .bg-image-col h2 {
339
+ z-index: 2;
340
+ color: white;
341
+ margin-top: 20px;
342
+ position: relative;
343
+ }
344
+ .bg-image-col p.responsive-text-small {
345
+ position: relative;
346
+ color: white;
347
+ width: 90%;
348
+ margin: auto;
349
+ }
350
+ .bg-image-col a.btn.btn-primary {
351
+ position: relative;
352
+ margin: 10px;
353
+ }
354
+ .bg-image-col{
355
+ height: 250px;
356
+ }
357
+ .outer {
358
+ height: 100%;
359
+ }
360
+ //about
361
+ img.img-fluid.team.lazyloaded {
362
+ height: 150px;
363
+ }
364
+
365
+ //blog
366
+ .highlighter-rouge > div {
367
+ position: relative;
368
+ }
369
+ .blog-item {
370
+ background-color: #f2f2f2;
371
+ border: 1px solid black;
372
+ margin-bottom:10px;
373
+ overflow: hidden !important;
374
+ }
375
+ .blog-item img {
376
+ height: 250px;
377
+ object-fit: cover;
378
+ background-color: #f2f2f2;
379
+ width: 100%;
380
+ }
381
+ .blog-item h3 {
382
+ position: relative;
383
+ color:black;
384
+ }
385
+ .highlighter-rouge button.btn {
386
+ position: absolute;
387
+ bottom: 0px;
388
+ z-index: 999999;
389
+ right: 0px;
390
+ border-left: 1px solid white;
391
+ border-top: 1px solid white;
392
+ }
393
+ .highlighter-rouge button:focus {outline:0 !important;}
394
+ .highlighter-rouge button.btn:hover {
395
+ background-color:#212529;
396
+ color:white;
397
+ }