jekyll-agency 1.0.4
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/404.html +14 -0
- data/LICENSE.txt +21 -0
- data/README.md +84 -0
- data/_data/navigation.yml +18 -0
- data/_data/sitetext.yml +137 -0
- data/_data/style.yml +8 -0
- data/_includes/about.html +17 -0
- data/_includes/clients.html +14 -0
- data/_includes/contact.html +46 -0
- data/_includes/footer.html +33 -0
- data/_includes/head.html +47 -0
- data/_includes/nav.html +33 -0
- data/_includes/navheader.html +45 -0
- data/_includes/portfolio_grid.html +60 -0
- data/_includes/services.html +29 -0
- data/_includes/team.html +37 -0
- data/_includes/timeline.html +47 -0
- data/_layouts/default.html +27 -0
- data/_layouts/home.html +11 -0
- data/_layouts/page.html +8 -0
- data/_sass/base/_mixins.scss +13 -0
- data/_sass/base/_page.scss +71 -0
- data/_sass/base/_variables.scss +12 -0
- data/_sass/components/_buttons.scss +26 -0
- data/_sass/components/_navbar.scss +73 -0
- data/_sass/layout/_contact.scss +47 -0
- data/_sass/layout/_footer.scss +43 -0
- data/_sass/layout/_masthead.scss +50 -0
- data/_sass/layout/_portfolio.scss +140 -0
- data/_sass/layout/_services.scss +5 -0
- data/_sass/layout/_team.scss +18 -0
- data/_sass/layout/_timeline.scss +178 -0
- data/assets/css/agency.scss +31 -0
- data/assets/css/all.min.css +5 -0
- data/assets/css/bootstrap.min.css +7 -0
- data/assets/css/bootstrap.min.css.map +1 -0
- data/assets/css/webfonts/fa-brands-400.eot +0 -0
- data/assets/css/webfonts/fa-brands-400.svg +3449 -0
- data/assets/css/webfonts/fa-brands-400.ttf +0 -0
- data/assets/css/webfonts/fa-brands-400.woff +0 -0
- data/assets/css/webfonts/fa-brands-400.woff2 +0 -0
- data/assets/css/webfonts/fa-regular-400.eot +0 -0
- data/assets/css/webfonts/fa-regular-400.svg +803 -0
- data/assets/css/webfonts/fa-regular-400.ttf +0 -0
- data/assets/css/webfonts/fa-regular-400.woff +0 -0
- data/assets/css/webfonts/fa-regular-400.woff2 +0 -0
- data/assets/css/webfonts/fa-solid-900.eot +0 -0
- data/assets/css/webfonts/fa-solid-900.svg +4649 -0
- data/assets/css/webfonts/fa-solid-900.ttf +0 -0
- data/assets/css/webfonts/fa-solid-900.woff +0 -0
- data/assets/css/webfonts/fa-solid-900.woff2 +0 -0
- data/assets/img/clients/creative-market.jpg +0 -0
- data/assets/img/clients/designmodo.jpg +0 -0
- data/assets/img/clients/envato.jpg +0 -0
- data/assets/img/clients/themeforest.jpg +0 -0
- data/assets/img/header-bg.jpg +0 -0
- data/assets/img/header.gif +0 -0
- data/assets/img/map-image.png +0 -0
- data/assets/img/portfolio/01-full.jpg +0 -0
- data/assets/img/portfolio/01-thumbnail.jpg +0 -0
- data/assets/img/portfolio/02-full.jpg +0 -0
- data/assets/img/portfolio/02-thumbnail.jpg +0 -0
- data/assets/img/portfolio/03-full.jpg +0 -0
- data/assets/img/portfolio/03-thumbnail.jpg +0 -0
- data/assets/img/portfolio/04-full.jpg +0 -0
- data/assets/img/portfolio/04-thumbnail.jpg +0 -0
- data/assets/img/portfolio/05-full.jpg +0 -0
- data/assets/img/portfolio/05-thumbnail.jpg +0 -0
- data/assets/img/portfolio/06-full.jpg +0 -0
- data/assets/img/portfolio/06-thumbnail.jpg +0 -0
- data/assets/img/team/1.jpg +0 -0
- data/assets/img/team/2.jpg +0 -0
- data/assets/img/team/3.jpg +0 -0
- data/assets/img/timeline/1.jpg +0 -0
- data/assets/img/timeline/2.jpg +0 -0
- data/assets/img/timeline/3.jpg +0 -0
- data/assets/img/timeline/4.jpg +0 -0
- data/assets/js/agency.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/contact_me.js +75 -0
- data/assets/js/jqBootstrapValidation.js +937 -0
- data/assets/js/jquery.easing.min.js +1 -0
- data/assets/js/jquery.min.js +2 -0
- data/index.md +3 -0
- data/legal.md +37 -0
- metadata +172 -0
@@ -0,0 +1,47 @@
|
|
1
|
+
// Styling for the contact section
|
2
|
+
section#contact {
|
3
|
+
background-color: $gray-900;
|
4
|
+
background-image: url("#{$contact-image}");
|
5
|
+
background-repeat: no-repeat;
|
6
|
+
background-position: center;
|
7
|
+
.section-heading {
|
8
|
+
color: $white;
|
9
|
+
}
|
10
|
+
.form-group {
|
11
|
+
margin-bottom: 25px;
|
12
|
+
input,
|
13
|
+
textarea {
|
14
|
+
padding: 20px;
|
15
|
+
}
|
16
|
+
input.form-control {
|
17
|
+
height: auto;
|
18
|
+
}
|
19
|
+
textarea.form-control {
|
20
|
+
height: 248px;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
.form-control:focus {
|
24
|
+
border-color: $primary;
|
25
|
+
box-shadow: none;
|
26
|
+
}
|
27
|
+
::-webkit-input-placeholder {
|
28
|
+
font-weight: 700;
|
29
|
+
color: $gray-400;
|
30
|
+
@include heading-font;
|
31
|
+
}
|
32
|
+
:-moz-placeholder {
|
33
|
+
font-weight: 700;
|
34
|
+
color: $gray-400;
|
35
|
+
@include heading-font;
|
36
|
+
}
|
37
|
+
::-moz-placeholder {
|
38
|
+
font-weight: 700;
|
39
|
+
color: $gray-400;
|
40
|
+
@include heading-font;
|
41
|
+
}
|
42
|
+
:-ms-input-placeholder {
|
43
|
+
font-weight: 700;
|
44
|
+
color: $gray-400;
|
45
|
+
@include heading-font;
|
46
|
+
}
|
47
|
+
}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
// Styling for the footer
|
2
|
+
.footer {
|
3
|
+
padding: 25px 0;
|
4
|
+
text-align: center;
|
5
|
+
span.copyright {
|
6
|
+
font-size: 90%;
|
7
|
+
line-height: 40px;
|
8
|
+
text-transform: none;
|
9
|
+
@include heading-font;
|
10
|
+
}
|
11
|
+
ul.quicklinks {
|
12
|
+
font-size: 90%;
|
13
|
+
line-height: 40px;
|
14
|
+
margin-bottom: 0;
|
15
|
+
text-transform: none;
|
16
|
+
@include heading-font;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
|
20
|
+
ul.social-buttons {
|
21
|
+
margin-bottom: 0;
|
22
|
+
li {
|
23
|
+
a {
|
24
|
+
font-size: 20px;
|
25
|
+
line-height: 50px;
|
26
|
+
display: block;
|
27
|
+
width: 50px;
|
28
|
+
height: 50px;
|
29
|
+
-webkit-transition: all 0.3s;
|
30
|
+
-moz-transition: all 0.3s;
|
31
|
+
transition: all 0.3s;
|
32
|
+
color: white;
|
33
|
+
border-radius: 100%;
|
34
|
+
outline: none;
|
35
|
+
background-color: $gray-900;
|
36
|
+
&:active,
|
37
|
+
&:focus,
|
38
|
+
&:hover {
|
39
|
+
background-color: $primary;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
@@ -0,0 +1,50 @@
|
|
1
|
+
// Styling for the masthead
|
2
|
+
header.masthead {
|
3
|
+
text-align: center;
|
4
|
+
color: white;
|
5
|
+
background-image: url("#{$header-image}");
|
6
|
+
background-repeat: no-repeat;
|
7
|
+
background-attachment: scroll;
|
8
|
+
background-position: center center;
|
9
|
+
background-size: cover;
|
10
|
+
.intro-text {
|
11
|
+
padding-top: 150px;
|
12
|
+
padding-bottom: 100px;
|
13
|
+
.intro-lead-in {
|
14
|
+
font-size: 22px;
|
15
|
+
font-style: italic;
|
16
|
+
line-height: 22px;
|
17
|
+
margin-bottom: 25px;
|
18
|
+
@include serif-font;
|
19
|
+
}
|
20
|
+
.intro-heading {
|
21
|
+
font-size: 50px;
|
22
|
+
font-weight: 700;
|
23
|
+
line-height: 50px;
|
24
|
+
margin-bottom: 25px;
|
25
|
+
@include heading-font;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
@media(min-width:768px) {
|
30
|
+
header.masthead {
|
31
|
+
.intro-text {
|
32
|
+
padding-top: 300px;
|
33
|
+
padding-bottom: 200px;
|
34
|
+
.intro-lead-in {
|
35
|
+
font-size: 40px;
|
36
|
+
font-style: italic;
|
37
|
+
line-height: 40px;
|
38
|
+
margin-bottom: 25px;
|
39
|
+
@include serif-font;
|
40
|
+
}
|
41
|
+
.intro-heading {
|
42
|
+
font-size: 75px;
|
43
|
+
font-weight: 700;
|
44
|
+
line-height: 75px;
|
45
|
+
margin-bottom: 50px;
|
46
|
+
@include heading-font;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
@@ -0,0 +1,140 @@
|
|
1
|
+
// Styling for the portfolio section
|
2
|
+
#portfolio {
|
3
|
+
.portfolio-item {
|
4
|
+
right: 0;
|
5
|
+
margin: 0 0 15px;
|
6
|
+
.portfolio-link {
|
7
|
+
position: relative;
|
8
|
+
display: block;
|
9
|
+
max-width: 400px;
|
10
|
+
margin: 0 auto;
|
11
|
+
cursor: pointer;
|
12
|
+
.portfolio-hover {
|
13
|
+
position: absolute;
|
14
|
+
width: 100%;
|
15
|
+
height: 100%;
|
16
|
+
-webkit-transition: all ease 0.5s;
|
17
|
+
-moz-transition: all ease 0.5s;
|
18
|
+
transition: all ease 0.5s;
|
19
|
+
opacity: 0;
|
20
|
+
background: fade-out($primary, .1);
|
21
|
+
&:hover {
|
22
|
+
opacity: 1;
|
23
|
+
}
|
24
|
+
.portfolio-hover-content {
|
25
|
+
font-size: 20px;
|
26
|
+
position: absolute;
|
27
|
+
top: 50%;
|
28
|
+
width: 100%;
|
29
|
+
height: 20px;
|
30
|
+
margin-top: -12px;
|
31
|
+
text-align: center;
|
32
|
+
color: white;
|
33
|
+
i {
|
34
|
+
margin-top: -12px;
|
35
|
+
}
|
36
|
+
h3,
|
37
|
+
h4 {
|
38
|
+
margin: 0;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
.portfolio-caption {
|
44
|
+
max-width: 400px;
|
45
|
+
margin: 0 auto;
|
46
|
+
padding: 25px;
|
47
|
+
text-align: center;
|
48
|
+
background-color: $white;
|
49
|
+
h4 {
|
50
|
+
margin: 0;
|
51
|
+
text-transform: none;
|
52
|
+
}
|
53
|
+
p {
|
54
|
+
font-size: 16px;
|
55
|
+
font-style: italic;
|
56
|
+
margin: 0;
|
57
|
+
@include serif-font;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
61
|
+
* {
|
62
|
+
z-index: 2;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
@media(min-width:767px) {
|
66
|
+
#portfolio {
|
67
|
+
.portfolio-item {
|
68
|
+
margin: 0 0 30px;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
.portfolio-modal {
|
74
|
+
.modal-dialog {
|
75
|
+
margin: 1rem;
|
76
|
+
max-width: 100vw;
|
77
|
+
}
|
78
|
+
.modal-content {
|
79
|
+
padding: 100px 0;
|
80
|
+
text-align: center;
|
81
|
+
h2 {
|
82
|
+
font-size: 3em;
|
83
|
+
margin-bottom: 15px;
|
84
|
+
}
|
85
|
+
p {
|
86
|
+
margin-bottom: 30px;
|
87
|
+
}
|
88
|
+
p.item-intro {
|
89
|
+
font-size: 16px;
|
90
|
+
font-style: italic;
|
91
|
+
margin: 20px 0 30px;
|
92
|
+
@include serif-font;
|
93
|
+
}
|
94
|
+
ul.list-inline {
|
95
|
+
margin-top: 0;
|
96
|
+
margin-bottom: 30px;
|
97
|
+
}
|
98
|
+
img {
|
99
|
+
margin-bottom: 30px;
|
100
|
+
}
|
101
|
+
button {
|
102
|
+
cursor: pointer;
|
103
|
+
}
|
104
|
+
}
|
105
|
+
.close-modal {
|
106
|
+
position: absolute;
|
107
|
+
top: 25px;
|
108
|
+
right: 25px;
|
109
|
+
width: 75px;
|
110
|
+
height: 75px;
|
111
|
+
cursor: pointer;
|
112
|
+
background-color: transparent;
|
113
|
+
&:hover {
|
114
|
+
opacity: 0.3;
|
115
|
+
}
|
116
|
+
.lr {
|
117
|
+
/* Safari and Chrome */
|
118
|
+
z-index: 1051;
|
119
|
+
width: 1px;
|
120
|
+
height: 75px;
|
121
|
+
margin-left: 35px;
|
122
|
+
/* IE 9 */
|
123
|
+
-webkit-transform: rotate(45deg);
|
124
|
+
-ms-transform: rotate(45deg);
|
125
|
+
transform: rotate(45deg);
|
126
|
+
background-color: $gray-900;
|
127
|
+
.rl {
|
128
|
+
/* Safari and Chrome */
|
129
|
+
z-index: 1052;
|
130
|
+
width: 1px;
|
131
|
+
height: 75px;
|
132
|
+
/* IE 9 */
|
133
|
+
-webkit-transform: rotate(90deg);
|
134
|
+
-ms-transform: rotate(90deg);
|
135
|
+
transform: rotate(90deg);
|
136
|
+
background-color: $gray-900;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
}
|
140
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// Styling for the team section
|
2
|
+
.team-member {
|
3
|
+
margin-bottom: 50px;
|
4
|
+
text-align: center;
|
5
|
+
img {
|
6
|
+
width: 225px;
|
7
|
+
height: 225px;
|
8
|
+
border: 7px solid fade-out($black, 0.9);
|
9
|
+
}
|
10
|
+
h4 {
|
11
|
+
margin-top: 25px;
|
12
|
+
margin-bottom: 0;
|
13
|
+
text-transform: none;
|
14
|
+
}
|
15
|
+
p {
|
16
|
+
margin-top: 0;
|
17
|
+
}
|
18
|
+
}
|
@@ -0,0 +1,178 @@
|
|
1
|
+
// Styling for the timeline section
|
2
|
+
.timeline {
|
3
|
+
position: relative;
|
4
|
+
padding: 0;
|
5
|
+
list-style: none;
|
6
|
+
&:before {
|
7
|
+
position: absolute;
|
8
|
+
top: 0;
|
9
|
+
bottom: 0;
|
10
|
+
left: 40px;
|
11
|
+
width: 2px;
|
12
|
+
margin-left: -1.5px;
|
13
|
+
content: '';
|
14
|
+
background-color: $gray-200;
|
15
|
+
}
|
16
|
+
> li {
|
17
|
+
position: relative;
|
18
|
+
min-height: 50px;
|
19
|
+
margin-bottom: 50px;
|
20
|
+
&:after,
|
21
|
+
&:before {
|
22
|
+
display: table;
|
23
|
+
content: ' ';
|
24
|
+
}
|
25
|
+
&:after {
|
26
|
+
clear: both;
|
27
|
+
}
|
28
|
+
.timeline-panel {
|
29
|
+
position: relative;
|
30
|
+
float: right;
|
31
|
+
width: 100%;
|
32
|
+
padding: 0 20px 0 100px;
|
33
|
+
text-align: left;
|
34
|
+
&:before {
|
35
|
+
right: auto;
|
36
|
+
left: -15px;
|
37
|
+
border-right-width: 15px;
|
38
|
+
border-left-width: 0;
|
39
|
+
}
|
40
|
+
&:after {
|
41
|
+
right: auto;
|
42
|
+
left: -14px;
|
43
|
+
border-right-width: 14px;
|
44
|
+
border-left-width: 0;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
.timeline-image {
|
48
|
+
position: absolute;
|
49
|
+
z-index: 100;
|
50
|
+
left: 0;
|
51
|
+
width: 80px;
|
52
|
+
height: 80px;
|
53
|
+
margin-left: 0;
|
54
|
+
text-align: center;
|
55
|
+
color: $white;
|
56
|
+
border: 7px solid $gray-200;
|
57
|
+
border-radius: 100%;
|
58
|
+
background-color: $primary;
|
59
|
+
h4 {
|
60
|
+
font-size: 10px;
|
61
|
+
line-height: 14px;
|
62
|
+
margin-top: 12px;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
&.timeline-inverted > .timeline-panel {
|
66
|
+
float: right;
|
67
|
+
padding: 0 20px 0 100px;
|
68
|
+
text-align: left;
|
69
|
+
&:before {
|
70
|
+
right: auto;
|
71
|
+
left: -15px;
|
72
|
+
border-right-width: 15px;
|
73
|
+
border-left-width: 0;
|
74
|
+
}
|
75
|
+
&:after {
|
76
|
+
right: auto;
|
77
|
+
left: -14px;
|
78
|
+
border-right-width: 14px;
|
79
|
+
border-left-width: 0;
|
80
|
+
}
|
81
|
+
}
|
82
|
+
&:last-child {
|
83
|
+
margin-bottom: 0;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
.timeline-heading {
|
87
|
+
h4 {
|
88
|
+
margin-top: 0;
|
89
|
+
color: inherit;
|
90
|
+
&.subheading {
|
91
|
+
text-transform: none;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
}
|
95
|
+
.timeline-body {
|
96
|
+
> ul,
|
97
|
+
> p {
|
98
|
+
margin-bottom: 0;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
}
|
102
|
+
@media(min-width:768px) {
|
103
|
+
.timeline {
|
104
|
+
&:before {
|
105
|
+
left: 50%;
|
106
|
+
}
|
107
|
+
> li {
|
108
|
+
min-height: 100px;
|
109
|
+
margin-bottom: 100px;
|
110
|
+
.timeline-panel {
|
111
|
+
float: left;
|
112
|
+
width: 41%;
|
113
|
+
padding: 0 20px 20px 30px;
|
114
|
+
text-align: right;
|
115
|
+
}
|
116
|
+
.timeline-image {
|
117
|
+
left: 50%;
|
118
|
+
width: 100px;
|
119
|
+
height: 100px;
|
120
|
+
margin-left: -50px;
|
121
|
+
h4 {
|
122
|
+
font-size: 13px;
|
123
|
+
line-height: 18px;
|
124
|
+
margin-top: 16px;
|
125
|
+
}
|
126
|
+
}
|
127
|
+
&.timeline-inverted > .timeline-panel {
|
128
|
+
float: right;
|
129
|
+
padding: 0 30px 20px 20px;
|
130
|
+
text-align: left;
|
131
|
+
}
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
@media(min-width:992px) {
|
136
|
+
.timeline {
|
137
|
+
> li {
|
138
|
+
min-height: 150px;
|
139
|
+
.timeline-panel {
|
140
|
+
padding: 0 20px 20px;
|
141
|
+
}
|
142
|
+
.timeline-image {
|
143
|
+
width: 150px;
|
144
|
+
height: 150px;
|
145
|
+
margin-left: -75px;
|
146
|
+
h4 {
|
147
|
+
font-size: 18px;
|
148
|
+
line-height: 26px;
|
149
|
+
margin-top: 30px;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
&.timeline-inverted > .timeline-panel {
|
153
|
+
padding: 0 20px 20px;
|
154
|
+
}
|
155
|
+
}
|
156
|
+
}
|
157
|
+
}
|
158
|
+
@media(min-width:1200px) {
|
159
|
+
.timeline {
|
160
|
+
> li {
|
161
|
+
min-height: 170px;
|
162
|
+
.timeline-panel {
|
163
|
+
padding: 0 20px 20px 100px;
|
164
|
+
}
|
165
|
+
.timeline-image {
|
166
|
+
width: 170px;
|
167
|
+
height: 170px;
|
168
|
+
margin-left: -85px;
|
169
|
+
h4 {
|
170
|
+
margin-top: 40px;
|
171
|
+
}
|
172
|
+
}
|
173
|
+
&.timeline-inverted > .timeline-panel {
|
174
|
+
padding: 0 100px 20px 20px;
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
178
|
+
}
|