jekyll-theme-opposition 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.txt +21 -0
- data/README.md +38 -0
- data/_includes/.DS_Store +0 -0
- data/_includes/footer.html +12 -0
- data/_includes/head.html +21 -0
- data/_includes/header.html +13 -0
- data/_includes/scripts.html +7 -0
- data/_includes/sidebar.html +35 -0
- data/_layouts/.DS_Store +0 -0
- data/_layouts/default.html +20 -0
- data/_layouts/home.html +210 -0
- data/_layouts/page.html +39 -0
- data/_layouts/post.html +23 -0
- data/_sass/.DS_Store +0 -0
- data/_sass/base/_footer.scss +54 -0
- data/_sass/base/_header.scss +64 -0
- data/_sass/base/_reset.scss +65 -0
- data/_sass/base/_sidebar.scss +29 -0
- data/_sass/home/.DS_Store +0 -0
- data/_sass/home/_about.scss +125 -0
- data/_sass/home/_contact.scss +70 -0
- data/_sass/home/_home.scss +102 -0
- data/_sass/home/_partners.scss +136 -0
- data/_sass/home/_services.scss +100 -0
- data/_sass/home/_testimonial.scss +61 -0
- data/_sass/opposition.scss +139 -0
- data/_sass/page/_news.scss +91 -0
- data/_sass/post/_post.scss +19 -0
- data/assets/.DS_Store +0 -0
- data/assets/img/.DS_Store +0 -0
- data/assets/img/21savage.jpg +0 -0
- data/assets/img/Eye.svg +20 -0
- data/assets/img/Phoenix.svg +17 -0
- data/assets/img/about.jpg +0 -0
- data/assets/img/azae.png +0 -0
- data/assets/img/bird.jpg +0 -0
- data/assets/img/bird/.DS_Store +0 -0
- data/assets/img/bird/A-Rocks.png +0 -0
- data/assets/img/bird/B-Light.png +0 -0
- data/assets/img/bird/C-Particles.png +0 -0
- data/assets/img/bird/D-Particles.png +0 -0
- data/assets/img/bird/E-Phoenix.png +0 -0
- data/assets/img/bird/F-Fire.png +0 -0
- data/assets/img/bird/G-Dust.png +0 -0
- data/assets/img/bird/H-Stuff.png +0 -0
- data/assets/img/bird/bg.png +0 -0
- data/assets/img/contact.png +0 -0
- data/assets/img/hnhh.png +0 -0
- data/assets/img/home.jpg +0 -0
- data/assets/img/icon.gif +0 -0
- data/assets/img/logic.jpg +0 -0
- data/assets/img/logo.png +0 -0
- data/assets/img/logo.svg +32 -0
- data/assets/img/meechie.jpg +0 -0
- data/assets/img/opposition-blog-header.jpg +0 -0
- data/assets/img/opposition_seal.png +0 -0
- data/assets/img/s.png +0 -0
- data/assets/img/services-bg.jpg +0 -0
- data/assets/img/support.svg +31 -0
- data/assets/js/.DS_Store +0 -0
- data/assets/js/all.js +41 -0
- data/assets/js/form.js +114 -0
- data/assets/js/parallax.js +550 -0
- data/assets/main.scss +5 -0
- metadata +150 -0
@@ -0,0 +1,136 @@
|
|
1
|
+
#partners {
|
2
|
+
background: #f6f6f6;
|
3
|
+
header {
|
4
|
+
background: #202020;
|
5
|
+
div {
|
6
|
+
@include center;
|
7
|
+
display: block;
|
8
|
+
padding: 30px 0;
|
9
|
+
}
|
10
|
+
h2, p {
|
11
|
+
width: 90%;
|
12
|
+
padding: 0 5%;
|
13
|
+
}
|
14
|
+
h2 {
|
15
|
+
font-size: 2em;
|
16
|
+
font-weight: 600;
|
17
|
+
line-height: 1em;
|
18
|
+
}
|
19
|
+
p {
|
20
|
+
color: $accentFontColor;
|
21
|
+
font-size: .9em;
|
22
|
+
line-height: 1.4em;
|
23
|
+
font-weight: 200;
|
24
|
+
padding-top: 15px;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
ul {
|
28
|
+
@include center;
|
29
|
+
width: 100%;
|
30
|
+
padding: 0;
|
31
|
+
figure {
|
32
|
+
float: left;
|
33
|
+
display: inline-block;
|
34
|
+
vertical-align: middle;
|
35
|
+
width: 100%;
|
36
|
+
height: 450px;
|
37
|
+
}
|
38
|
+
dl {
|
39
|
+
display: inline-block;
|
40
|
+
width: 90%;
|
41
|
+
margin: 0 5% 30px 5%;
|
42
|
+
vertical-align: middle;
|
43
|
+
text-align: center;
|
44
|
+
}
|
45
|
+
dt {
|
46
|
+
@include title;
|
47
|
+
font-size: 3em;
|
48
|
+
}
|
49
|
+
dd {
|
50
|
+
font-size: .9em;
|
51
|
+
line-height: 2em;
|
52
|
+
}
|
53
|
+
.description {
|
54
|
+
padding: 20px 0 40px 0;
|
55
|
+
}
|
56
|
+
.social-media {
|
57
|
+
li {
|
58
|
+
margin: 0;
|
59
|
+
margin-right: 10px;
|
60
|
+
}
|
61
|
+
span {
|
62
|
+
line-height: 2.5em;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
.savage {
|
66
|
+
figure {
|
67
|
+
background: url("../../assets/img/21savage.jpg") center top / cover no-repeat;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
.logic {
|
71
|
+
text-align: left;
|
72
|
+
figure {
|
73
|
+
background: url("../../assets/img/logic.jpg") center top / cover no-repeat;
|
74
|
+
float: right;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
.meechie {
|
78
|
+
figure {
|
79
|
+
background: url("../../assets/img/meechie.jpg") center top / cover no-repeat;
|
80
|
+
}
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
@media only screen and (min-width: $windowSize) {
|
86
|
+
#partners {
|
87
|
+
header {
|
88
|
+
padding: 60px 0;
|
89
|
+
div {
|
90
|
+
@include center;
|
91
|
+
display: flex;
|
92
|
+
align-items: center;
|
93
|
+
}
|
94
|
+
h2, p {
|
95
|
+
padding: 0;
|
96
|
+
}
|
97
|
+
h2 {
|
98
|
+
flex: 1 20%;
|
99
|
+
font-size: 2.5em;
|
100
|
+
padding: 0 30% 0 0;
|
101
|
+
}
|
102
|
+
p {
|
103
|
+
flex: 1 70%;
|
104
|
+
line-height: 1.8em;
|
105
|
+
padding-top: 0;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
ul {
|
109
|
+
max-width: 1200px;
|
110
|
+
li {
|
111
|
+
overflow: auto;
|
112
|
+
margin-bottom: -150px;
|
113
|
+
&:last-child {
|
114
|
+
margin-bottom: 0;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
figure {
|
118
|
+
width: 50%;
|
119
|
+
height: 700px;
|
120
|
+
}
|
121
|
+
dl {
|
122
|
+
width: 23%;
|
123
|
+
margin: 200px 3% 0 3%;
|
124
|
+
text-align: left;
|
125
|
+
}
|
126
|
+
.savage {
|
127
|
+
dl {
|
128
|
+
margin-top: 100px;
|
129
|
+
}
|
130
|
+
}
|
131
|
+
.logic {
|
132
|
+
text-align: right;
|
133
|
+
}
|
134
|
+
}
|
135
|
+
}
|
136
|
+
}
|
@@ -0,0 +1,100 @@
|
|
1
|
+
#services {
|
2
|
+
background: url("../../assets/img/services-bg.jpg") center top / cover fixed no-repeat;
|
3
|
+
text-align: center;
|
4
|
+
padding: 40px 0;
|
5
|
+
.services-list {
|
6
|
+
@include center;
|
7
|
+
position: relative;
|
8
|
+
overflow: auto;
|
9
|
+
margin: 30px auto 0 auto;
|
10
|
+
&:after {
|
11
|
+
content: '';
|
12
|
+
background: $accentFontColor;
|
13
|
+
display: none;
|
14
|
+
position: absolute;
|
15
|
+
top: 15px;
|
16
|
+
left: 50%;
|
17
|
+
height: 98%;
|
18
|
+
width: 1px;
|
19
|
+
}
|
20
|
+
li {
|
21
|
+
position: relative;
|
22
|
+
width: 100%;
|
23
|
+
clear: both;
|
24
|
+
margin: 0 0 30px 0;
|
25
|
+
h3 {
|
26
|
+
display: inline-block;
|
27
|
+
vertical-align: middle;
|
28
|
+
letter-spacing: .2em;
|
29
|
+
}
|
30
|
+
span {
|
31
|
+
color: $accentFontColor;
|
32
|
+
font-size: 2em;
|
33
|
+
vertical-align: middle;
|
34
|
+
}
|
35
|
+
p {
|
36
|
+
color: white;
|
37
|
+
font-size: .9em;
|
38
|
+
font-weight: 200;
|
39
|
+
line-height: 1.8em;
|
40
|
+
}
|
41
|
+
&:before {
|
42
|
+
content: '';
|
43
|
+
background: $accentFontColor;
|
44
|
+
display: none;
|
45
|
+
position: absolute;
|
46
|
+
top: 5px;
|
47
|
+
width: 14px;
|
48
|
+
height: 14px;
|
49
|
+
border-radius: 50%;
|
50
|
+
}
|
51
|
+
&:nth-child(odd) {
|
52
|
+
float: left;
|
53
|
+
text-align: right;
|
54
|
+
padding: 0;
|
55
|
+
span {
|
56
|
+
display: inline-block;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
&:nth-child(even) {
|
60
|
+
float: left;
|
61
|
+
text-align: left;
|
62
|
+
padding: 0;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
@media only screen and (min-width: $windowSize) {
|
69
|
+
#services {
|
70
|
+
padding: 80px 0 40px 0;
|
71
|
+
.services-list {
|
72
|
+
&:after {
|
73
|
+
display: block;
|
74
|
+
}
|
75
|
+
li {
|
76
|
+
width: 38%;
|
77
|
+
&:before {
|
78
|
+
display: block;
|
79
|
+
}
|
80
|
+
&:nth-child(odd) {
|
81
|
+
float: left;
|
82
|
+
padding: 0 2% 0 10%;
|
83
|
+
span {
|
84
|
+
display: inline-block;
|
85
|
+
}
|
86
|
+
&:before {
|
87
|
+
right: -8px;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
&:nth-child(even) {
|
91
|
+
float: right;
|
92
|
+
padding: 0 10% 0 2%;
|
93
|
+
&:before {
|
94
|
+
left: -6px;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
100
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
#platform {
|
2
|
+
background: $accentFontColor;
|
3
|
+
padding: 30px 0;
|
4
|
+
ul {
|
5
|
+
@include center;
|
6
|
+
width: 100%;
|
7
|
+
padding: 0%;
|
8
|
+
display: block;
|
9
|
+
}
|
10
|
+
li {
|
11
|
+
flex: 1 auto;
|
12
|
+
width: 90%;
|
13
|
+
padding: 0 5%;
|
14
|
+
&:nth-child(2) {
|
15
|
+
img {
|
16
|
+
max-width: 70px;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
h3 {
|
21
|
+
display: flex;
|
22
|
+
justify-content: center;
|
23
|
+
align-items: center;
|
24
|
+
float: none;
|
25
|
+
background: #2e2e2e;
|
26
|
+
width: 130px;
|
27
|
+
height: 130px;
|
28
|
+
margin: 0 auto;
|
29
|
+
border-radius: 50%;
|
30
|
+
img {
|
31
|
+
flex: 1 auto;
|
32
|
+
max-width: 100px;
|
33
|
+
// max-height: 80px;
|
34
|
+
// max-width: 90px;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
p {
|
38
|
+
font-size: .75em;
|
39
|
+
line-height: 2em;
|
40
|
+
text-align: left;
|
41
|
+
margin: 20px 0 0 0;
|
42
|
+
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
@media only screen and (min-width: $windowSize) {
|
47
|
+
#platform {
|
48
|
+
padding: 0;
|
49
|
+
ul {
|
50
|
+
display: flex;
|
51
|
+
border-right: 1px solid black;
|
52
|
+
}
|
53
|
+
li {
|
54
|
+
padding: 5%;
|
55
|
+
border-left: 1px solid black;
|
56
|
+
}
|
57
|
+
p {
|
58
|
+
text-align: justify;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
@@ -0,0 +1,139 @@
|
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
// Define defaults for each variable.
|
4
|
+
$titleFont: "ff-good-headline-web-pro-con",sans-serif;
|
5
|
+
$base-font-family: "acumin-pro-condensed", sans-serif !default;
|
6
|
+
$base-font-size: 16px !default;
|
7
|
+
$base-font-weight: 400 !default;
|
8
|
+
$small-font-size: $base-font-size * 0.875 !default;
|
9
|
+
$base-line-height: 1.5 !default;
|
10
|
+
|
11
|
+
$spacing-unit: 30px !default;
|
12
|
+
|
13
|
+
$accentFontColor: #c1a468;
|
14
|
+
$mainFontColor: #2e2e2e;
|
15
|
+
|
16
|
+
// Width of the content area
|
17
|
+
$windowSize: 940px;
|
18
|
+
$maxWidth: 720px;
|
19
|
+
|
20
|
+
// $content-width: 800px !default;
|
21
|
+
|
22
|
+
// $on-palm: 600px !default;
|
23
|
+
// $on-laptop: 800px !default;
|
24
|
+
|
25
|
+
|
26
|
+
@mixin button {
|
27
|
+
color: $accentFontColor;
|
28
|
+
padding: 5px 20px;
|
29
|
+
border: 1px solid $accentFontColor;
|
30
|
+
&:hover {
|
31
|
+
color: lighten($accentFontColor, 20%);
|
32
|
+
border: 1px solid lighten($accentFontColor, 20%);
|
33
|
+
}
|
34
|
+
}
|
35
|
+
@mixin center {
|
36
|
+
float: none;
|
37
|
+
max-width: $maxWidth;
|
38
|
+
width: 90%;
|
39
|
+
padding: 0 5%;
|
40
|
+
margin: 0 auto;
|
41
|
+
@media only screen and (min-width: $windowSize) {
|
42
|
+
width: 100%;
|
43
|
+
padding: 0;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
@mixin title {
|
47
|
+
font-weight: 400;
|
48
|
+
color: $accentFontColor;
|
49
|
+
text-transform: uppercase;
|
50
|
+
}
|
51
|
+
@mixin link-border {
|
52
|
+
color: $accentFontColor;
|
53
|
+
border: 1px solid $accentFontColor;
|
54
|
+
&:hover {
|
55
|
+
color: lighten($accentFontColor, 20%);
|
56
|
+
border: 1px solid lighten($accentFontColor, 20%);
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
@mixin submit-button {
|
61
|
+
background: $accentFontColor;
|
62
|
+
color: #2e2e2e;
|
63
|
+
text-transform: uppercase;
|
64
|
+
font-size: 1em;
|
65
|
+
padding: 0 15px;
|
66
|
+
border: none;
|
67
|
+
cursor: pointer;
|
68
|
+
&.disabled {
|
69
|
+
background: #ccc;
|
70
|
+
pointer-events: none;
|
71
|
+
cursor: no-drop;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
@mixin media-query($device) {
|
76
|
+
@media screen and (min-width: $device) {
|
77
|
+
@content;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
@mixin relative-font-size($ratio) {
|
82
|
+
font-size: $base-font-size * $ratio;
|
83
|
+
}
|
84
|
+
|
85
|
+
.page-header {
|
86
|
+
background-size: cover;
|
87
|
+
background-position: center;
|
88
|
+
background-repeat: no-repeat;
|
89
|
+
position: relative;
|
90
|
+
height: 485px;
|
91
|
+
width: 100%;
|
92
|
+
overflow: hidden;
|
93
|
+
margin-bottom: 20px;
|
94
|
+
display: flex;
|
95
|
+
justify-content: center;
|
96
|
+
align-items: flex-end;
|
97
|
+
.header-title {
|
98
|
+
@include center;
|
99
|
+
flex: 1 auto;
|
100
|
+
max-width: 980px;
|
101
|
+
margin-bottom: 30px;
|
102
|
+
text-align: left;
|
103
|
+
h2 {
|
104
|
+
font-size: 3em;
|
105
|
+
font-weight: 600;
|
106
|
+
letter-spacing: 0;
|
107
|
+
text-transform: none;
|
108
|
+
color: white;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
.category {
|
114
|
+
display: inline-block;
|
115
|
+
color: white;
|
116
|
+
margin-right: 10px;
|
117
|
+
i {
|
118
|
+
&:before {
|
119
|
+
color: $accentFontColor;
|
120
|
+
vertical-align: middle;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
// Import partials.
|
126
|
+
@import
|
127
|
+
"base/reset",
|
128
|
+
"base/header",
|
129
|
+
"base/footer",
|
130
|
+
"base/sidebar",
|
131
|
+
"home/about",
|
132
|
+
"home/contact",
|
133
|
+
"home/home",
|
134
|
+
"home/partners",
|
135
|
+
"home/services",
|
136
|
+
"home/testimonial",
|
137
|
+
"page/news",
|
138
|
+
"post/post"
|
139
|
+
;
|
@@ -0,0 +1,91 @@
|
|
1
|
+
.page {
|
2
|
+
@include center;
|
3
|
+
max-width: 980px;
|
4
|
+
text-align: center;
|
5
|
+
.post-list {
|
6
|
+
display: inline-block;
|
7
|
+
vertical-align: top;
|
8
|
+
width: 70%;
|
9
|
+
max-width: 585px;
|
10
|
+
text-align: left;
|
11
|
+
li {
|
12
|
+
padding-bottom: 50px;
|
13
|
+
}
|
14
|
+
figure, img {
|
15
|
+
width: 100%;
|
16
|
+
}
|
17
|
+
figure {
|
18
|
+
position: relative;
|
19
|
+
overflow: hidden;
|
20
|
+
height: 280px;
|
21
|
+
margin-bottom: 20px;
|
22
|
+
}
|
23
|
+
img {
|
24
|
+
position: absolute;
|
25
|
+
top: 0;
|
26
|
+
left: 50%;
|
27
|
+
transform: translate(-50%, 0);
|
28
|
+
}
|
29
|
+
.post-details, h2 {
|
30
|
+
display: inline-block;
|
31
|
+
vertical-align: middle;
|
32
|
+
max-width: 75%;
|
33
|
+
}
|
34
|
+
h2 {
|
35
|
+
text-transform: none;
|
36
|
+
font-size: 2.5em;
|
37
|
+
letter-spacing: 0;
|
38
|
+
line-height: 1.1em;
|
39
|
+
margin-left: 5%;
|
40
|
+
}
|
41
|
+
header {
|
42
|
+
position: relative;
|
43
|
+
background: $accentFontColor;
|
44
|
+
display: inline-block;
|
45
|
+
width: 105%;
|
46
|
+
padding: 2.5%;
|
47
|
+
margin: 0 0 -20px -13%;
|
48
|
+
z-index: 2;
|
49
|
+
a {
|
50
|
+
font-weight: 500 !important;
|
51
|
+
}
|
52
|
+
.month, .day, a {
|
53
|
+
color: $mainFontColor;
|
54
|
+
font-weight: 700;
|
55
|
+
}
|
56
|
+
.month {
|
57
|
+
font-size: .9em;
|
58
|
+
}
|
59
|
+
.day {
|
60
|
+
font-size: 1.4em;
|
61
|
+
line-height: .9em;
|
62
|
+
}
|
63
|
+
.social-media {
|
64
|
+
display: flex;
|
65
|
+
clear: both;
|
66
|
+
}
|
67
|
+
.social-media-button {
|
68
|
+
text-align: center;
|
69
|
+
flex: 1 auto;
|
70
|
+
border: 2px solid $mainFontColor;
|
71
|
+
border-top: none;
|
72
|
+
padding: 3px 0;
|
73
|
+
font-size: .8em;
|
74
|
+
}
|
75
|
+
.twitter-button {
|
76
|
+
border-right: none;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
time {
|
80
|
+
float: left;
|
81
|
+
text-align: center;
|
82
|
+
padding: 5px 15px 10px 15px;
|
83
|
+
border: 2px solid $mainFontColor;
|
84
|
+
}
|
85
|
+
.post-description {
|
86
|
+
a {
|
87
|
+
color: $mainFontColor !important;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
}
|
91
|
+
}
|