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.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +38 -0
  4. data/_includes/.DS_Store +0 -0
  5. data/_includes/footer.html +12 -0
  6. data/_includes/head.html +21 -0
  7. data/_includes/header.html +13 -0
  8. data/_includes/scripts.html +7 -0
  9. data/_includes/sidebar.html +35 -0
  10. data/_layouts/.DS_Store +0 -0
  11. data/_layouts/default.html +20 -0
  12. data/_layouts/home.html +210 -0
  13. data/_layouts/page.html +39 -0
  14. data/_layouts/post.html +23 -0
  15. data/_sass/.DS_Store +0 -0
  16. data/_sass/base/_footer.scss +54 -0
  17. data/_sass/base/_header.scss +64 -0
  18. data/_sass/base/_reset.scss +65 -0
  19. data/_sass/base/_sidebar.scss +29 -0
  20. data/_sass/home/.DS_Store +0 -0
  21. data/_sass/home/_about.scss +125 -0
  22. data/_sass/home/_contact.scss +70 -0
  23. data/_sass/home/_home.scss +102 -0
  24. data/_sass/home/_partners.scss +136 -0
  25. data/_sass/home/_services.scss +100 -0
  26. data/_sass/home/_testimonial.scss +61 -0
  27. data/_sass/opposition.scss +139 -0
  28. data/_sass/page/_news.scss +91 -0
  29. data/_sass/post/_post.scss +19 -0
  30. data/assets/.DS_Store +0 -0
  31. data/assets/img/.DS_Store +0 -0
  32. data/assets/img/21savage.jpg +0 -0
  33. data/assets/img/Eye.svg +20 -0
  34. data/assets/img/Phoenix.svg +17 -0
  35. data/assets/img/about.jpg +0 -0
  36. data/assets/img/azae.png +0 -0
  37. data/assets/img/bird.jpg +0 -0
  38. data/assets/img/bird/.DS_Store +0 -0
  39. data/assets/img/bird/A-Rocks.png +0 -0
  40. data/assets/img/bird/B-Light.png +0 -0
  41. data/assets/img/bird/C-Particles.png +0 -0
  42. data/assets/img/bird/D-Particles.png +0 -0
  43. data/assets/img/bird/E-Phoenix.png +0 -0
  44. data/assets/img/bird/F-Fire.png +0 -0
  45. data/assets/img/bird/G-Dust.png +0 -0
  46. data/assets/img/bird/H-Stuff.png +0 -0
  47. data/assets/img/bird/bg.png +0 -0
  48. data/assets/img/contact.png +0 -0
  49. data/assets/img/hnhh.png +0 -0
  50. data/assets/img/home.jpg +0 -0
  51. data/assets/img/icon.gif +0 -0
  52. data/assets/img/logic.jpg +0 -0
  53. data/assets/img/logo.png +0 -0
  54. data/assets/img/logo.svg +32 -0
  55. data/assets/img/meechie.jpg +0 -0
  56. data/assets/img/opposition-blog-header.jpg +0 -0
  57. data/assets/img/opposition_seal.png +0 -0
  58. data/assets/img/s.png +0 -0
  59. data/assets/img/services-bg.jpg +0 -0
  60. data/assets/img/support.svg +31 -0
  61. data/assets/js/.DS_Store +0 -0
  62. data/assets/js/all.js +41 -0
  63. data/assets/js/form.js +114 -0
  64. data/assets/js/parallax.js +550 -0
  65. data/assets/main.scss +5 -0
  66. metadata +150 -0
Binary file
@@ -0,0 +1,54 @@
1
+ .main-footer {
2
+ background: #202020;
3
+ position: relative;
4
+ text-align: right;
5
+ padding: 10px 0;
6
+ div {
7
+ text-align: center;
8
+ }
9
+ .inquiries {
10
+ color: white;
11
+ font-weight: 200;
12
+ font-size: .7em;
13
+ a {
14
+ text-transform: uppercase;
15
+ }
16
+ }
17
+ ul {
18
+ padding: 30px 0;
19
+ }
20
+ li {
21
+ display: inline-block;
22
+ color: $accentFontColor;
23
+ padding: 0 10px;
24
+ border-right: 1px solid $accentFontColor;
25
+ &:last-child {
26
+ border: none;
27
+ }
28
+ }
29
+ .icon-YouTube-certified {
30
+ font-size: 4em;
31
+ }
32
+ .opposition-logo {
33
+ width: 70px;
34
+ }
35
+ }
36
+
37
+ @media only screen and (min-width: $windowSize) {
38
+ .main-footer {
39
+ .inquiries {
40
+ font-size: .85em;
41
+ }
42
+ ul {
43
+ padding: 0;
44
+ }
45
+ li {
46
+ padding: 0 10px;
47
+ }
48
+ .opposition-logo {
49
+ position: absolute;
50
+ top: 20px;
51
+ right: 30px;
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,64 @@
1
+ .main-header {
2
+ background: black;
3
+ position: fixed;
4
+ top: 0;
5
+ left: 0;
6
+ width: 100%;
7
+ padding: 30px 0;
8
+ z-index: 5;
9
+ nav {
10
+ text-align: center;
11
+ padding: 10px 0;
12
+ }
13
+ li {
14
+ display: none;
15
+ vertical-align: middle;
16
+ margin: 15px 25px 0 25px;
17
+ }
18
+ a {
19
+ font-family: $titleFont;
20
+ color: $accentFontColor;
21
+ text-transform: uppercase;
22
+ }
23
+ .logo {
24
+ display: inline-block;
25
+ position: absolute;
26
+ top: 10px;
27
+ left: 50%;
28
+ transform: translate(-50%, 0);
29
+ margin: 0;
30
+ }
31
+ .icon-Oppositionn-Logo {
32
+ font-size: 4em;
33
+ color: $accentFontColor;
34
+ }
35
+ .home {
36
+ margin-left: 0;
37
+ }
38
+ .partners {
39
+ margin-right: 80px;
40
+ }
41
+ .contact {
42
+ a {
43
+ @include button;
44
+ }
45
+ }
46
+ }
47
+
48
+ @media only screen and (min-width: $windowSize) {
49
+ .main-header {
50
+ display: inline-block;
51
+ padding: 0;
52
+ nav {
53
+ padding: 20px 0;
54
+ }
55
+ li {
56
+ display: inline-block;
57
+ }
58
+ .logo {
59
+ top: 50%;
60
+ left: 50%;
61
+ transform: translate(-50%, -50%);
62
+ }
63
+ }
64
+ }
@@ -0,0 +1,65 @@
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ color: $mainFontColor;
5
+ font-family: $base-font-family;
6
+ }
7
+ h1, h2, h3, h4, h5 {
8
+ @include title;
9
+ }
10
+ h2 {
11
+ font-size: 2em;
12
+ letter-spacing: .1em;
13
+ }
14
+ p {
15
+ letter-spacing: .06em;
16
+ font-weight: 300;
17
+ }
18
+ a {
19
+ text-decoration: none;
20
+ color: $accentFontColor;
21
+ transition: .3s all;
22
+ &:hover {
23
+ color: lighten($accentFontColor, 30%);
24
+ transition: .3s all;
25
+ &:before {
26
+ color: lighten($accentFontColor, 30%);
27
+ transition: .3s all;
28
+ }
29
+ span {
30
+ color: lighten($accentFontColor, 30%);
31
+ transition: .3s all;
32
+ }
33
+ }
34
+ }
35
+ li {
36
+ list-style: none;
37
+ }
38
+
39
+ .social-media {
40
+ li {
41
+ display: inline-block;
42
+ }
43
+ a {
44
+ display: inline-block;
45
+ }
46
+ span {
47
+ @include link-border;
48
+ font-size: 1em;
49
+ padding: 8px;
50
+ border-radius: 50%;
51
+ }
52
+ }
53
+
54
+ .grecaptcha-badge {
55
+ display: none;
56
+ }
57
+
58
+ @media only screen and (min-width: $windowSize) {
59
+ h1, h2, h3, h4, h5 {
60
+ @include title;
61
+ }
62
+ h2 {
63
+ font-size: 2em;
64
+ }
65
+ }
@@ -0,0 +1,29 @@
1
+ .sidebar {
2
+ display: inline-block;
3
+ width: 30%;
4
+ max-width: 265px;
5
+ padding-left: 40px;
6
+ text-align: left;
7
+ vertical-align: top;
8
+ .block {
9
+ border-top: 5px solid $mainFontColor;
10
+ padding: 5%;
11
+ width: 90%;
12
+ margin: 0 0 5% 0;
13
+ }
14
+ .category {
15
+ color: $mainFontColor;
16
+ text-transform: capitalize;
17
+ font-size: 1.1em;
18
+ }
19
+ h3 {
20
+ color: $mainFontColor;
21
+ font-size: 1.8em;
22
+ text-transform: uppercase;
23
+ font-weight: 600;
24
+ padding-bottom: 20px;
25
+ }
26
+ .submit {
27
+ @include submit-button;
28
+ }
29
+ }
Binary file
@@ -0,0 +1,125 @@
1
+ #about {
2
+ position: relative;
3
+ background: $accentFontColor;
4
+ padding: 40px 0 0 0;
5
+ h2 {
6
+ background: url("../../assets/img/about.jpg");
7
+ background-attachment: fixed;
8
+ -webkit-text-fill-color: transparent;
9
+ -webkit-background-clip: text;
10
+ float: none;
11
+ max-width: 90%;
12
+ padding: 0 5%;
13
+ color: black;
14
+ font-size: 4em;
15
+ font-weight: 600;
16
+ line-height: .9em;
17
+ letter-spacing: 0;
18
+ margin: 0 auto;
19
+ }
20
+ .icon-Phoenix {
21
+ font-size: 1em;
22
+ vertical-align: middle;
23
+ line-height: .5em;
24
+ }
25
+ p {
26
+ @include center;
27
+ text-align: justify;
28
+ line-height: 2em;
29
+ margin: 40px auto;
30
+ }
31
+ li {
32
+ flex: 1 auto;
33
+ text-align: center;
34
+ margin: 0 0 30px 0;
35
+ &:nth-child(2) {
36
+ flex: 40 auto;
37
+ h4 {
38
+ width: 40%;
39
+ }
40
+ }
41
+ &:last-child {
42
+ h4 {
43
+ width: 80%;
44
+ }
45
+ }
46
+ }
47
+ h3, h4 {
48
+ color: $mainFontColor;
49
+ }
50
+ h3 {
51
+ font-size: 2em;
52
+ font-weight: 700;
53
+ }
54
+ h4 {
55
+ font-size: 1.3em;
56
+ display: inline-block;
57
+ width: 100%;
58
+ font-weight: 300;
59
+ }
60
+ h5 {
61
+ position: absolute;
62
+ top: 120px;
63
+ left: 40px;
64
+ display: none;
65
+ color: black;
66
+ letter-spacing: .7em;
67
+ transform: rotate(-90deg)
68
+ }
69
+ span {
70
+ font-size: 3em;
71
+ }
72
+ .bbtv-data {
73
+ @include center;
74
+ display: inline-block;
75
+ }
76
+ #views-counter {
77
+ @include center;
78
+ position: relative;
79
+ font-size: .9em;
80
+ letter-spacing: .45em;
81
+ text-transform: uppercase;
82
+ span {
83
+ position: static;
84
+ top: -160px;
85
+ right: -110px;
86
+ transform: rotate(-90deg);
87
+ font-size: 1em;
88
+ &:after {
89
+ content: '';
90
+ background: black;
91
+ display: block;
92
+ width: 120px;
93
+ height: 1px;
94
+ margin-left: 90px;
95
+ }
96
+ }
97
+ }
98
+ }
99
+
100
+ @media only screen and (min-width: $windowSize) {
101
+ #about {
102
+ padding: 80px 0;
103
+ h2 {
104
+ max-width: $maxWidth - 200px;
105
+ padding: 0;
106
+ padding-right: 200px;
107
+ font-size: 7em;
108
+ }
109
+ h5 {
110
+ display: inline-block;
111
+ }
112
+ li {
113
+ margin: 0;
114
+ }
115
+ .bbtv-data {
116
+ display: flex;
117
+ width: $maxWidth;
118
+ }
119
+ #views-counter {
120
+ span {
121
+ position: absolute;
122
+ }
123
+ }
124
+ }
125
+ }
@@ -0,0 +1,70 @@
1
+ #contact {
2
+ background: url("../../assets/img/contact.png") center top / cover no-repeat;
3
+ padding: 30px 0;
4
+ form {
5
+ @include center;
6
+ }
7
+ h2 {
8
+ @include center;
9
+ }
10
+ div {
11
+ display: block;
12
+ }
13
+ fieldset {
14
+ flex: 1 auto;
15
+ width: 100%;
16
+ border: none;
17
+ padding: 20px 0;
18
+ }
19
+ .required {
20
+ background: #ff0033;
21
+ border: 1px solid darken(#ff0033, 20%);
22
+ }
23
+ .rightcol {
24
+ text-align: left;
25
+ }
26
+ input[type=text], input[type=email], textarea {
27
+ width: 90%;
28
+ font-size: 1.2em;
29
+ padding: 0 10px;
30
+ }
31
+ input[type=text], input[type=email] {
32
+ float: left;
33
+ clear: both;
34
+ margin: 20px 0 0 0;
35
+ &:first-child {
36
+ margin: 0;
37
+ }
38
+ }
39
+ textarea {
40
+ height: 100%;
41
+ }
42
+ footer {
43
+ @include center;
44
+ text-align: right;
45
+ }
46
+ .submit {
47
+ @include submit-button;
48
+ }
49
+ .thanks {
50
+ display: none;
51
+ text-align: center;
52
+ }
53
+ }
54
+
55
+ @media only screen and (min-width: $windowSize) {
56
+ #contact {
57
+ div {
58
+ display: flex;
59
+ }
60
+ fieldset {
61
+ width: 50%;
62
+ }
63
+ input[type=text], input[type=email], textarea {
64
+ width: 70%;
65
+ }
66
+ .rightcol {
67
+ text-align: right;
68
+ }
69
+ }
70
+ }
@@ -0,0 +1,102 @@
1
+ #home {
2
+ background: url("../../assets/img/bird.jpg") center / cover fixed no-repeat;
3
+ position: relative;
4
+ text-align: center;
5
+ display: flex;
6
+ flex-direction: column;
7
+ justify-content: center;
8
+ align-items: center;
9
+ min-height: 600px;
10
+ h1, h2 {
11
+ position: relative;
12
+ font-size: 1.4em;
13
+ font-weight: 300;
14
+ z-index: 2;
15
+ }
16
+ h1 {
17
+ font-size: 2em;
18
+ letter-spacing: .3em;
19
+ margin: 0 0 30px 0;
20
+ }
21
+ .cta {
22
+ @include button;
23
+ text-transform: uppercase;
24
+ font-size: 1.5em;
25
+ letter-spacing: .1em;
26
+ padding: 0 10px;
27
+ border-radius: 5px;
28
+ z-index: 2;
29
+ }
30
+ .social-media {
31
+ text-align: center;
32
+ z-index: 2;
33
+ li {
34
+ float: none;
35
+ clear: none;
36
+ margin: 60px 10px;
37
+ }
38
+ }
39
+ .bird {
40
+ position: absolute;
41
+ top: 0;
42
+ left: 0;
43
+ width: 100%;
44
+ height: 100%;
45
+ overflow: hidden;
46
+ z-index: 1;
47
+ img {
48
+ position: absolute;
49
+ top: 0;
50
+ left: 0;
51
+ display: none !important;
52
+ height: 100%;
53
+ }
54
+ }
55
+ }
56
+ .arrow-down {
57
+ position: absolute;
58
+ bottom: 30px;
59
+ left: 50%;
60
+ margin-left: -4px;
61
+ z-index: 2;
62
+ width: 0;
63
+ height: 0;
64
+ border-left: 8px solid transparent;
65
+ border-right: 8px solid transparent;
66
+ border-top: 8px solid $accentFontColor;
67
+ }
68
+
69
+ @media only screen and (min-width: $windowSize) {
70
+ #home {
71
+ background: url("../../assets/img/bird/bg.png") #252525 center / cover fixed no-repeat;
72
+ h2 {
73
+ font-size: 2em;
74
+ }
75
+ h1 {
76
+ font-size: 3.8em;
77
+ letter-spacing: .5em;
78
+ }
79
+ .cta {
80
+ font-size: 2.2em;
81
+ }
82
+ .social-media {
83
+ position: absolute;
84
+ top: 50%;
85
+ left: 10%;
86
+ transform: translate(0, -50%);
87
+ li {
88
+ float: left;
89
+ clear: both;
90
+ margin: 30px 0;
91
+ a {
92
+ font-size: 1.2em;
93
+ }
94
+ }
95
+ }
96
+ .bird {
97
+ img {
98
+ display: block !important;
99
+ }
100
+ }
101
+ }
102
+ }